/* =========================
   CSOKALASZLO.RO UNIFIED V3
   HOME + BLOG COMBINED CSS
========================= */

:root{
  --accent:#A8C9B0;
  --accent:#9dbf68;
  --accent-light:#CFE3D4;
  --accent-light:#9dbf68;
  --navy:#2F3A50;
  --navy:#1c2941;
  --dark:#1F2937;
  --dark:#1c2941;
  --gray:#6B7280;
  --bg:#F5F7F6;
  --white:#FFFFFF;
  --border:#E5E7EB;
}

/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--dark);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

a{
  text-decoration:none;
  color:inherit;
  transition:0.25s ease;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

section{
  padding:30px 0;
}

/* =========================
   HEADER
========================= */

header{
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,0.05);
  padding:22px 0;
  position:sticky;
  top:0;
  z-index:999;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:28px;
  font-weight:700;
  letter-spacing:1px;
}

.logo{
  font-size:28px;
  font-weight:700;
  letter-spacing:1px;
  color:var(--navy);
}

.logo a:hover{
  color:var(--accent);
}


.nav-links{
  display:flex;
  gap:34px;
}

.nav-links a{
  color:var(--navy);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:600;
  position:relative;
}

.nav-links a::after{
  content:"";
  width:0%;
  height:2px;
  background:var(--accent);
  position:absolute;
  left:0;
  bottom:-8px;
  transition:0.3s;
  border-radius:20px;
}

.nav-links a:hover{
  color:var(--accent);
}

.nav-links a:hover::after{
  width:100%;
}

.nav-links a.active{
  color:var(--accent);
}

/* =========================
   HAMBURGER
========================= */

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:25px;
  height:3px;
  background:var(--navy);
  border-radius:20px;
}

/* =========================
   HERO
========================= */

.hero{
  background:linear-gradient(135deg,var(--navy),#1c2941);
  color:white;
  padding:100px 0px 60px 0;
}

.hero-content{
  display:flex;
  align-items:center;
  gap:70px;
}

.hero-image img{
  width:280px;
  height:280px;
  border-radius:50%;
  object-fit:cover;
  border:10px solid rgba(255,255,255,0.12);
  box-shadow:
  0 20px 40px rgba(0,0,0,0.25);
}

.hero-text h1{
  font-size:72px;
  line-height:1;
  margin-bottom:15px;
  letter-spacing:-2px;
}

.hero-text h2{
  font-size:30px;
  font-weight:300;
  margin-bottom:35px;
  color:var(--accent-light);
}

.hero-text p{
  max-width:700px;
  margin-bottom:35px;
  font-size:20px;
  color:#E5E7EB;
}

/* =========================
   EXPERIENCE SPLIT
========================= */

.experience-split{
    padding:100px 0 60px 0;
}

.experience-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:80px;
    align-items:center;
}

.experience-photo img{
    width:100%;
    display:block;
    border-radius:32px;
}

.section-label{
    display:inline-block;
    margin-bottom:20px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    color:#9dbf68;
    text-transform:uppercase;
}

.experience-content h2{
    font-size:56px;
    line-height:1.1;
    letter-spacing:-2px;
    color:var(--navy);
    margin-bottom:25px;
}

.experience-intro{
    font-size:24px;
    color:var(--gray);
    line-height:1.8;
    margin-bottom:35px;
}

.experience-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:40px;
}

.experience-tags span{
    background:#F5F7F6;
    border:1px solid rgba(0,0,0,0.05);
    padding:10px 16px;
    border-radius:50px;
    font-size:14px;
    color:var(--navy);
    font-weight:500;
}

.experience-content p{
    font-size:19px;
    line-height:1.9;
    color:#4B5563;
    margin-bottom:25px;
}

.experience-highlight{
    margin:40px 0;
    padding:30px;
    border-left:4px solid var(--accent);
    background:#F8FAF9;
    border-radius:0 16px 16px 0;
    font-size:20px;
    line-height:1.9;
    color:var(--navy);
}

.experience-content .btn{
    margin-top:10px;
}

/* MOBILE */

@media(max-width:950px){

    .experience-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .experience-photo{
        max-width:420px;
        margin:auto;
    }

    .experience-content h2{
        font-size:40px;
    }

    .experience-intro{
        font-size:20px;
    }

    .experience-content p{
        font-size:17px;
    }

    .experience-highlight{
        font-size:18px;
        padding:25px;
    }

}


/* =========================
   MARKETING PHILOSOPHY
========================= */

.marketing-philosophy{
    background:#1c2941;
    padding:100px 0 60px 0;
    position:relative;
    overflow:hidden;
}

.marketing-philosophy::before{
    content:"";
    position:absolute;
    top:-150px;
    right:-150px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(168,201,176,0.05);
}

