/* ================================================================
   Frontend.co.za — Main Stylesheet
   Brand colours: #FFDD61 (yellow) · #3C2204 (dark brown)
================================================================ */

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

    :root {
      --navy:    #3C2204;
      --navy2:   #2e1a03;
      --blue:    #FFDD61;
      --blue2:   #f5ce40;
      --sky:     #FFF8DC;
      --cream:   #FFFBF0;
      --white:   #FFFFFF;
      --ink:     #3C2204;
      --muted:   #7A6040;
      --border:  #EDE0C4;
      --border2: #D9C9A0;
      --font-h:  'Fraunces', Georgia, serif;
      --font-b:  'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      background: var(--white);
      color: var(--ink);
      font-family: var(--font-b);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

    .label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-b);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 1.2rem;
    }
    .label::before {
      content: '';
      display: block;
      width: 20px; height: 2px;
      background: var(--navy);
      border-radius: 2px;
      flex-shrink: 0;
    }

    .section-title {
      font-family: var(--font-h);
      font-size: clamp(2rem, 3.8vw, 2.9rem);
      font-weight: 600;
      line-height: 1.15;
      color: var(--navy);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    .section-sub {
      color: var(--muted);
      font-size: 1rem;
      max-width: 500px;
      line-height: 1.75;
      font-weight: 300;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-b);
      font-weight: 500;
      font-size: 0.9rem;
      padding: 0.8rem 1.7rem;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.22s ease;
      text-decoration: none;
      border: none;
      letter-spacing: 0.01em;
    }
    .btn-primary { background: var(--navy); color: #fff; }
    .btn-primary:hover { background: var(--navy2); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(60,34,4,0.18); }
    .btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border2); }
    .btn-outline:hover { border-color: var(--navy); transform: translateY(-1px); }
    .btn-blue { background: var(--blue); color: var(--navy); font-weight: 600; }
    .btn-blue:hover { background: var(--blue2); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,221,97,0.35); }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      gap: 1.5rem;
    }
    .logo {
      font-family: var(--font-h); font-size: 1.25rem; font-weight: 600;
      color: var(--navy); text-decoration: none;
      display: flex; align-items: center; gap: 0.5rem; letter-spacing: -0.02em;
      flex-shrink: 0;
    }
    .logo-mark {
      width: 30px; height: 30px; background: var(--navy);
      border-radius: 7px; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .logo-mark svg { width: 14px; height: 14px; fill: #fff; }
    .logo em { font-style: normal; color: var(--blue); }

    /* Logo image */
    .logo-img {
      height: 52px;
      width: auto;
      display: block;
      object-fit: contain;
    }


    /* Desktop links — centred, flex-grow so they use available space */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.6rem;
      list-style: none;
      flex: 1;
      justify-content: center;
    }
    .nav-links a {
      color: var(--muted); text-decoration: none;
      font-size: 0.87rem; font-weight: 500;
      transition: color 0.2s; white-space: nowrap;
    }
    .nav-links a:hover { color: var(--navy); }

    .nav-actions { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
    .nav-phone {
      font-size: 0.82rem; font-weight: 600; color: var(--navy);
      text-decoration: none; display: flex; align-items: center; gap: 0.35rem;
      white-space: nowrap;
    }

    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column;
      justify-content: center; gap: 5px;
      cursor: pointer; padding: 6px; flex-shrink: 0;
      background: none; border: none;
    }
    .hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--navy); border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
      transform-origin: center;
    }
    /* X state */
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile dropdown — hidden by default, slides down */
    .mobile-menu {
      position: absolute;
      top: 70px; left: 0; right: 0;
      background: #fff;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 8px 24px rgba(60,34,4,0.08);
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.35s ease;
      z-index: 199;
    }
    .mobile-menu.open { max-height: 420px; }
    .mobile-menu-inner {
      padding: 1.25rem 1.5rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .mobile-menu-inner a {
      display: block;
      padding: 0.85rem 0;
      color: var(--navy);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
    }
    .mobile-menu-inner a:last-child { border-bottom: none; }
    .mobile-menu-inner a:hover { color: var(--blue); }
    .mobile-menu-cta {
      margin-top: 1rem;
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    /* HERO */
    #hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; padding-top: 70px; overflow: hidden; max-width: 100vw; }
    .hero-left { display: flex; align-items: center; padding: 5rem 4rem 5rem 0; position: relative; }
    .hero-left::after {
      content: ''; position: absolute; top: 0; bottom: 0; left: -200%; right: 0;
      background: var(--cream); z-index: -1;
      pointer-events: none;
    }
    .hero-content { max-width: 520px; }
    .hero-h1 {
      font-family: var(--font-h); font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 600;
      line-height: 1.08; color: var(--navy); letter-spacing: -0.03em; margin-bottom: 1.5rem;
      opacity: 0; animation: fadeUp 0.8s 0.15s forwards;
    }
    .hero-h1 em { font-style: italic; color: var(--blue); }
    .hero-desc { color: var(--muted); font-size: 1.05rem; font-weight: 300; max-width: 440px; margin-bottom: 2.5rem; line-height: 1.8; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
    .hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.45s forwards; }
    .hero-trust { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border2); display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.6s forwards; }
    .hero-trust-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
    .trust-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
    .trust-badge { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 0.35rem 0.85rem; font-size: 0.78rem; font-weight: 600; color: var(--navy); }
    .hero-right { background: var(--navy); display: flex; align-items: center; justify-content: center; padding: 4rem 3rem 4rem 4rem; position: relative; overflow: hidden; opacity: 0; animation: fadeIn 1s 0.3s forwards; }
    .hero-right::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px); background-size: 40px 40px; }
    .hero-blob { position: absolute; width: 500px; height: 500px; background: radial-gradient(circle,rgba(255,221,97,0.3) 0%,transparent 70%); bottom: -150px; right: -100px; pointer-events: none; }
    .hero-cards { position: relative; z-index: 1; width: 100%; max-width: 360px; }
    .h-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 1.5rem 1.75rem; margin-bottom: 1rem; animation: float 5s ease-in-out infinite; }
    .h-card:nth-child(2) { animation-delay: 1s; margin-left: 2rem; }
    .h-card:nth-child(3) { animation-delay: 2s; }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
    .h-card-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; font-weight: 500; }
    .h-card-val { font-family: var(--font-h); font-size: 2.2rem; font-weight: 600; color: #fff; line-height: 1; }
    .h-card-val small { font-size: 1rem; color: rgba(255,255,255,0.6); font-family: var(--font-b); font-weight: 300; }
    .h-card-sub { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }
    .h-card-live { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
    .live-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 8px #4ADE80; flex-shrink: 0; }
    @keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
    @keyframes fadeIn  { from{opacity:0} to{opacity:1} }

    /* CLIENTS */
    .clients-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 1.8rem 0; }
    .clients-inner { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
    .clients-label { font-size: 0.75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; flex-shrink: 0; }
    .clients-logos { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }
    .client-logo { font-family: var(--font-h); font-size: 0.95rem; font-weight: 600; color: var(--border2); letter-spacing: -0.01em; transition: color 0.2s; cursor: default; }
    .client-logo:hover { color: var(--muted); }

    /* SECTIONS */
    section { padding: 100px 0; }
    .section-header { margin-bottom: 3.5rem; }
    .section-header.center { text-align: center; }
    .section-header.center .section-sub { margin: 0 auto; }

    /* SERVICES */
    #services { background: var(--white); }
    .services-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; }
    .services-sticky { position: sticky; top: 100px; }
    .services-grid-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
    .svc-card { background: var(--white); padding: 2rem; transition: background 0.25s; position: relative; }
    .svc-card::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue); transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s; }
    .svc-card:hover { background: var(--sky); }
    .svc-card:hover::after { transform: scaleY(1); }
    .svc-num { font-family: var(--font-h); font-size: 0.78rem; color: var(--muted); font-weight: 300; margin-bottom: 1.2rem; font-style: italic; }
    .svc-icon { font-size: 1.5rem; margin-bottom: 0.8rem; }
    .svc-title { font-family: var(--font-h); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
    .svc-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

    /* ABOUT */
    #about { background: var(--cream); }
    .about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }
    .about-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
    .about-num-item { padding: 1.5rem; background: var(--white); border: 1px solid var(--border); border-radius: 10px; }
    .about-num-val { font-family: var(--font-h); font-size: 2.4rem; font-weight: 600; color: var(--navy); line-height: 1; margin-bottom: 0.3rem; letter-spacing: -0.03em; }
    .about-num-val span { color: var(--blue); filter: brightness(0.75); }
    .about-num-label { font-size: 0.82rem; color: var(--muted); font-weight: 300; }
    .about-img-block { position: relative; }
    .about-img-main { border-radius: 12px; overflow: hidden; background: var(--navy); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; }
    .about-img-main::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg,rgba(255,221,97,0.3) 0%,transparent 60%); }
    .about-img-main::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px); background-size: 30px 30px; }
    .about-accent-card { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--blue); border-radius: 10px; padding: 1.2rem 1.5rem; color: var(--navy); }
    .about-accent-val { font-family: var(--font-h); font-size: 1.8rem; font-weight: 600; line-height: 1; }
    .about-accent-label { font-size: 0.78rem; opacity: 0.8; margin-top: 0.25rem; }
    .about-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
    .about-list-item { display: flex; gap: 1rem; align-items: flex-start; }
    .about-check { width: 22px; height: 22px; border-radius: 50%; background: var(--sky); border: 1px solid var(--navy); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: var(--navy); flex-shrink: 0; margin-top: 0.1rem; }
    .about-list-text { font-size: 0.9rem; color: var(--muted); font-weight: 300; line-height: 1.65; }
    .about-list-text strong { color: var(--navy); font-weight: 600; }

    /* PRICING */
    #pricing { background: var(--white); }
    .pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
    .price-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
    .price-card:hover { box-shadow: 0 12px 40px rgba(60,34,4,0.09); transform: translateY(-4px); }
    .price-card.featured { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(60,34,4,0.06); }
    .price-card-head { padding: 2rem 2rem 1.5rem; background: var(--cream); border-bottom: 1px solid var(--border); }
    .price-card.featured .price-card-head { background: var(--navy); }
    .price-tag-line { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); opacity: 0.6; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
    .price-card.featured .price-tag-line { color: rgba(255,255,255,0.45); }
    .price-dot { width: 6px; height: 6px; background: var(--navy); border-radius: 50%; flex-shrink: 0; opacity: 0.5; }
    .price-card.featured .price-dot { background: rgba(255,255,255,0.45); }
    .price-name { font-family: var(--font-h); font-size: 1.4rem; font-weight: 600; color: var(--navy); letter-spacing: -0.02em; }
    .price-card.featured .price-name { color: #fff; }
    .price-amount { font-family: var(--font-h); font-size: 2.8rem; font-weight: 600; color: var(--navy); margin: 1rem 0 0.3rem; line-height: 1; letter-spacing: -0.04em; }
    .price-card.featured .price-amount { color: #fff; }
    .price-amount sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.6rem; display: inline-block; }
    .price-amount sub { font-size: 0.9rem; color: var(--muted); font-weight: 300; font-family: var(--font-b); }
    .price-card.featured .price-amount sub { color: rgba(255,255,255,0.45); }
    .price-desc { font-size: 0.82rem; color: var(--muted); font-weight: 300; }
    .price-card.featured .price-desc { color: rgba(255,255,255,0.5); }
    .price-card-body { padding: 2rem; }
    .price-features { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
    .price-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.88rem; color: var(--muted); font-weight: 300; }
    .pf-check { color: var(--navy); font-size: 0.8rem; font-weight: 600; flex-shrink: 0; margin-top: 0.1rem; }
    .price-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 1rem; font-weight: 300; }

    /* TESTIMONIALS */
    #testimonials { background: var(--navy); }
    .testimonials-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; }
    .testi-left { position: sticky; top: 100px; }
    .testi-left .label { color: rgba(255,255,255,0.35); }
    .testi-left .label::before { background: rgba(255,255,255,0.35); }
    .testi-left .section-title { color: #fff; }
    .testi-left .section-sub { color: rgba(255,255,255,0.45); }
    .testi-avg { margin-top: 2.5rem; }
    .testi-score { font-family: var(--font-h); font-size: 3.5rem; font-weight: 600; color: #fff; line-height: 1; }
    .testi-stars-big { color: #F59E0B; font-size: 0.95rem; letter-spacing: 0.05em; margin-top: 0.3rem; }
    .testi-count { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 0.3rem; font-weight: 300; }
    .testi-right { display: flex; flex-direction: column; gap: 1.25rem; }
    .testi-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 2rem; transition: background 0.25s; }
    .testi-card:hover { background: rgba(255,255,255,0.08); }
    .testi-q { font-family: var(--font-h); font-size: 2rem; color: rgba(255,255,255,0.12); line-height: 1; margin-bottom: 0.5rem; font-style: italic; }
    .testi-text { font-size: 0.92rem; color: rgba(255,255,255,0.65); font-weight: 300; line-height: 1.8; margin-bottom: 1.25rem; }
    .testi-author { display: flex; align-items: center; gap: 0.85rem; }
    .testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-weight: 600; font-size: 0.9rem; color: var(--navy); flex-shrink: 0; }
    .testi-name { font-weight: 500; font-size: 0.88rem; color: #fff; }
    .testi-role { font-size: 0.78rem; color: rgba(255,255,255,0.35); font-weight: 300; }

    /* BLOG */
    #blog { background: var(--cream); }
    .blog-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; gap: 1rem; flex-wrap: wrap; }
    .blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; }
    .blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
    .blog-card:hover { box-shadow: 0 8px 30px rgba(60,34,4,0.08); transform: translateY(-3px); }
    .blog-thumb { aspect-ratio: 16/9; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; position: relative; overflow: hidden; }
    .blog-thumb::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px); background-size: 30px 30px; }
    .blog-card.featured .blog-thumb { aspect-ratio: 3/1.5; font-size: 3.5rem; }
    .blog-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
    .blog-cat { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); opacity: 0.7; margin-bottom: 0.6rem; }
    .blog-title { font-family: var(--font-h); font-size: 1.1rem; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
    .blog-card.featured .blog-title { font-size: 1.4rem; }
    .blog-excerpt { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.7; flex: 1; }
    .blog-meta { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.2rem; font-size: 0.78rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 1rem; }
    .blog-meta-dot { width: 3px; height: 3px; background: var(--border2); border-radius: 50%; }
    .blog-side { display: flex; flex-direction: column; gap: 1.5rem; }
    .blog-side .blog-card .blog-thumb { aspect-ratio: 16/7; }

    /* FAQ */
    #faq { background: var(--white); }
    .faq-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 7rem; }
    .faq-left { position: sticky; top: 100px; }
    .faq-items { display: flex; flex-direction: column; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-q { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 0; cursor: pointer; font-size: 0.95rem; font-weight: 500; color: var(--navy); user-select: none; gap: 1rem; transition: color 0.2s; }
    .faq-q:hover { color: var(--blue); }
    .faq-toggle { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--muted); flex-shrink: 0; transition: all 0.3s; line-height: 1; }
    .faq-item.open .faq-toggle { border-color: var(--navy); color: var(--navy); transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    .faq-a-inner { padding: 0 0 1.5rem; font-size: 0.9rem; color: var(--muted); font-weight: 300; line-height: 1.8; }
    .faq-item.open .faq-a { max-height: 300px; }
    .faq-cta { margin-top: 2rem; background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
    .faq-cta h4 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
    .faq-cta p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.2rem; font-weight: 300; line-height: 1.7; }

    /* CTA BAND */
    .cta-band { background: var(--blue); padding: 6rem 0; text-align: center; position: relative; overflow: hidden; }
    .cta-band::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.05) 1px,transparent 1px); background-size: 50px 50px; }
    .cta-band h2 { font-family: var(--font-h); font-size: clamp(2rem,4vw,3rem); font-weight: 600; color: var(--navy); position: relative; margin-bottom: 0.75rem; letter-spacing: -0.03em; }
    .cta-band p { color: rgba(60,34,4,0.7); font-size: 1rem; margin-bottom: 2rem; position: relative; font-weight: 300; }
    .btn-white { background: var(--navy); color: #fff; font-weight: 600; }
    .btn-white:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(60,34,4,0.25); }

    /* CONTACT */
    #contact { background: var(--cream); }
    .contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 7rem; align-items: start; }
    .contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.75rem; }
    .contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
    .c-icon { width: 42px; height: 42px; border-radius: 9px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
    .c-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; margin-bottom: 0.2rem; }
    .c-value { font-weight: 500; font-size: 0.9rem; color: var(--navy); }
    .contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 2.5rem; }
    .contact-form-wrap h3 { font-family: var(--font-h); font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; letter-spacing: -0.02em; }
    .contact-form-wrap p { font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem; font-weight: 300; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1rem; }
    .form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.45rem; }
    .form-group input,.form-group select,.form-group textarea { width: 100%; background: var(--cream); border: 1.5px solid var(--border); border-radius: 7px; padding: 0.8rem 1rem; color: var(--navy); font-family: var(--font-b); font-size: 0.9rem; transition: border-color 0.2s, background 0.2s; outline: none; }
    .form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: var(--navy); background: var(--white); }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-group select option { background: var(--white); }

    /* FOOTER */
    footer { background: var(--navy); padding: 5rem 0 2.5rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
    .footer-brand .logo { color: #fff; }
    .footer-brand .logo em { color: rgba(255,255,255,0.35); }
    .footer-brand p { color: rgba(255,255,255,0.38); font-size: 0.88rem; margin-top: 1rem; max-width: 260px; line-height: 1.75; font-weight: 300; }
    .footer-socials { display: flex; gap: 0.65rem; margin-top: 1.5rem; }
    .soc-btn { width: 36px; height: 36px; border-radius: 7px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; cursor: pointer; transition: all 0.2s; color: rgba(255,255,255,0.45); text-decoration: none; }
    .soc-btn:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
    .footer-col h5 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 1.2rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
    .footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; font-weight: 300; transition: color 0.2s; }
    .footer-col ul a:hover { color: rgba(255,255,255,0.9); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.82rem; color: rgba(255,255,255,0.3); font-weight: 300; flex-wrap: wrap; gap: 0.75rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    /* Hide phone number on mid screens to prevent squash */
    
    /* ============================================================
       RESPONSIVE — largest breakpoint first
    ============================================================ */

    /* Tablet landscape: hide phone number */
    @media (max-width: 1100px) {
      .nav-phone { display: none; }
    }

    /* Tablet: collapse hero, multi-column layouts */
    @media (max-width: 1024px) {
      #hero { grid-template-columns: 1fr; min-height: auto; overflow: hidden; }
      .hero-left { padding: 4rem 0; }
      .hero-left::after { left: -200%; right: -200%; }
      .hero-right { display: none !important; }
      .services-layout { grid-template-columns: 1fr; gap: 3rem; }
      .services-sticky { position: static; }
      .about-layout { grid-template-columns: 1fr; gap: 3rem; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
      .testimonials-layout { grid-template-columns: 1fr; gap: 3rem; }
      .testi-left { position: static; }
      .blog-layout { grid-template-columns: 1fr; }
      .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
      .faq-left { position: static; }
      .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    /* Mobile landscape: hamburger nav */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-actions .btn { display: none; }
    }

    /* Mobile portrait */
    @media (max-width: 768px) {
      #hero { grid-template-columns: 1fr; overflow: hidden; }
      .hero-right { display: none !important; }
      .hero-left { padding: 3rem 0; }
      .services-grid-right { grid-template-columns: 1fr; }
      .about-nums { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .blog-header-row { flex-direction: column; align-items: flex-start; }
    }

    /* Small mobile */
    @media (max-width: 480px) {
      .hero-h1 { font-size: 2.4rem; }
      .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
      .trust-badges { gap: 0.5rem; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-actions .btn { justify-content: center; }
      .about-nums { grid-template-columns: 1fr 1fr; }
      .pricing-grid { max-width: 100%; }
      .testi-right { gap: 1rem; }
    }

    /* FORM VALIDATION */
    .req { color: var(--navy); font-weight: 700; }
    .field-error { display: block; font-size: 0.78rem; color: #dc2626; margin-top: 0.35rem; min-height: 1rem; }
    .form-group input.invalid,.form-group textarea.invalid { border-color: #dc2626 !important; background: #fff8f8 !important; }
    .form-group input.valid,.form-group textarea.valid { border-color: #16a34a !important; }
    .form-status { padding: 0.9rem 1.1rem; border-radius: 8px; font-size: 0.9rem; font-weight: 500; margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
    .form-status.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
    .form-status.error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }
    @keyframes spin { to { transform: rotate(360deg); } }