.marketing-philosophy-content{
    max-width:900px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

.section-label-dark{
    display:inline-block;
    color:#A8C9B0;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.marketing-philosophy h2{
    color:white;
    font-size:64px;
    line-height:1.1;
    letter-spacing:-2px;
    margin-bottom:30px;
}

.marketing-lead{
    color:#D1D5DB;
    font-size:26px;
    line-height:1.8;
    max-width:800px;
    margin:0 auto 60px;
}

/* VIDEO */

.video-wrapper{
    margin-bottom:60px;
}

.video-thumbnail{
    display:block;
    position:relative;
    max-width:800px;
    margin:auto;
}

.video-thumbnail img{
    width:100%;
    display:block;
    border-radius:24px;
}

.play-button{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(255,255,255,0.95);
    color:#1F2937;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    transition:.3s;
}

.video-thumbnail:hover .play-button{
    transform:translate(-50%,-50%) scale(1.08);
}

/* TEXT */

.marketing-text{
    max-width:700px;
    margin:0 auto 45px;
}

.marketing-text p{
    color:#E5E7EB;
    font-size:22px;
    line-height:2;
    margin-bottom:15px;
}

.video-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 34px;
    background:#A8C9B0;
    color:#1F2937;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.video-btn:hover{
    background:white;
}

/* MOBILE */

@media(max-width:950px){

    .marketing-philosophy{
        padding:90px 0 40px 0;
    }

    .marketing-philosophy h2{
        font-size:42px;
    }

    .marketing-lead{
        font-size:20px;
        margin-bottom:40px;
    }

    .marketing-text p{
        font-size:18px;
        line-height:1.8;
    }

    .play-button{
        width:70px;
        height:70px;
        font-size:26px;
    }

}



/* =========================
   BLOG HERO
========================= */

.blog-hero{
  background:linear-gradient(135deg,var(--navy),#1c2941);
  color:white;
  padding:110px 0 90px;
  text-align:center;
}

.blog-hero h1{
  font-size:64px;
  margin-bottom:20px;
  letter-spacing:-2px;
}

.blog-hero p{
  max-width:760px;
  margin:auto;
  font-size:20px;
  color:#D1D5DB;
}


/* =========================
   ARTICLE PAGE CSS
   ADD TO style.css
========================= */

.article-hero{
  background:linear-gradient(135deg,var(--navy),#1c2941);
  color:white;
  padding:100px 0 80px;
}

.article-wrapper{
  max-width:850px;
  margin:auto;
}

.article-tag{
  display:inline-block;
  background:rgba(255,255,255,0.12);
  padding:8px 16px;
  border-radius:30px;
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:25px;
  color:var(--accent-light);
}

.article-hero h1{
  font-size:64px;
  line-height:1.1;
  margin-bottom:30px;
  letter-spacing:-2px;
}

.article-subtitle{
  font-size:24px;
  line-height:1.7;
  color: var(--accent);
  margin-bottom:35px;
}

.article-meta{
  display:flex;
  gap:25px;
  color: var(--accent);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* FEATURED IMAGE */

.article-image{
  margin-top:0px;
  margin-bottom:0px;
}

.article-image img{
  width:100%;
  border-radius:18px;
  max-height:520px;
  object-fit:cover;
  box-shadow:
  0 20px 40px rgba(0,0,0,0.08);
}

/* ARTICLE CONTENT */

.article-content{
  max-width:760px;
  margin:auto;
  font-size:21px;
  line-height:2;
  color:#374151;
}

.article-content p{
  margin-bottom:35px;
}

.article-content h2{
  font-size:42px;
  line-height:1.2;
  margin-top:80px;
  margin-bottom:30px;
  color:var(--navy);
  letter-spacing:-1px;
}

.article-content strong{
  color:var(--navy);
}

.article-highlight{
  background:white;
  border-left:5px solid var(--accent);
  padding:35px;
  border-radius:18px;
  margin:50px 0;
  font-size:24px;
  line-height:1.7;
  color:var(--navy);
  box-shadow:
  0 10px 30px rgba(0,0,0,0.04);
}

/* CTA */

.article-cta{
  background:linear-gradient(135deg,var(--navy),#1c2941);
  color:white;
  padding:70px 50px;
  border-radius:24px;
  text-align:center;
  margin-top:90px;
}

.article-cta h2{
  color:white;
  margin-top:0;
  margin-bottom:20px;
  font-size:46px;
}

.article-cta p{
  color:#d1d5db;
  margin-bottom:30px;
  font-size:19px;
}

/* RELATED POSTS */

.related-posts{
  padding-top:80px;
}

/* MOBILE */

@media(max-width:900px){

  .article-hero{
    padding:80px 0 70px;
  }

  .article-hero h1{
    font-size:42px;
  }

  .article-subtitle{
    font-size:19px;
  }

  .article-meta{
    flex-direction:column;
    gap:10px;
  }

  .article-image{
    margin-top:-30px;
  }

  .article-content{
    font-size:18px;
    line-height:1.9;
  }

  .article-content h2{
    font-size:32px;
  }

  .article-highlight{
    font-size:20px;
    padding:25px;
  }

  .article-cta{
    padding:50px 30px;
  }

  .article-cta h2{
    font-size:34px;
  }

}


/* =========================
   BUTTONS
========================= */

.btn{
  display:inline-block;
  padding:16px 34px;
  border-radius:6px;
  font-weight:700;
  transition:0.3s;
}

/* HERO BUTTON */

.hero .btn{
  background:white;
  color:var(--navy);
}

.hero .btn:hover{
  background:var(--accent);
  color:var(--navy);
}

/* DEFAULT BUTTON */

.cta .btn,
.featured-content .btn{
  background:var(--accent);
  color:var(--navy);
  box-shadow:
  0 10px 20px rgba(168,201,176,0.18);
}

.cta .btn:hover,
.featured-content .btn:hover{
  background:var(--accent-light);
}

/* =========================
   TITLES
========================= */

.section-title{
  font-size:46px;
  margin-bottom:50px;
  color:var(--navy);
  position:relative;
  letter-spacing:-1px;
}

.section-title::after{
  content:"";
  width:80px;
  height:4px;
  background:var(--accent);
  position:absolute;
  left:0;
  bottom:-15px;
  border-radius:20px;
}

/* =========================
   ABOUT
========================= */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.card{
  background:white;
  padding:45px;
  border-radius:18px;
  border:1px solid var(--border);
}

.card p{
  color:var(--gray);
  font-size:18px;
}

/* =========================
   SERVICES
========================= */

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.service-box{
  background:white;
  padding:40px;
  border-radius:18px;
  border:1px solid var(--border);
  transition:0.3s;
}

.service-box:hover{
  border-color:rgba(168,201,176,0.5);
  transform:translateY(-5px);
}

.service-box h3{
  margin-bottom:15px;
  color:var(--navy);
  font-size:24px;
}

.service-box p{
  color:var(--gray);
}

/* =========================
   FEATURED ARTICLE
========================= */

.featured{
  padding:80px 0 50px;
}

.featured-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
  align-items:center;
  background:white;
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--border);
}

.featured-image img{
  height:100%;
  object-fit:cover;
}

.featured-content{
  padding:50px;
}

.tag{
  display:inline-block;
  background:rgba(168,201,176,0.18);
  color:#6D9B76;
  padding:8px 14px;
  border-radius:30px;
  font-size:12px;
  margin-bottom:20px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}

.featured-content h2{
  font-size:42px;
  line-height:1.2;
  margin-bottom:20px;
  color:var(--navy);
}

.featured-content p{
  margin-bottom:30px;
  color:var(--gray);
  font-size:18px;
}

/* =========================
   BLOG GRID
========================= */

.blog-section{
  padding:40px 0 100px;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.blog-card{
  background:white;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  transition:0.3s;
}

.blog-card:hover{
  transform:translateY(-6px);
  border-color:rgba(168,201,176,0.5);
  box-shadow:
  0 20px 40px rgba(0,0,0,0.06);
}

.blog-card img{
  height:240px;
  width:100%;
  object-fit:cover;
}

.blog-content{
  padding:30px;
}

.blog-meta{
  font-size:12px;
  color:#7C8795;
  margin-bottom:15px;
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:700;
}

.blog-content h3{
  font-size:28px;
  line-height:1.3;
  margin-bottom:15px;
  color:var(--navy);
}

.blog-content p{
  color:var(--gray);
  margin-bottom:25px;
}

.read-more{
  color:#6D9B76;
  font-weight:700;
}

.read-more:hover{
  color:var(--navy);
}

/* =========================
   CTA
========================= */

.cta{
  background:linear-gradient(135deg,var(--navy),#1c2941);
  color:white;
  text-align:center;
  padding:100px 20px;
  margin-top:40px;
}

.cta h2{
  font-size:54px;
  margin-bottom:20px;
  letter-spacing:-2px;
}

.cta p{
  max-width:760px;
  margin:auto;
  margin-bottom:35px;
  font-size:20px;
  color:#D1D5DB;
}

/* =========================
   ABOUT PAGE
========================= */

.about-layout{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:60px;
  align-items:start;
}

.about-sidebar{
  position:sticky;
  top:120px;
}

.about-card{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  padding:35px;
  margin-bottom:30px;
}

.about-card h3{
  font-size:28px;
  color:var(--navy);
  margin-bottom:25px;
  letter-spacing:-1px;
}

.about-card h3 {
    color: var(--accent);
}

.about-card ul{
  list-style:none;
}

.about-card ul li{
  margin-bottom:18px;
  color:var(--gray);
  line-height:1.8;
}

.skills-list li{
  position:relative;
  padding-left:18px;
}

.skills-list li::before{
  content:"•";
  color:var(--accent);
  position:absolute;
  left:0;
}

.about-main{
  display:flex;
  flex-direction:column;
  gap:50px;
}

.about-section{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  padding:50px;
}

.about-section h2{
  font-size:42px;
  line-height:1.2;
  margin-bottom:30px;
  color:var(--navy);
  letter-spacing:-1px;
}

.about-section p{
  font-size:20px;
  line-height:2;
  color:#374151;
  margin-bottom:28px;
}

/* MOBILE */

@media(max-width:950px){

  .about-layout{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-sidebar{
    position:relative;
    top:0;
  }

  .about-section{
    padding:35px;
  }

  .about-section h2{
    font-size:34px;
  }

  .about-section p{
    font-size:18px;
    line-height:1.9;
  }

}
.offer-section{
    padding:60px 0 0 0;
}

.offer-wrapper{
    max-width:950px;
    margin:auto;
    text-align:center;
}

.offer-tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:40px;
    background:rgba(168,201,176,0.12);
    color:#6D9B76;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

.offer-wrapper h2{
    font-size:58px;
    line-height:1.1;
    color:var(--navy);
    letter-spacing:-2px;
    margin-bottom:25px;
}

.offer-lead{
    font-size:24px;
    line-height:1.8;
    color:var(--gray);
    max-width:750px;
    margin:0 auto;
}

.offer-divider{
    width:120px;
    height:1px;
    background:#E5E7EB;
    margin:60px auto;
}

.offer-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    text-align:left;
}

.offer-column h3{
    font-size:28px;
    color:var(--navy);
    margin-bottom:25px;
}

.offer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.offer-column li{
    font-size:18px;
    line-height:2.2;
    color:#4B5563;
}

.offer-price{
    text-align:center;
}

.offer-price span{
    color:#6B7280;
    font-size:18px;
}

.offer-price h3{
    font-size:72px;
    line-height:1;
    color:var(--navy);
    margin:25px 0 10px;
    letter-spacing:-3px;
}

.offer-price p{
    font-size:32px;
    color:#6B7280;
    margin-bottom:20px;
}

.offer-price small{
    color:#9CA3AF;
    font-size:16px;
}

/* MOBILE */

@media(max-width:900px){

    .offer-wrapper h2{
        font-size:40px;
    }

    .offer-lead{
        font-size:18px;
    }

    .offer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .offer-price h3{
        font-size:48px;
    }

    .offer-price p{
        font-size:24px;
    }

}
/* =========================
   NOT FIT SECTION
========================= */

.not-fit-section{
  padding:40px 0;
}

.not-fit-wrapper{
  background:#FAFAFA;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:36px;
  padding:80px;
}

.not-fit-header{
  text-align:center;
  max-width:820px;
  margin:0 auto 70px;
}

.not-fit-tag{
  display:inline-block;
  padding:10px 18px;
  border-radius:40px;


  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:25px;
      background:#FEF2F2;
    color:#DC2626;
    border:1px solid #FECACA;
}


.not-fit-header h2{
  font-size:58px;
  line-height:1.1;
  color:var(--navy);
  letter-spacing:-2px;
  margin-bottom:28px;
}

.not-fit-header p{
  font-size:23px;
  line-height:1.9;
  color:var(--gray);
}

/* GRID */

.not-fit-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.not-fit-card{
  background:white;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:24px;
  padding:34px;
  transition:0.3s;
}

.not-fit-card:hover{
  border-color:rgba(239,68,68,0.2);
  transform:translateY(-2px);
}

.not-fit-card h3{
  font-size:26px;
  color:var(--navy);
  line-height:1.3;
  margin-bottom:18px;
  letter-spacing:-0.5px;
}

.not-fit-card p{
  font-size:18px;
  line-height:1.9;
  color:var(--gray);
  margin:0;
}

/* =========================
   POPUP
========================= */

.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    padding:20px;
}

.popup-overlay.active{
    display:flex;
}

.popup-box{
    background:white;
    width:100%;
    max-width:800px;
    min-height:500px;
    border-radius:24px;
    padding:50px;
    position:relative;
    overflow-y:auto;
}

.popup-close{
    position:absolute;
    top:20px;
    right:20px;
    width:40px;
    height:40px;
    border:none;
    background:none;
    cursor:pointer;
    font-size:32px;
    color:#374151;
}

.popup-box h2{
    color:var(--navy);
    margin-bottom:20px;
}

.popup-box p{
    color:#6B7280;
}

/* =========================
   CTA BUTTONS
========================= */

.cta-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 28px;
    border-radius:12px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:all .3s ease;
    cursor:pointer;
}

/* PRIMARY */

.cta-button.primary{
    background:var(--navy);
    color:white;
}

.cta-button.primary:hover{
    background:#A8C9B0;
    color:var(--navy);
    transform:translateY(-2px);
}

/* SECONDARY */

.cta-button.secondary{
    background:white;
    color:var(--navy);
    border:1px solid rgba(0,0,0,0.08);
}

.cta-button.secondary:hover{
    border-color:#A8C9B0;
    color:#6D9B76;
    transform:translateY(-2px);
}

/* FOOTER */

.not-fit-footer{
  text-align:center;
  max-width:820px;
  margin:80px auto 0;
}

.not-fit-footer p{
  font-size:22px;
  color:var(--gray);
  margin-bottom:12px;
}

.not-fit-footer h3{
  font-size:44px;
  line-height:1.3;
  color:var(--navy);
  letter-spacing:-1px;
  margin-bottom:24px;
}

.not-fit-footer span{
  display:block;
  font-size:20px;
  line-height:1.9;
  color:#6B7280;
}

/* MOBILE */

@media(max-width:900px){

  .not-fit-section{
    padding:0px 0;
  }

  .not-fit-wrapper{
    padding:40px 25px;
    border-radius:24px;
  }

  .not-fit-header{
    margin-bottom:45px;
  }

  .not-fit-header h2{
    font-size:40px;
  }

  .not-fit-header p{
    font-size:18px;
    line-height:1.8;
  }

  .not-fit-grid{
    grid-template-columns:1fr;
  }

  .not-fit-card{
    padding:26px;
  }

  .not-fit-card h3{
    font-size:22px;
  }

  .not-fit-card p{
    font-size:16px;
    line-height:1.8;
  }

  .not-fit-footer{
    margin-top:55px;
  }

  .not-fit-footer h3{
    font-size:30px;
  }

  .not-fit-footer p,
  .not-fit-footer span{
    font-size:17px;
  }
  
  .footer-pill-row{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin:30px 0;
}

.footer-pill-row span{
    background:#F3F4F6;
    border:1px solid rgba(0,0,0,0.06);
    padding:12px 18px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    color:var(--navy);
}

}




/* =========================
   HOME HIGHLIGHTS
========================= */

.section-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:40px;
  background:rgba(168,201,176,0.12);
  color:#6D9B76;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:25px;
}

/* =========================
   SERVICE HIGHLIGHT
========================= */

.service-highlight{
  padding:110px 0 40px;
}

.service-highlight-box{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:30px;
  align-items:stretch;
}

.service-highlight-content{
  background:white;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:32px;
  padding:70px;
}

.service-highlight-content h2{
  font-size:58px;
  line-height:1.1;
  color:var(--navy);
  letter-spacing:-2px;
  margin-bottom:28px;
}

.service-highlight-content p{
  font-size:24px;
  line-height:1.9;
  color:var(--gray);
  margin-bottom:25px;
}

.service-small{
  font-size:18px !important;
  color:#6B7280 !important;
  margin-bottom:45px !important;
}

.service-highlight-side{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.service-mini-card{
  flex:1;
  background:linear-gradient(135deg,var(--navy),#1c2941);
  border-radius:32px;
  padding:45px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.service-mini-card span{
  color:#9dbf68;
  font-size:15px;
  letter-spacing:1px;
  margin-bottom:18px;
}

.service-mini-card h3{
  font-size:38px;
  line-height:1.3;
  color:white;
  letter-spacing:-1px;
}

/* =========================
   ABOUT HIGHLIGHT
========================= */

.about-highlight{
  padding:40px 0 110px;
}

.about-highlight-box{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:40px;
  align-items:center;
}

.about-highlight-image img{
  width:100%;
  border-radius:32px;
  display:block;
}

.about-highlight-content{
  background:white;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:32px;
  padding:70px;
}

.about-highlight-content h2{
  font-size:54px;
  line-height:1.1;
  color:var(--navy);
  letter-spacing:-2px;
  margin-bottom:28px;
}

.about-highlight-content p{
  font-size:22px;
  line-height:1.9;
  color:var(--gray);
  margin-bottom:25px;
}

.about-small{
  font-size:18px !important;
  color:#6B7280 !important;
  margin-bottom:45px !important;
}

/* BUTTON */

.service-highlight .btn,
.about-highlight .btn{
  background:var(--navy);
  color:white;
}

.service-highlight .btn:hover,
.about-highlight .btn:hover{
  background:var(--accent);
  color:var(--navy);
}

/* MOBILE */

@media(max-width:950px){

  .service-highlight,
  .about-highlight{
    padding:70px 0;
  }

  .service-highlight-box,
  .about-highlight-box{
    grid-template-columns:1fr;
  }

  .service-highlight-content,
  .about-highlight-content{
    padding:40px 28px;
    border-radius:24px;
  }

  .service-highlight-content h2,
  .about-highlight-content h2{
    font-size:40px;
  }

  .service-highlight-content p,
  .about-highlight-content p{
    font-size:18px;
    line-height:1.8;
  }

  .service-mini-card{
    padding:35px;
    border-radius:24px;
  }

  .service-mini-card h3{
    font-size:28px;
  }

}


/* =========================
   GUARANTEE SECTION DARK
========================= */

.guarantee-section{
    background:#1c2941;
    padding:120px 0;
    margin:100px 0;
    position:relative;
    overflow:hidden;
}

.guarantee-section::before{
    content:"";
    position:absolute;
    top:-250px;
    left:-250px;
    width:600px;
    height:600px;
    border-radius:50%;
    background:rgba(168,201,176,0.05);
}

.guarantee-wrapper{
    max-width:1100px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================
   HEADER
========================= */

.guarantee-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 80px;
}

.guarantee-tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:40px;
    background:rgba(168,201,176,0.12);
    color:#9dbf68;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

.guarantee-header h2{
    font-size:58px;
    line-height:1.1;
    color:white;
    letter-spacing:-2px;
    margin-bottom:25px;
}

.guarantee-header p{
    font-size:24px;
    line-height:1.9;
    color:#CBD5E1;
}

/* =========================
   CONTENT
========================= */

.guarantee-content{
    display:flex;
    flex-direction:column;
    gap:60px;
}

/* =========================
   TEXT BLOCKS
========================= */

.guarantee-block{
    max-width:850px;
    margin:0 auto;
    text-align:center;
}

.guarantee-block p{
    font-size:22px;
    line-height:2;
    color:#E5E7EB;
    margin-bottom:24px;
}

.guarantee-block p:last-child{
    margin-bottom:0;
}

/* =========================
   QUOTE
========================= */

.guarantee-quote{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.guarantee-quote p{
    font-size:46px;
    line-height:1.5;
    color:white;
    letter-spacing:-1px;
    margin:0;
}

/* =========================
   HIGHLIGHT
========================= */

.guarantee-highlight{
    color:#9dbf68 !important;
    font-size:32px !important;
    line-height:1.8 !important;
    font-weight:600;
    letter-spacing:-0.5px;
}

/* =========================
   REALITY SECTION
========================= */

.guarantee-reality{
    margin-top:20px;
}

.guarantee-reality h3{
    text-align:center;
    font-size:42px;
    color:white;
    margin-bottom:45px;
    letter-spacing:-1px;
}

.reality-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.reality-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:32px;
    transition:0.3s;
}

.reality-card:hover{
    border-color:rgba(168,201,176,0.35);
    transform:translateY(-2px);
}

.reality-card span{
    display:inline-flex;
    width:44px;
    height:44px;
    border-radius:14px;
    background:#9dbf68;
    color:#1c2941;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
    margin-bottom:22px;
}

.reality-card p{
    font-size:18px;
    line-height:1.8;
    color:#E5E7EB;
    margin:0;
}

/* =========================
   CLOSING
========================= */

.guarantee-closing{
    text-align:center;
    max-width:850px;
    margin:30px auto 0;
}

.guarantee-closing p{
    font-size:22px;
    color:#CBD5E1;
    margin-bottom:20px;
}

.guarantee-closing h3{
    font-size:48px;
    line-height:1.4;
    color:white;
    letter-spacing:-1px;
    margin-bottom:30px;
}

.guarantee-closing span{
    display:block;
    font-size:20px;
    line-height:1.9;
    color:#94A3B8;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .guarantee-section{
        padding:80px 25px;
        margin:70px 0;
        border-radius:24px;
    }

    .guarantee-header{
        margin-bottom:50px;
    }

    .guarantee-header h2{
        font-size:40px;
    }

    .guarantee-header p{
        font-size:18px;
        line-height:1.8;
    }

    .guarantee-content{
        gap:45px;
    }

    .guarantee-block p{
        font-size:18px;
        line-height:1.9;
    }

    .guarantee-quote p{
        font-size:30px;
    }

    .guarantee-highlight{
        font-size:24px !important;
    }

    .guarantee-reality h3{
        font-size:30px;
    }

    .reality-grid{
        grid-template-columns:1fr;
    }

    .reality-card{
        padding:24px;
    }

    .reality-card p{
        font-size:16px;
    }

    .guarantee-closing h3{
        font-size:30px;
    }

    .guarantee-closing p,
    .guarantee-closing span{
        font-size:17px;
    }

}


/* =========================
   WHY WORK WITH ME
========================= */

.why-me-section{
  padding:40px 0;
}

.why-me-wrapper{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:40px;
  align-items:stretch;
}

.why-me-content{
  background:white;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:32px;
  padding:70px;
}

.why-me-tag{
  display:inline-block;
  padding:10px 18px;
  border-radius:40px;
  background:rgba(168,201,176,0.12);
  color:#6D9B76;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:28px;
}

.why-me-content h2{
  font-size:58px;
  line-height:1.1;
  color:var(--navy);
  letter-spacing:-2px;
  margin-bottom:30px;
}

.why-me-lead{
  font-size:23px;
  line-height:1.9;
  color:var(--gray);
  margin-bottom:50px;
}

/* POINTS */

.why-me-points{
  display:flex;
  flex-direction:column;
  gap:22px;
  margin-bottom:50px;
}

.why-me-point{
  display:flex;
  align-items:flex-start;
  gap:22px;
  background:#FAFAFA;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:22px;
  padding:24px;
}

.why-me-point span{
  width:46px;
  height:46px;
  min-width:46px;
  border-radius:14px;
  background:var(--navy);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:700;
}

.why-me-point p{
  font-size:18px;
  line-height:1.8;
  color:#374151;
  margin:0;
}

/* QUOTE */

.why-me-quote{
  background:linear-gradient(135deg,var(--navy),#1c2941);
  border-radius:32px;
  padding:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.why-me-quote p{
  font-size:36px;
  line-height:1.6;
  color:white;
  letter-spacing:-1px;
  margin:0;
}

/* BUTTON */

.why-me-content .btn{
  background:var(--navy);
  color:white;
}

.why-me-content .btn:hover{
  background:var(--accent);
  color:var(--navy);
}

/* MOBILE */

@media(max-width:950px){

  .why-me-section{
    padding:70px 0;
  }

  .why-me-wrapper{
    grid-template-columns:1fr;
  }

  .why-me-content{
    padding:40px 28px;
    border-radius:24px;
  }

  .why-me-content h2{
    font-size:40px;
  }

  .why-me-lead{
    font-size:18px;
    line-height:1.8;
  }

  .why-me-point{
    padding:20px;
    gap:16px;
  }

  .why-me-point p{
    font-size:16px;
    line-height:1.7;
  }

  .why-me-quote{
    padding:45px 28px;
    border-radius:24px;
  }

  .why-me-quote p{
    font-size:26px;
    line-height:1.5;
  }

}

/* =========================
   WORK STEPS
========================= */

.work-steps{
  display:flex;
  flex-direction:column;
  gap:22px;
  max-width:760px;
  margin:0 auto;
}

.work-step{
  display:flex;
  align-items:flex-start;
  gap:24px;
  background:#FAFAFA;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:22px;
  padding:28px;
  text-align:left;
  transition:0.3s;
}

.work-step:hover{
  border-color:rgba(168,201,176,0.5);
  transform:translateY(-2px);
}

.work-step-number{
  width:54px;
  height:54px;
  min-width:54px;
  border-radius:16px;
  background:var(--navy);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:700;
  letter-spacing:1px;
}

.work-step-content h3{
  font-size:24px;
  color:var(--navy);
  margin-bottom:10px;
  letter-spacing:-0.5px;
}

.work-step-content p{
  font-size:18px;
  line-height:1.9;
  color:var(--gray);
  margin:0;
}

/* MOBILE */

@media(max-width:900px){

  .work-step{
    padding:22px;
    gap:18px;
  }

  .work-step-number{
    width:46px;
    height:46px;
    min-width:46px;
    font-size:13px;
  }

  .work-step-content h3{
    font-size:20px;
  }

  .work-step-content p{
    font-size:16px;
    line-height:1.8;
  }

}
/* =========================
   FIT SECTION DARK
========================= */

.fit-section{
  background:#1c2941;
  padding:120px 0;
  margin:90px 0 40px 0;
  position:relative;
  overflow:hidden;
}

.fit-section::before{
  content:"";
  position:absolute;
  top:-250px;
  right:-250px;
  width:600px;
  height:600px;
  border-radius:50%;
  background:rgba(168,201,176,0.05);
}

.fit-header{
  text-align:center;
  max-width:760px;
  margin:0 auto 70px;
  position:relative;
  z-index:2;
}

.fit-tag{
  display:inline-block;
  padding:10px 18px;
  background:rgba(168,201,176,0.12);
  color:#9dbf68;
  border-radius:40px;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:25px;
}

.fit-header h2{
  font-size:58px;
  line-height:1.1;
  color:white;
  letter-spacing:-2px;
  margin-bottom:25px;
}

.fit-header p{
  font-size:24px;
  line-height:1.9;
  color:#CBD5E1;
}

/* GRID */

.fit-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  max-width:980px;
  margin:0 auto;
  position:relative;
  z-index:2;
}

.fit-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:28px;
  display:flex;
  gap:18px;
  align-items:flex-start;
  transition:0.3s;
  backdrop-filter:blur(8px);
}

.fit-card:hover{
  border-color:rgba(168,201,176,0.45);
  transform:translateY(-2px);
}

.fit-icon{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:14px;
  background:#9dbf68;
  color:#1c2941;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:700;
}

.fit-card p{
  font-size:18px;
  line-height:1.8;
  color:#E5E7EB;
  margin:0;
}

/* FOOTER */

.fit-footer{
  text-align:center;
  max-width:760px;
  margin:80px auto 0;
  position:relative;
  z-index:2;
}

.fit-footer p{
  font-size:22px;
  color:#CBD5E1;
  margin-bottom:12px;
}

.fit-footer h3{
  font-size:46px;
  color:white;
  letter-spacing:-1px;
  margin-bottom:25px;
  line-height:1.3;
}

.fit-footer span{
  display:block;
  font-size:20px;
  line-height:1.8;
  color:#94A3B8;
}

/* MOBILE */

@media(max-width:900px){

  .fit-section{
    padding:80px 25px;
    margin:70px 0;
    border-radius:24px;
  }

  .fit-header h2{
    font-size:40px;
  }

  .fit-header p{
    font-size:18px;
  }

  .fit-grid{
    grid-template-columns:1fr;
  }

  .fit-card{
    padding:24px;
  }

  .fit-card p{
    font-size:16px;
  }

  .fit-footer h3{
    font-size:30px;
  }

  .fit-footer p,
  .fit-footer span{
    font-size:17px;
  }

}


.not-fit-card.red-flag{
    background:#FEF2F2;
    border:1px solid #FECACA;
}

.not-fit-card.red-flag h3{
    color:#B91C1C;
}

.not-fit-card.warning{
    background:#FFFBEB;
    border:1px solid #FDE68A;
}

.not-fit-card.warning h3{
    color:#92400E;
}

/* =========================
   FINAL CTA
========================= */

.final-cta{
    padding:40px 0 100px 0;
}

.final-cta-header{
    max-width:850px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.final-cta-header h2{
    font-size:58px;
    line-height:1.1;
    color:var(--navy);
    letter-spacing:-2px;
    margin-bottom:25px;
}

.final-cta-header p{
    font-size:22px;
    line-height:1.9;
    color:var(--gray);
}

.final-cta-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.cta-card{
    background:white;
    border:1px solid rgba(0,0,0,0.06);
    border-radius:32px;
    padding:50px;
}

.cta-card.featured{
    border-color:rgba(168,201,176,0.4);
}

.cta-icon{
    font-size:42px;
    margin-bottom:20px;
}

.cta-card h3{
    font-size:34px;
    color:var(--navy);
    margin-bottom:20px;
}

.cta-card p{
    font-size:18px;
    line-height:1.9;
    color:var(--gray);
    margin-bottom:35px;
}

.cta-card .btn{
    width:100%;
    justify-content:center;
}

@media(max-width:900px){
	
	.final-cta {
    padding: 40px 0 70px 0;
}
.cta-button{
margin: 0 10px 10px 0;
}

    .final-cta-grid{
        grid-template-columns:1fr;
    }

    .final-cta-header h2{
        font-size:40px;
    }

    .final-cta-header p{
        font-size:18px;
    }

    .cta-card{
        padding:35px;
    }

}

/* =========================
   CONTACT
========================= */

.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.contact-box{
  background:white;
  padding:35px;
  border-radius:18px;
  border:1px solid var(--border);
}

.contact-box h3{
  color:var(--navy);
  margin-bottom:12px;
}

.contact-box p{
  color:var(--gray);
}

/* =========================
   CONTACT PAGE
========================= */

.contact-layout{
  display:grid;
  grid-template-columns:1.2fr 420px;
  gap:40px;
  align-items:start;
}

.contact-box-large{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  padding:50px;
}

.contact-box-large h2{
  font-size:46px;
  color:var(--navy);
  margin-bottom:20px;
  letter-spacing:-1px;
}

.contact-intro{
  font-size:20px;
  color:var(--gray);
  margin-bottom:50px;
  line-height:1.9;
}

/* CONTACT ITEMS */

.contact-item{
  padding:28px 0;
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.contact-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.contact-label{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:#9CA3AF;
  margin-bottom:10px;
  font-weight:700;
}

.contact-value{
  font-size:28px;
  color:var(--navy);
  font-weight:600;
  transition:0.3s;
}

a.contact-value:hover{
  color:var(--accent);
}

/* SIDEBAR */

.contact-sidebar{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.contact-card{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  padding:35px;
}

.contact-card h3{
  font-size:28px;
  color:var(--navy);
  margin-bottom:18px;
  letter-spacing:-1px;
}

.contact-card p{
  color:var(--gray);
  line-height:1.9;
}

/* SOCIAL */

.contact-social{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:30px;
}

.contact-social a{
  color:var(--navy);
  font-weight:600;
  transition:0.3s;
}

.contact-social a:hover{
  color:var(--accent);
  transform:translateX(4px);
}

/* MOBILE */

@media(max-width:950px){

  .contact-layout{
    grid-template-columns:1fr;
  }

  .contact-box-large{
    padding:35px;
  }

  .contact-box-large h2{
    font-size:36px;
  }

  .contact-value{
    font-size:22px;
    word-break:break-word;
  }

}



/* =========================
   FOOTER
========================= */
footer{
  background:linear-gradient(135deg,#1c2941,#2F3A50);
  color:white;
  margin-top:0px;
  padding:70px 0 35px;
}

.footer-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  padding-bottom:35px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.footer-left{
  flex:1;
}

.footer-left h3{
  font-size:28px;
  color:var(--accent);
  margin-bottom:12px;
  letter-spacing:-1px;
}

.footer-left p{
  color:#CBD5E1;
  max-width:420px;
  line-height:1.8;
}

/* SOCIAL */

.footer-social{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:nowrap;
}

.footer-social a{
  width:40px;
  height:40px;
  min-width:40px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
  border:1px solid rgba(255,255,255,0.05);
}

.footer-social a:hover{
  background:var(--accent);
  transform:translateY(-2px);
}

.footer-social svg{
  width:16px;
  height:16px;
  fill:white;
}

/* BOTTOM */

.footer-bottom{
  text-align:center;
  padding-top:30px;
  color:#94A3B8;
  font-size:14px;
}

/* MOBILE */

@media(max-width:900px){

  .footer-wrapper{
    flex-direction:column;
    text-align:center;
  }

  .footer-left p{
    margin:auto;
  }

  .footer-social{
    justify-content:center;
    flex-wrap:wrap;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

  section{
    padding:50px 0 0 0;
  }

  .hero,
  .blog-hero{
    padding:80px 0 40px 0;
  }
  
  .experience-split {
    padding: 80px 0 60px 0;
}

  .hero-content{
    flex-direction:column;
    text-align:center;
    gap:40px;
  }

  .hero-text h1,
  .blog-hero h1{
    font-size:44px;
  }

  .hero-text h2{
    font-size:24px;
  }

  .hero-text p,
  .blog-hero p{
    font-size:18px;
  }

  .section-title{
    font-size:34px;
  }

  .about-grid,
  .services-grid,
  .blog-grid,
  .contact-grid,
  .featured-grid{
    grid-template-columns:1fr;
  }

  .featured-content{
    padding:30px;
  }

  .featured-content h2{
    font-size:32px;
  }

  .nav-links{
    position:absolute;
    top:84px;
    right:0;
    background:var(--navy);
    width:100%;
    flex-direction:column;
    align-items:center;
    padding:35px 0;
    display:none;
  }

  .nav-links a{
    color:white;
  }

  .nav-links.active{
    display:flex;
  }

  .hamburger{
    display:flex;
  }

  .cta h2{
    font-size:38px;
  }

}