
/* =========================================================
   TOKENS & BASE
========================================================= */
:root{
  --navy-800:#122a5c;
  --navy-900:#0b1d44;
  --navy-700:#1b3a7a;
  --brand-400:#ffc629;
  --brand-500:#f5b50a;
  --brand-600:#e0a200;
  --white:#ffffff;
  --new-background-color: linear-gradient(to bottom, rgb(253 246 219), rgb(255 255 255 / 94%));

  --ink:#0f1b33;
  --muted:#5a6478;
  --line:#e4e7ef;
  --bg:#ffffff;
  --bg-soft:#f5f7fb;
  --bg-warm:#fffaf0;

  --font-display:"Poppins", ui-sans-serif, system-ui, sans-serif;
  --font-body:"Poppins", ui-sans-serif, system-ui, sans-serif;

  --shadow-sm:0 6px 18px -10px rgba(18,42,92,.25);
  --shadow-md:0 20px 45px -22px rgba(18,42,92,.35);
  --shadow-lg:0 40px 80px -30px rgba(11,29,68,.55);

  --radius:18px;
  --radius-lg:26px;
  --container:1200px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:clip;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;}
ul,ol{margin:0;padding:0;list-style:none;}

h1,h2,h3,h4{font-family:var(--font-display);line-height:1.15;margin:0;color:var(--navy-800);letter-spacing:-.01em;}
p{margin:0;}

.gw-container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  /* padding-inline:clamp(1rem, 3vw, 1.5rem); */
}
.gw-section{
  padding:clamp(3.5rem, 8vw, 6rem) 0;
}
/* .gw-section--soft{background:var(--bg-soft);} */
.gw-section--soft{background:var(--new-background-color);}
.gw-section--warm{background:var(--bg-warm);}

.gw-eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:13px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  color:var(--brand-600);
  padding:8px 16px;border-radius:999px;
  background:rgba(245,181,10,.12);
  border:1px solid rgba(245,181,10,.35);
}
.gw-eyebrow::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--brand-500);}

.gw-section-head{max-width:760px;margin:0 auto 56px;text-align:center;}
.gw-section-head h2{font-size:clamp(28px,3.6vw,44px);font-weight:800;margin:18px 0 14px;}
.gw-section-head h2 span{color:var(--brand-600);}
.gw-section-head p{color:var(--muted);font-size:16px;}

/* buttons */
.gw-btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 26px;border-radius:999px;
  font-weight:600;font-size:15px;letter-spacing:.2px;
  border:1.5px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
.gw-btn svg{width:18px;height:18px;transition:transform .25s ease;}
.gw-btn:hover svg{transform:translateX(3px);}
.gw-btn-primary{background:linear-gradient(135deg,var(--brand-400),var(--brand-600));color:var(--navy-900);box-shadow:0 14px 30px -12px rgba(224,162,0,.7);}
.gw-btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 40px -14px rgba(224,162,0,.85);}
.gw-btn-secondary{background:transparent;color:var(--white);border-color:rgba(255,255,255,.35);}
.gw-btn-secondary:hover{background:rgba(255,255,255,.08);border-color:#fff;}
.gw-btn-ghost{background:#fff;color:var(--navy-800);border-color:var(--line);}
.gw-btn-ghost:hover{border-color:var(--navy-800);transform:translateY(-2px);}
.gw-btn-dark{background:var(--navy-800);color:#fff;}
.gw-btn-dark:hover{background:var(--navy-900);transform:translateY(-2px);}

/* reveal */
.gw-reveal{opacity:1;
  /* transform:translateY(26px); */
  transition:opacity .7s ease, transform .7s ease;}
.gw-reveal.is-visible{opacity:1;transform:none;}

/* =========================================================
   GW PAGE NAMESPACES
========================================================= */
.gw-nav{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.gw-nav.scrolled{ box-shadow: 0 10px 30px -20px rgba(0,0,0,0.35); }
.gw-nav-inner{
  max-width: 1220px;
  margin: 0 auto;
  padding: 16px clamp(1rem, 3vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.gw-logo{
  display:flex; align-items:center; gap: 10px;
  font-weight: 800; font-size: 19px; color: var(--navy-900);
}
.gw-logo span{ color: var(--brand-500); }
.gw-logo-icon{
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  display:flex; align-items:center; justify-content:center;
  color: var(--brand-400);
}
.gw-logo-icon svg{ width: 20px; height: 20px; }
.gw-nav-links{display:flex; align-items:center; gap: 34px;}
.gw-nav-links a{font-size:14.5px;font-weight:500;color:var(--navy-900);position:relative;padding:4px 0;}
.gw-nav-links a::after{content:"";position:absolute;left:0;bottom:-2px;height:2px;width:0;background:var(--brand-500);transition:width .3s ease;}
.gw-nav-links a:hover::after{width:100%;}
.gw-nav-cta{display:flex;align-items:center;gap:14px;flex-wrap:wrap;justify-content:flex-end;min-width:0;}
.gw-nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px;}
.gw-nav-toggle span{width:24px;height:2px;background:var(--navy-900);border-radius:2px;}
.gw-hero{
  height: 100vh;
  display: flex;
  overflow: hidden;
  background: var(--new-background-color);
  padding-top: 4rem;
}
.gw-hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
}
.gw-hero-copy h1{
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 22px;
  color: var(--navy-900);
  padding-top: 10px;
}
.gw-lead{
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 34px;
  line-height: 1.3;
}
.gw-hero-actions{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:44px;}
.gw-hero-stats{display:flex;gap:clamp(1rem, 2.5vw, 2rem);flex-wrap:wrap;}
.gw-hero-stats .gw-stat{min-width:110px;}
.gw-hero-stats .gw-stat strong{display:block;font-size:28px;font-weight:800;color:var(--navy-900);}
.gw-hero-stats .gw-stat strong .gw-accent{color:var(--brand-500);}
.gw-hero-stats .gw-stat span{font-size:13px;color:var(--muted);}
.gw-hero-visual{position:relative;display:flex;justify-content:center;}
.gw-hero-visual .gw-frame{position:relative;width:min(100%,450px);max-width:450px;border-radius:28px;overflow:hidden;box-shadow:0 40px 70px -25px rgba(12,29,64,0.45);
  /* transform:rotate(2deg); */
}
.gw-hero-visual .gw-frame img{width:100%;height:100%;object-fit:cover;}
.gw-hero-visual .gw-blob{position:absolute;z-index:-1;width:340px;height:340px;border-radius:50%;background:radial-gradient(circle, rgba(255,198,41,0.35), transparent 70%);top:-40px;right:-20px;}
.gw-float-card{position:absolute;background:var(--white);border-radius:16px;box-shadow:var(--card-shadow);padding:14px 18px;display:flex;align-items:center;gap:12px;font-size:13.5px;font-weight:600;color:var(--navy-900);animation:floaty 4s ease-in-out infinite; z-index: -1;}
.gw-float-card.gw-card-1{top:14%;left:-30px;animation-delay:.2s;}
.gw-float-card.gw-card-2{bottom:10%;right:-30px;animation-delay:1s;}
.gw-float-card .gw-ic{width:34px;height:34px;border-radius:50%;background:rgba(255,198,41,0.2);color:var(--brand-600);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.gw-float-card .gw-ic svg{width:17px;height:17px;}
.gw-trust-strip{background:var(--navy-900);padding:18px 0;overflow:hidden;position:relative;overflow-x:clip;}
.gw-marquee{display:flex;width:100%;min-width:0;animation:scroll-left 26s linear infinite;will-change:transform;}
.gw-marquee span{color:rgba(255,255,255,0.75);font-weight:600;font-size:14px;letter-spacing:1px;text-transform:uppercase;padding:0 40px;white-space:nowrap;display:flex;align-items:center;gap:10px;}
.gw-marquee span::before{content:"✦";color:var(--brand-400);}
.gw-expert-section{padding:100px 0;background:var(--white);}
.gw-expert-container{max-width:1220px;margin:0 auto;padding:0 24px;}
.gw-expert-header{text-align:center;max-width:720px;margin:0 auto 60px;}
.gw-expert-kicker{color:var(--brand-600);font-weight:700;letter-spacing:1.5px;text-transform:uppercase;font-size:13px;margin:0 0 14px;}
.gw-expert-intro{color:var(--muted);font-size:15.5px;}
.gw-expert-header h1{font-size:clamp(28px,3.4vw,42px);font-weight:800;color:var(--navy-900);margin:0 0 12px;}
.gw-expert-row--top{display:grid;grid-template-columns:0.85fr 1.15fr;gap:60px;align-items:center;}
.gw-book-showcase{position:relative;border-radius:var(--radius-lg);overflow:hidden;}
.gw-open-book{position:relative;border-radius:var(--radius-lg);overflow:hidden;box-shadow:0 35px 60px -25px rgba(18,42,92,0.4);}
.gw-open-book img{width:100%;height:550px;object-fit:cover;}
.gw-expert-copy h2{font-size:clamp(24px,2.8vw,32px);font-weight:800;line-height:1.35;color:var(--navy-900);margin:0 0 20px;}
.gw-expert-copy h2 span{display:block;color:var(--brand-600);font-weight:700;}
.gw-expert-copy p{color:var(--muted);font-size:15px;margin:0 0 16px;}
.gw-expert-checklist{display:grid;grid-template-columns:1fr 1fr;gap:12px 20px;margin:24px 0 32px;}
.gw-expert-checklist li{display:flex;align-items:center;gap:10px;font-size:14.5px;font-weight:500;color:var(--navy-900);}
.gw-expert-checklist li svg{width:20px;height:20px;flex-shrink:0;color:var(--white);background:var(--brand-500);border-radius:50%;padding:4px;}
.gw-expert-actions{display:flex;gap:16px;flex-wrap:wrap;}
.gw-services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.gw-s-card{position:relative;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:32px;transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;overflow:hidden;}
.gw-s-card::after{content:"";position:absolute;left:0;top:0;height:4px;width:0;background:linear-gradient(90deg,var(--brand-400),var(--brand-600));transition:width .4s ease;}
.gw-s-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:transparent;}
.gw-s-card:hover::after{width:100%;}
.gw-s-icon{width:56px;height:56px;border-radius:14px;display:grid;place-items:center;background:linear-gradient(135deg,rgba(18,42,92,.08),rgba(18,42,92,.04));color:var(--navy-800);margin-bottom:22px;}
.gw-s-card:hover .gw-s-icon{background:linear-gradient(135deg,var(--brand-400),var(--brand-600));color:var(--navy-900);} 
.gw-s-icon svg{width:28px;height:28px;}
.gw-s-card h3{font-size:20px;font-weight:700;margin-bottom:10px;}
.gw-s-card p{color:var(--muted);font-size:14.5px;}
.gw-more{display:inline-flex;align-items:center;gap:8px;margin-top:18px;color:var(--navy-800);font-weight:600;font-size:14px;}
.gw-more svg{width:16px;height:16px;transition:transform .25s ease;}
.gw-s-card:hover .gw-more svg{transform:translateX(4px);color:var(--brand-600);}
.gw-process-header{text-align:center;max-width:780px;margin:0 auto 56px;}
.gw-process-header h2{font-size:clamp(28px,3.6vw,44px);font-weight:800;margin:18px 0 14px;}
.gw-process-header h2 span{color:var(--brand-600);}
.gw-process-header p{color:var(--muted);}
.gw-process-cta{margin-top:22px;}
.gw-process-timeline{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;position:relative;}
.gw-process-card{position:relative;background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:34px;transition:transform .35s ease, box-shadow .35s ease;overflow:hidden;}
.gw-process-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);}
.gw-process-card--tall{min-height:420px;}
.gw-process-card--short{min-height:360px;}
.gw-process-card .gw-step-badge{position:absolute;top:26px;right:30px;font-family:var(--font-display);font-weight:800;font-size:46px;color:rgba(18,42,92,.08);letter-spacing:-1px;}
.gw-step-icon{width:62px;height:62px;border-radius:16px;background:linear-gradient(135deg,var(--navy-800),var(--navy-700));display:grid;place-items:center;color:var(--brand-400);margin-bottom:22px;box-shadow:0 14px 30px -14px rgba(18,42,92,.7);}
.gw-step-icon svg{width:32px;height:32px;fill:none;stroke:currentColor;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;}
.gw-process-card h3{font-size:21px;font-weight:700;margin-bottom:12px;}
.gw-process-card p{color:var(--muted);font-size:14.5px;margin-bottom:18px;}
.gw-duration{display:inline-block;font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--brand-600);background:rgba(245,181,10,.12);padding:6px 12px;border-radius:999px;}
.gw-card-rule{display:block;height:1px;background:var(--line);margin:22px 0 16px;}
.gw-progress-meta{display:flex;justify-content:space-between;font-size:13px;color:var(--muted);margin-bottom:8px;}
.gw-progress-meta strong{color:var(--navy-800);}
.gw-progress-track{height:8px;background:#eef1f7;border-radius:999px;overflow:hidden;}
.gw-progress-track span{display:block;height:100%;width:0;border-radius:999px;background:linear-gradient(90deg,var(--brand-400),var(--brand-600));transition:width 1.4s cubic-bezier(.2,.8,.2,1);}
.gw-genres-wrap{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;max-width:880px;margin:0 auto;}
.gw-genre-pill{padding:12px 22px;border-radius:999px;border:1px solid var(--line);background:#fff;font-weight:500;font-size:14.5px;color:var(--navy-800);transition:all .25s ease;}
.gw-genre-pill:hover{background:var(--navy-800);color:#fff;border-color:var(--navy-800);transform:translateY(-3px);}
.gw-genre-pill.gw-hot{background:linear-gradient(135deg,var(--brand-400),var(--brand-600));color:var(--navy-900);border-color:transparent;font-weight:600;}
.gw-testimonial-section{padding:100px 0;background:var(--white);}
.gw-testi-track{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.gw-testi-card{background:var(--bg-soft);border-radius:var(--radius-md);padding:30px 26px;border:1px solid var(--line);transition:transform .35s ease, box-shadow .35s ease;}
.gw-testi-card:hover{transform:translateY(-6px);box-shadow:var(--card-shadow);} 
.gw-testi-stars{display:flex;gap:4px;margin-bottom:16px;color:var(--brand-500);} 
.gw-testi-stars svg{width:16px;height:16px;}
.gw-quote{font-size:14.5px;color:var(--navy-900);margin:0 0 22px;}
.gw-testi-person{display:flex;align-items:center;gap:12px;}
.gw-testi-avatar{width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,var(--navy-800),var(--navy-900));color:var(--brand-400);font-weight:700;font-size:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.gw-testi-person strong{display:block;font-size:14px;color:var(--navy-900);} 
.gw-testi-person span{font-size:12.5px;color:var(--muted);} 
.gw-faq-section{background:var(--clr-white);padding:clamp(2rem,4vw,3rem) 1rem clamp(1.75rem,4vw,2.5rem);}
.gw-faq-container{width:min(100%,1180px);margin:0 auto;display:grid;grid-template-columns:1fr;gap:clamp(2rem,5vw,4rem);align-items:center;}
.gw-faq-content{width:100%;}
.gw-faq-header{margin-bottom:clamp(1.5rem,3vw,2.1rem);}
.gw-faq-kicker{display:inline-block;position:relative;color:#001b3f;font-size:clamp(1rem,1.6vw,1.25rem);font-weight:800;line-height:1.2;}
.gw-faq-kicker::after{content:"";position:absolute;left:0;right:-4px;bottom:-9px;height:7px;background:var(--clr-gold);clip-path:polygon(0 40%, 7% 55%, 17% 38%, 28% 60%, 41% 42%, 55% 61%, 69% 40%, 82% 58%, 100% 45%, 100% 100%, 0 100%);z-index:-1;}
.gw-faq-header h1{margin-top:1.8rem;color:#25272b;font-family:var(--ff-body);font-size:clamp(2.2rem,5vw,4rem);font-weight:900;line-height:0.96;letter-spacing:-0.055em;}
.gw-faq-header h1 span{color:#f4c400;}
.gw-faq-list{width:100%;}
.gw-faq-item{border-bottom:1px solid var(--clr-gray-300);}
.gw-faq-item:first-child{border-top:0;}
.gw-faq-item summary{position:relative;display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:3.25rem;padding:0.85rem 2.25rem 0.85rem 0;color:#00122f;font-size:clamp(0.92rem,1.25vw,1.08rem);font-weight:700;line-height:1.35;cursor:pointer;transition:color 0.2s ease;}
.gw-faq-item summary::before,.gw-faq-item summary::after{content:"";position:absolute;right:0.55rem;top:50%;width:0.85rem;height:2px;background:#00122f;border-radius:999px;transition:transform 0.2s ease, background-color 0.2s ease;}
.gw-faq-item summary::after{transform:rotate(90deg);}
.gw-faq-item summary:hover,.gw-faq-item summary:focus-visible{color:var(--clr-primary-dark);outline:none;}
.gw-faq-item summary:hover::before,.gw-faq-item summary:hover::after,.gw-faq-item summary:focus-visible::before,.gw-faq-item summary:focus-visible::after{background:var(--clr-primary-dark);}
.gw-faq-item[open] summary::after{transform:rotate(0deg);}
.gw-faq-item p{max-width:92%;padding:0 2.25rem 1rem 0;color:var(--clr-gray-700);font-size:clamp(0.86rem,1vw,0.95rem);line-height:1.65;}
.gw-cta-band{background:radial-gradient(700px 300px at 90% 0%, rgba(245,181,10,.25), transparent 60%),linear-gradient(135deg,var(--navy-800),var(--navy-900));color:#fff;border-radius:var(--radius-lg);padding:64px;display:grid;grid-template-columns:1.2fr .8fr;gap:40px;align-items:center;position:relative;overflow:hidden;}
.gw-cta-band::before{content:"";position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);background-size:22px 22px;opacity:.5;mask-image:radial-gradient(circle at 80% 30%, #000, transparent 70%);}
.gw-cta-band h2{color:#fff;font-size:clamp(26px,3vw,38px);font-weight:800;position:relative;}
.gw-cta-band h2 span{color:var(--brand-400);}
.gw-cta-band p{color:rgba(255,255,255,.8);margin-top:12px;position:relative;}
.gw-cta-actions{display:flex;gap:14px;flex-wrap:wrap;justify-content:flex-end;position:relative;}
.gw-contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:36px;align-items:stretch;}
.gw-contact-info{position:relative;overflow:hidden;color:#fff;border-radius:var(--radius-lg);padding:42px;background:radial-gradient(500px 260px at 100% 0%, rgba(245,181,10,.28), transparent 60%),linear-gradient(160deg,var(--navy-800),var(--navy-900));box-shadow:var(--shadow-lg);}
.gw-contact-info::before{content:"";position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);background-size:22px 22px;opacity:.55;mask-image:radial-gradient(circle at 80% 10%, #000, transparent 70%);pointer-events:none;}
.gw-contact-info > *{position:relative;}
.gw-contact-info h3{color:#fff;font-size:26px;font-weight:800;}
.gw-contact-lead{color:rgba(255,255,255,.78);margin:12px 0 28px;font-size:15px;}
.gw-contact-cards{display:grid;gap:14px;}
.gw-contact-cards li{display:flex;gap:14px;align-items:flex-start;padding:16px;border-radius:14px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);transition:background .25s ease, transform .25s ease, border-color .25s ease;}
.gw-contact-cards li:hover{background:rgba(255,255,255,.1);transform:translateX(4px);border-color:rgba(245,181,10,.4);} 
.gw-contact-cards .ci-icon{flex:none;width:44px;height:44px;border-radius:12px;display:grid;place-items:center;background:linear-gradient(135deg,var(--brand-400),var(--brand-600));color:var(--navy-900);} 
.gw-contact-cards .ci-icon svg{width:20px;height:20px;} 
.gw-contact-cards .ci-text strong{display:block;color:#fff;font-weight:600;font-size:13px;letter-spacing:.04em;text-transform:uppercase;opacity:.75;margin-bottom:3px;} 
.gw-contact-cards .ci-text a,.gw-contact-cards .ci-text .v{display:block;color:#fff;font-weight:600;font-size:15.5px;transition:color .2s ease;} 
.gw-contact-cards .ci-text a:hover{color:var(--brand-400);} 
.gw-contact-cards .ci-text small{display:block;color:rgba(255,255,255,.6);font-size:12.5px;margin-top:2px;}
.gw-contact-social{display:flex;align-items:center;gap:14px;margin-top:30px;padding-top:24px;border-top:1px solid rgba(255,255,255,.12);} 
.gw-contact-social > span{font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.7);margin-right:4px;}
.gw-social-ic{width:40px;height:40px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(255,255,255,.2);color:#fff;transition:background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;} 
.gw-social-ic:hover{background:var(--brand-500);color:var(--navy-900);border-color:transparent;transform:translateY(-3px);} 
.gw-social-ic svg{width:17px;height:17px;}
.gw-contact-form{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:42px;box-shadow:var(--shadow-md);}
.gw-contact-form h3{font-size:22px;font-weight:800;margin-bottom:6px;}
.gw-form-sub{color:var(--muted);font-size:14px;margin-bottom:24px;}
.gw-form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.gw-contact-form label{display:flex;flex-direction:column;gap:8px;font-size:13px;font-weight:600;color:var(--navy-800);margin-bottom:16px;}
.gw-contact-form label .req{color:var(--brand-600); display: none;}
.gw-contact-form input,.gw-contact-form select,.gw-contact-form textarea{font-family:inherit;font-size:14.5px;color:var(--ink);padding:13px 14px;border:1.5px solid var(--line);border-radius:12px;background:#fbfcfe;transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;}
.gw-contact-form textarea{resize:vertical;min-height:128px;}
.gw-contact-form input::placeholder,.gw-contact-form textarea::placeholder{color:#9aa3b5;}
.gw-contact-form input:focus,.gw-contact-form select:focus,.gw-contact-form textarea:focus{outline:none;border-color:var(--brand-500);background:#fff;box-shadow:0 0 0 4px rgba(245,181,10,.15);} 
.gw-contact-form .invalid{border-color:#e5484d !important;box-shadow:0 0 0 4px rgba(229,72,77,.12) !important;}
.gw-form-note{font-size:12.5px;color:var(--muted);margin-top:14px;text-align:center;display:flex;align-items:center;justify-content:center;gap:6px;} 
.gw-form-note svg{width:14px;height:14px;color:var(--brand-600);}
.gw-form-success{margin-top:18px;padding:16px 18px;border-radius:14px;background:rgba(46,160,67,.1);border:1px solid rgba(46,160,67,.35);color:#1f7a3a;font-weight:600;display:none;gap:12px;align-items:flex-start;animation:popIn .4s ease;}
.gw-form-success.show{display:flex;}
.gw-form-success svg{width:22px;height:22px;flex:none;margin-top:1px;}
.gw-form-success strong{display:block;font-size:15px;margin-bottom:2px;}
.gw-form-success span{font-weight:400;font-size:13.5px;color:#2a6b3a;}
@media (max-width: 520px){
.gw-contact-cards .ci-text a{
  font-size: 12px;
}
.gw-contact-cards .ci-icon{
  height: 26px;
  width: 30px;
}
}
@media (max-width: 920px){
  .gw-nav-links{position:fixed;top:68px;left:0;right:0;background:var(--white);flex-direction:column;align-items:flex-start;padding:24px;gap:18px;border-bottom:1px solid var(--line);transform:translateY(-140%);transition:transform .4s ease;}
  .gw-nav-links.open{transform:translateY(0);} 
  .gw-nav-toggle{display:flex;}
  .gw-nav-cta{gap:.5rem;}
  .gw-nav-cta .gw-btn-secondary{display:none;}
  .gw-nav-cta .gw-btn-primary{padding-inline:1rem;}
  .gw-hero-grid{grid-template-columns:1fr;}
  .gw-hero-visual{order:-1;margin-bottom:20px;}
  .gw-hero-visual .gw-frame{max-width:min(100%,380px);} 
  .gw-float-card{display:none;} 
  .gw-hero-actions .gw-btn,.gw-cta-actions .gw-btn{width:100%;justify-content:center;}
  .gw-services-grid{grid-template-columns:repeat(2,1fr);} 
  .gw-expert-row--top{grid-template-columns:1fr;}
  .gw-expert-checklist{grid-template-columns:1fr;}
  .gw-process-timeline{grid-template-columns:1fr;}
  .gw-testi-track{grid-template-columns:1fr;}
  .gw-contact-grid{grid-template-columns:1fr;}
  .gw-cta-band{grid-template-columns:1fr;padding:clamp(1.5rem,5vw,2.5rem);} 
  .gw-cta-actions{justify-content:flex-start;}
}
@media (max-width: 560px){
  .gw-hero h1{font-size:clamp(2rem,8vw,2.8rem);} 
  .gw-lead{font-size:1rem;} 
  .gw-hero-actions{flex-direction:column;} 
  .gw-hero-stats .gw-stat{min-width:0;flex:1 1 42%;}
  .gw-hero-visual .gw-frame img{height:360px;}
  .gw-marquee{animation:none;flex-wrap:wrap;justify-content:center;row-gap:8px;}
  .gw-marquee span{padding:0 12px;font-size:12px;}
  .gw-services-grid{grid-template-columns:1fr;}
  .gw-cta-band h2{font-size:clamp(1.8rem,8vw,2.3rem);} 
  .gw-cta-actions{flex-direction:column;} 
  .gw-form-row{grid-template-columns:1fr;}
  .gw-contact-form,.gw-contact-info{padding:28px;margin-left: -5px;}
  .gw-contact-info h3{font-size:22px;}
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:72px;}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;font-size:18px;color:var(--navy-800);}
.brand-mark{
  width:36px;height:36px;border-radius:10px;
  background:linear-gradient(135deg,var(--brand-400),var(--brand-600));
  display:grid;place-items:center;color:var(--navy-900);font-weight:900;
  box-shadow:var(--shadow-sm);
}
.nav-links{display:flex;align-items:center;gap:30px;}
.nav-links a{font-size:14px;font-weight:500;color:#33405c;transition:color .2s ease;}
.nav-links a:hover{color:var(--brand-600);}
.nav-cta{display:flex;align-items:center;gap:14px;}
.nav-toggle{display:none;background:none;border:0;padding:8px;color:var(--navy-800);}
.nav-toggle svg{width:26px;height:26px;}

@media (max-width: 920px){
  .nav-links,.nav-cta .btn{display:none;}
  .nav-toggle{display:inline-flex;}
  .nav.open .nav-links{
    display:flex;flex-direction:column;align-items:flex-start;gap:18px;
    position:absolute;top:72px;left:0;right:0;
    background:#fff;border-bottom:1px solid var(--line);padding:22px 24px;
  }
  .nav.open .nav-cta{display:flex;position:absolute;top:calc(72px + 220px);left:24px;right:24px;}
  .nav.open .nav-cta .btn{display:inline-flex;width:100%;justify-content:center;}
} */


 /* =========================================================
     MARQUEE / TRUST STRIP
  ==========================================================*/
  .trust-strip{
    background: var(--navy-900);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    overflow-x: clip;
  }
  .marquee{
    display: flex;
    width: 100%;
    min-width: 0;
    animation: scroll-left 26s linear infinite;
    will-change: transform;
  }
  .marquee span{
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 40px;
    white-space: nowrap;
    display: flex; align-items: center; gap: 10px;
  }
  .marquee span::before{ content:"✦"; color: var(--brand-400); }
  @keyframes scroll-left{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
  }

  @media (max-width: 560px){
    .trust-strip{ overflow-x: clip; }
    .marquee{
      width: 100%;
      max-width: 100%;
      min-width: 0;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem 0.75rem;
      animation: none;
      transform: none;
    }
    .marquee span{ padding: 0 0.5rem; }
  }


  .hero-stats .stat{ min-width: 110px; }
  .hero-stats .stat strong{
    display:block; font-size: 28px; font-weight: 800; color: var(--navy-900);
  }
  .hero-stats .stat strong .accent{ color: var(--brand-500); }
  .hero-stats .stat span{ font-size: 13px; color: var(--muted); }

  .hero-visual{
    position: relative;
    display: flex;
    justify-content: center;
  }
  .hero-visual .frame{
    position: relative;
    width: min(100%, 380px);
    max-width: 380px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 70px -25px rgba(12,29,64,0.45);
    transform: rotate(2deg);
  }
  .hero-visual .frame img{ width:100%; height: 480px; object-fit: cover; }
  .hero-visual .blob{
    position:absolute; z-index: -1;
    width: 340px; height: 340px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,198,41,0.35), transparent 70%);
    top: -40px; right: -20px;
  }
  .float-card{
    position:absolute;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    padding: 14px 18px;
    display:flex; align-items:center; gap: 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy-900);
    animation: floaty 4s ease-in-out infinite;
  }
  .float-card.card-1{ top: 14%; left: -30px; animation-delay: .2s; }
  .float-card.card-2{ bottom: 10%; right: -30px; animation-delay: 1s; }
  .float-card .ic{
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,198,41,0.2); color: var(--brand-600);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .float-card .ic svg{ width: 17px; height: 17px; }
  @keyframes floaty{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-12px); }
  }

  @media (max-width: 920px){
    .hero-grid{ grid-template-columns: 1fr; }
    .hero-visual{ order: -1; margin-bottom: 20px; }
    .hero-visual .frame{ max-width: min(100%, 380px); }
    .float-card{ display:none; }
    .hero-actions .btn,
    .cta-actions .btn{
      width:100%;
      justify-content:center;
    }
  }

  @media (max-width: 560px){
    .hero h1{ font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero p.lead{ font-size: 1rem; }
    .hero-actions{ flex-direction:column; }
    .hero-stats .stat{ min-width: 0; flex: 1 1 42%; }
    .hero-visual .frame img{ height: 360px; }
    .marquee{
      animation:none;
      flex-wrap:wrap;
      justify-content:center;
      row-gap:8px;
    }
    .marquee span{ padding:0 12px; font-size:12px; }
  }



/* =========================================================
   SERVICES GRID
========================================================= */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.s-card{
  position:relative;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);padding:32px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow:hidden;
}
.s-card::after{
  content:"";position:absolute;left:0;top:0;height:4px;width:0;
  background:linear-gradient(90deg,var(--brand-400),var(--brand-600));
  transition:width .4s ease;
}
.s-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:transparent;}
.s-card:hover::after{width:100%;}
.s-icon{
  width:56px;height:56px;border-radius:14px;display:grid;place-items:center;
  background:linear-gradient(135deg,rgba(18,42,92,.08),rgba(18,42,92,.04));
  color:var(--navy-800);margin-bottom:22px;
}
.s-card:hover .s-icon{background:linear-gradient(135deg,var(--brand-400),var(--brand-600));color:var(--navy-900);}
.s-icon svg{width:28px;height:28px;}
.s-card h3{font-size:20px;font-weight:700;margin-bottom:10px;}
.s-card p{color:var(--muted);font-size:14.5px;}
.s-card .more{display:inline-flex;align-items:center;gap:8px;margin-top:18px;color:var(--navy-800);font-weight:600;font-size:14px;}
.s-card .more svg{width:16px;height:16px;transition:transform .25s ease;}
.s-card:hover .more svg{transform:translateX(4px);color:var(--brand-600);}

@media (max-width: 980px){.services-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width: 620px){.services-grid{grid-template-columns:1fr;}}

/* =========================================================
   PROCESS TIMELINE
========================================================= */
.process-header{text-align:center;max-width:780px;margin:0 auto 56px;}
.process-header h2{font-size:clamp(28px,3.6vw,44px);font-weight:800;margin:18px 0 14px;}
.process-header h2 span{color:var(--brand-600);}
.process-header p{color:var(--muted);}
.process-cta{margin-top:22px;}

.process-timeline{
  display:grid;grid-template-columns:repeat(2,1fr);gap:28px;
  position:relative;
}
.process-card{
  position:relative;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius-lg);padding:34px;
  transition:transform .35s ease, box-shadow .35s ease;
  overflow:hidden;
}
.process-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);}
.process-card--tall{min-height:420px;}
.process-card--short{min-height:360px;}
.process-card .step-badge{
  position:absolute;top:26px;right:30px;
  font-family:var(--font-display);font-weight:800;font-size:46px;
  color:rgba(18, 41, 92, 0.274);letter-spacing:-1px;
}
.step-icon{
  width:62px;height:62px;border-radius:16px;
  background:linear-gradient(135deg,var(--navy-800),var(--navy-700));
  display:grid;place-items:center;color:var(--brand-400);margin-bottom:22px;
  box-shadow:0 14px 30px -14px rgba(18,42,92,.7);
}
.step-icon svg{width:32px;height:32px;fill:none;stroke:currentColor;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;}
.process-card h3{font-size:21px;font-weight:700;margin-bottom:12px;}
.process-card p{color:var(--muted);font-size:14.5px;margin-bottom:18px;}
.duration{
  display:inline-block;font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--brand-600);background:rgba(245,181,10,.12);padding:6px 12px;border-radius:999px;
}
.card-rule{display:block;height:1px;background:var(--line);margin:22px 0 16px;}
.progress-meta{display:flex;justify-content:space-between;font-size:13px;color:var(--muted);margin-bottom:8px;}
.progress-meta strong{color:var(--navy-800);}
.progress-track{height:8px;background:#eef1f7;border-radius:999px;overflow:hidden;}
.progress-track span{display:block;height:100%;width:0;border-radius:999px;background:linear-gradient(90deg,var(--brand-400),var(--brand-600));transition:width 1.4s cubic-bezier(.2,.8,.2,1);}

@media (min-width: 960px){
  .process-timeline li:nth-child(even){transform:translateY(46px);}
  .process-timeline li:nth-child(even):hover{transform:translateY(40px);}
}
@media (max-width: 820px){.process-timeline{grid-template-columns:1fr;}}

/* =========================================================
   GENRES
========================================================= */
.genres-wrap{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;max-width:880px;margin:0 auto;}
.genre-pill{
  padding:12px 22px;border-radius:999px;border:1px solid var(--line);
  background:#fff;font-weight:500;font-size:14.5px;color:var(--navy-800);
  transition:all .25s ease;
}
.genre-pill:hover{background:var(--navy-800);color:#fff;border-color:var(--navy-800);transform:translateY(-3px);}
.genre-pill.hot{background:linear-gradient(135deg,var(--brand-400),var(--brand-600));color:var(--navy-900);border-color:transparent;font-weight:600;}

/* =========================================================
   PRICING
========================================================= */
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;align-items:stretch;}
.price-card{
  position:relative;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius-lg);padding:38px 32px;display:flex;flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease;
}
.price-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);}
.price-card.featured{
  background:linear-gradient(170deg,var(--navy-800),var(--navy-900));color:#fff;border-color:transparent;
  box-shadow:var(--shadow-lg);transform:translateY(-10px);
}
.price-card.featured:hover{transform:translateY(-14px);}
.price-card .tag{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:linear-gradient(135deg,var(--brand-400),var(--brand-600));color:var(--navy-900);
  font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  padding:7px 16px;border-radius:999px;box-shadow:var(--shadow-sm);
}
.price-card h3{font-size:20px;font-weight:700;}
.price-card.featured h3{color:#fff;}
.price-card .price{display:flex;align-items:baseline;gap:6px;margin:18px 0 6px;}
.price-card .price strong{font-family:var(--font-display);font-size:46px;font-weight:800;color:var(--navy-800);}
.price-card.featured .price strong{color:#fff;}
.price-card .price span{color:var(--muted);font-size:14px;}
.price-card.featured .price span{color:rgba(255,255,255,.7);}
.price-card .sub{color:var(--muted);font-size:14px;margin-bottom:22px;}
.price-card.featured .sub{color:rgba(255,255,255,.7);}
.price-features{display:grid;gap:12px;margin-bottom:28px;flex:1;}
.price-features li{display:flex;gap:10px;align-items:flex-start;font-size:14.5px;}
.price-features li svg{flex:none;width:18px;height:18px;color:var(--brand-600);margin-top:2px;}
.price-card.featured .price-features li{color:rgba(255,255,255,.9);}
.price-card.featured .price-features li svg{color:var(--brand-400);}
.price-card .btn{justify-content:center;width:100%;}

@media (max-width: 980px){.pricing-grid{grid-template-columns:1fr;max-width:460px;margin:0 auto;} .price-card.featured{transform:none;}}


/* =========================================================
     TESTIMONIALS
  ==========================================================*/
  .testimonial-section{ padding: 100px 0; background: var(--white); }
  .testi-track{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .testi-card{
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    border: 1px solid var(--line);
    transition: transform .35s ease, box-shadow .35s ease;
  }
  .testi-card:hover{ transform: translateY(-6px); box-shadow: var(--card-shadow); }
  .testi-stars{ display:flex; gap: 4px; margin-bottom: 16px; color: var(--brand-500); }
  .testi-stars svg{ width: 16px; height: 16px; }
  .testi-card p.quote{ font-size: 14.5px; color: var(--navy-900); margin: 0 0 22px; }
  .testi-person{ display:flex; align-items:center; gap: 12px; }
  .testi-avatar{
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
    color: var(--brand-400); font-weight: 700; font-size: 14px;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .testi-person strong{ display:block; font-size: 14px; color: var(--navy-900); }
  .testi-person span{ font-size: 12.5px; color: var(--muted); }

  @media (max-width: 980px){ .testi-track{ grid-template-columns: 1fr; } }

/* =========================================================
   FAQ
========================================================= */
.faq{max-width:820px;margin:0 auto;display:grid;gap:14px;}
.faq-item{background:#fff;border:1px solid var(--line);border-radius:14px;overflow:hidden;transition:border-color .25s ease, box-shadow .25s ease;}
.faq-item.open{border-color:var(--brand-500);box-shadow:var(--shadow-sm);}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:20px 24px;background:none;border:0;text-align:left;
  font-weight:600;font-size:16px;color:var(--navy-800);
}
.faq-q .chev{flex:none;width:28px;height:28px;border-radius:50%;background:var(--bg-soft);display:grid;place-items:center;transition:transform .3s ease, background .3s ease, color .3s ease;}
.faq-item.open .chev{transform:rotate(45deg);background:var(--brand-500);color:var(--navy-900);}
.faq-q .chev svg{width:16px;height:16px;}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s ease;}
.faq-a p{padding:0 24px 22px;color:var(--muted);font-size:15px;}

/* =========================================================
   FINAL CTA
========================================================= */
.cta-band{
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(245,181,10,.25), transparent 60%),
    linear-gradient(135deg,var(--navy-800),var(--navy-900));
  color:#fff;border-radius:var(--radius-lg);
  padding:64px;display:grid;grid-template-columns:1.2fr .8fr;gap:40px;align-items:center;
  position:relative;overflow:hidden;
}
.cta-band::before{
  content:"";position:absolute;inset:0;
  background-image:radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:22px 22px;opacity:.5;mask-image:radial-gradient(circle at 80% 30%, #000, transparent 70%);
}
.cta-band h2{color:#fff;font-size:clamp(26px,3vw,38px);font-weight:800;position:relative;}
.cta-band h2 span{color:var(--brand-400);}
.cta-band p{color:rgba(255,255,255,.8);margin-top:12px;position:relative;}
.cta-actions{display:flex;gap:14px;flex-wrap:wrap;justify-content:flex-end;position:relative;}
@media (max-width:820px){
  .cta-band{
    grid-template-columns:1fr;
    padding:clamp(1.5rem, 5vw, 2.5rem);
  }
  .cta-actions{justify-content:flex-start;}
}

@media (max-width:560px){
  .cta-band h2{ font-size: clamp(1.8rem, 8vw, 2.3rem); }
  .cta-actions{ flex-direction:column; }
}

/* ==========================================================================
   Publishing FAQ Section
   HTML + CSS only. Uses details/summary for the accordion behavior.
   ========================================================================== */

.faq-section {
  background: var(--clr-white);
  padding: clamp(2rem, 4vw, 3rem) 1rem clamp(1.75rem, 4vw, 2.5rem);
}

.faq-container {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* @media (min-width: 980px) {
  .faq-container {
    grid-template-columns: 0.95fr 1fr;
  }
} */

.faq-content {
  width: 100%;
}

.faq-header {
  margin-bottom: clamp(1.5rem, 3vw, 2.1rem);
}

.faq-kicker {
  display: inline-block;
  position: relative;
  color: #001b3f;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 800;
  line-height: 1.2;
}

.faq-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  right: -4px;
  bottom: -9px;
  height: 7px;
  background: var(--clr-gold);
  clip-path: polygon(0 40%, 7% 55%, 17% 38%, 28% 60%, 41% 42%, 55% 61%, 69% 40%, 82% 58%, 100% 45%, 100% 100%, 0 100%);
  z-index: -1;
}

.faq-header h1 {
  margin-top: 1.8rem;
  color: #25272b;
  font-family: var(--ff-body);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.faq-header h1 span {
  color: #f4c400;
}

.faq-list {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--clr-gray-300);
}

.faq-item:first-child {
  border-top: 0;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
  padding: 0.85rem 2.25rem 0.85rem 0;
  color: #00122f;
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0.55rem;
  top: 50%;
  width: 0.85rem;
  height: 2px;
  background: #00122f;
  border-radius: 999px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--clr-primary-dark);
  outline: none;
}

.faq-item summary:hover::before,
.faq-item summary:hover::after,
.faq-item summary:focus-visible::before,
.faq-item summary:focus-visible::after {
  background: var(--clr-primary-dark);
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-item p {
  max-width: 92%;
  padding: 0 2.25rem 1rem 0;
  color: var(--clr-gray-700);
  font-size: clamp(0.86rem, 1vw, 0.95rem);
  line-height: 1.65;
}

/* =========================================================
   CONTACT
========================================================= */
.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:36px;align-items:stretch;}

.contact-info{
  position:relative;overflow:hidden;color:#fff;border-radius:var(--radius-lg);
  padding:42px;
  background:
    radial-gradient(500px 260px at 100% 0%, rgba(245,181,10,.28), transparent 60%),
    linear-gradient(160deg,var(--navy-800),var(--navy-900));
  box-shadow:var(--shadow-lg);
}
.contact-info::before{
  content:"";position:absolute;inset:0;
  background-image:radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:22px 22px;opacity:.55;
  mask-image:radial-gradient(circle at 80% 10%, #000, transparent 70%);
  pointer-events:none;
}
.contact-info > *{position:relative;}
.contact-info h3{color:#fff;font-size:26px;font-weight:800;}
.contact-lead{color:rgba(255,255,255,.78);margin:12px 0 28px;font-size:15px;}
.contact-cards{display:grid;gap:14px;}
.contact-cards li{
  display:flex;gap:14px;align-items:flex-start;
  padding:16px;border-radius:14px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);
  transition:background .25s ease, transform .25s ease, border-color .25s ease;
}
.contact-cards li:hover{background:rgba(255,255,255,.1);transform:translateX(4px);border-color:rgba(245,181,10,.4);}
.ci-icon{
  flex:none;width:44px;height:44px;border-radius:12px;display:grid;place-items:center;
  background:linear-gradient(135deg,var(--brand-400),var(--brand-600));color:var(--navy-900);
}
.ci-icon svg{width:20px;height:20px;}
.ci-text strong{display:block;color:#fff;font-weight:600;font-size:13px;letter-spacing:.04em;text-transform:uppercase;opacity:.75;margin-bottom:3px;}
.ci-text a, .ci-text .v{display:block;color:#fff;font-weight:600;font-size:15.5px;transition:color .2s ease;}
.ci-text a:hover{color:var(--brand-400);}
.ci-text small{display:block;color:rgba(255,255,255,.6);font-size:12.5px;margin-top:2px;}

.contact-social{display:flex;align-items:center;gap:14px;margin-top:30px;padding-top:24px;border-top:1px solid rgba(255,255,255,.12);}
.contact-social > span{font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.7);margin-right:4px;}
.social-ic{
  width:40px;height:40px;border-radius:50%;display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.2);color:#fff;
  transition:background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}
.social-ic:hover{background:var(--brand-500);color:var(--navy-900);border-color:transparent;transform:translateY(-3px);}
.social-ic svg{width:17px;height:17px;}

.contact-form{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:42px;box-shadow:var(--shadow-md);
}
.contact-form h3{font-size:22px;font-weight:800;margin-bottom:6px;}
.contact-form .form-sub{color:var(--muted);font-size:14px;margin-bottom:24px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.contact-form label{display:flex;flex-direction:column;gap:8px;font-size:13px;font-weight:600;color:var(--navy-800);margin-bottom:16px;}
.contact-form label .req{color:var(--brand-600);}
.contact-form input,
.contact-form select,
.contact-form textarea{
  font-family:inherit;font-size:14.5px;color:var(--ink);
  padding:13px 14px;border:1.5px solid var(--line);border-radius:12px;background:#fbfcfe;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form textarea{resize:vertical;min-height:128px;}
.contact-form input::placeholder, .contact-form textarea::placeholder{color:#9aa3b5;}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{outline:none;border-color:var(--brand-500);background:#fff;box-shadow:0 0 0 4px rgba(245,181,10,.15);}
.contact-form .invalid{border-color:#e5484d !important;box-shadow:0 0 0 4px rgba(229,72,77,.12) !important;}
.err-msg{color:#c0392b;font-size:12px;font-weight:500;margin-top:-8px;margin-bottom:12px;display:none;}
.err-msg.show{display:block;}
.contact-form .btn{width:100%;justify-content:center;margin-top:6px;}
.form-note{font-size:12.5px;color:var(--muted);margin-top:14px;text-align:center;display:flex;align-items:center;justify-content:center;gap:6px;}
.form-note svg{width:14px;height:14px;color:var(--brand-600);}
.form-success{
  margin-top:18px;padding:16px 18px;border-radius:14px;
  background:rgba(46,160,67,.1);border:1px solid rgba(46,160,67,.35);color:#1f7a3a;
  font-weight:600;display:none;gap:12px;align-items:flex-start;
  animation:popIn .4s ease;
}
.form-success.show{display:flex;}
.form-success svg{width:22px;height:22px;flex:none;margin-top:1px;}
.form-success strong{display:block;font-size:15px;margin-bottom:2px;}
.form-success span{font-weight:400;font-size:13.5px;color:#2a6b3a;}
@keyframes popIn{from{opacity:0;transform:translateY(8px) scale(.98);}to{opacity:1;transform:none;}}

@media (max-width: 900px){ .contact-grid{grid-template-columns:1fr;} }
@media (max-width: 520px){
  .form-row{grid-template-columns:1fr;}
  .contact-form,.contact-info{padding:28px;}
  .contact-info h3{font-size:22px;}
}

/* =========================================================
     EXPERT / ABOUT SECTION
  ==========================================================*/
  .expert-section{ padding: 100px 0; background: var(--white); }
  .expert-container{ max-width: 1220px; margin: 0 auto; padding: 0 24px; }
  .expert-header{ text-align:center; max-width: 720px; margin: 0 auto 60px; }
  .expert-header h1{
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    color: var(--navy-900);
    margin: 0 0 12px;
  }
  .expert-kicker{
    color: var(--brand-600);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 13px;
    margin: 0 0 14px;
  }
  .expert-intro{ color: var(--muted); font-size: 15.5px; }

  .expert-row--top{
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
  }
  .book-showcase{
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .open-book{
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 35px 60px -25px rgba(18,42,92,0.4);
  }


  .expert-copy h2{
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 800;
    line-height: 1.35;
    color: var(--navy-900);
    margin: 0 0 20px;
  }
  .expert-copy h2 span{ display:block; color: var(--brand-600); font-weight: 700; }
  .expert-copy p{ color: var(--muted); font-size: 15px; margin: 0 0 16px; }
  .expert-checklist{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin: 24px 0 32px;
  }
  .expert-checklist li{
    display:flex; align-items:center; gap: 10px;
    font-size: 14.5px; font-weight: 500; color: var(--navy-900);
  }
  .expert-checklist li svg{
    width: 20px; height: 20px; flex-shrink:0; color: var(--white);
    background: var(--brand-500); border-radius: 50%; padding: 4px;
  }
  .expert-actions{ display:flex; gap: 16px; flex-wrap: wrap; }

  @media (max-width: 920px){
    .expert-row--top{ grid-template-columns: 1fr; }
    .expert-checklist{ grid-template-columns: 1fr; }
  }

  /* ============================================================
   ISBN SECTION — Premium Luxury CSS
   Uses the same brand palette as summit.css
   ============================================================ */

/* ============================================================
   ISBN SECTION BASE
   ============================================================ */
.isbn-section {
  position: relative;
  padding: clamp(3rem, 5vw, 5rem) clamp(1rem, 2vw, 2rem);
  /* background: linear-gradient(180deg, #fdfcfb 0%, #f5f2ec 100%); */
  /* background: linear-gradient(to bottom, rgb(253 246 219), rgb(255 255 255 / 94%));; */
  overflow: hidden;
}

.isbn-container {
  width: min(100% - 32px, 1140px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 5rem);
  max-width: 1440px;
}

/* ============================================================
   ISBN BLOCKS
   ============================================================ */
.isbn-block {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  position: relative;
}

.isbn-block--left {
  flex-direction: row;
}

.isbn-block--right {
  flex-direction: row-reverse;
}

.isbn-block--center {
  flex-direction: column;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

/* ============================================================
   ISBN CONTENT
   ============================================================ */
.isbn-content {
  flex: 1;
  max-width: 600px;
}

.isbn-content--centered {
  max-width: 800px;
  margin-inline: auto;
}

.isbn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem 0.5rem 0.85rem;
  /* background: linear-gradient(135deg, rgba(13,27,42,0.05), rgba(211,150,48,0.05)); */
  background: rgba(245, 181, 10, .12);
  /* border: 1px solid rgba(211,150,48,0.2); */
  border: 1px solid rgba(245, 181, 10, .35);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  /* color: var(--text-main, #1a2332); */
  color: #e0a200;
  box-shadow: 0 2px 8px rgba(211,150,48,0.08);
  backdrop-filter: blur(8px);
  margin-bottom: 1.25rem;
}

.isbn-title {
  /* font-family: 'Playfair Display', Georgia, serif; */
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-card, #14213d);
  margin-bottom: 1.5rem;
}

.isbn-text {
  /* font-family: 'Inter', system-ui, sans-serif; */
  font-size: clamp(0.9375rem, 1vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-body, #3d4a5e);
  margin-bottom: 1rem;
}

.isbn-text:last-of-type {
  margin-bottom: 1.75rem;
}

.isbn-highlight {
  background: linear-gradient(135deg, rgba(211,150,48,0.08) 0%, rgba(211,150,48,0.12) 100%);
  border-left: 3px solid var(--gold, #d39630);
  padding: 1rem 1.25rem;
  border-radius: 0 12px 12px 0;
  font-weight: 500;
  color: var(--navy-card, #14213d);
}

/* ============================================================
   ISBN CTA BUTTON
   ============================================================ */
.isbn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  /* background: linear-gradient(135deg, var(--gold, #d39630) 0%, var(--gold-deep, #a87d2b) 100%); */
  background: linear-gradient(135deg, var(--brand-400), var(--brand-600));
  /* color: #fff; */
  color: 222222;
  padding: 1rem 2.25rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(211,150,48,0.35), 0 4px 12px rgba(211,150,48,0.2);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.isbn-cta:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 18px 45px rgba(211,150,48,0.45), 0 8px 20px rgba(211,150,48,0.25);
  filter: brightness(1.08);
}

.isbn-cta i {
  font-size: 0.875rem;
  transition: transform 0.35s ease;
}

.isbn-cta:hover i {
  transform: translateX(4px);
}

/* ============================================================
   ISBN VISUAL
   ============================================================ */
.isbn-visual {
  flex: 0 0 clamp(300px, 35vw, 450px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.isbn-visual-inner {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.isbn-icon-circle {
  width: clamp(120px, 20vw, 180px);
  height: clamp(120px, 20vw, 180px);
  border-radius: 50%;
  /* background: linear-gradient(135deg, var(--gold, #d39630) 0%, var(--gold-deep, #a87d2b) 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 20px 60px rgba(211,150,48,0.3), 0 8px 24px rgba(211,150,48,0.2); */
  position: relative;
  z-index: 2;
}

.isbn-icon-circle i {
  font-size: clamp(3rem, 5vw, 5rem);
  color: #fff;
}

.isbn-floating-element {
  position: absolute;
  border-radius: 50%;
  animation: isbnFloat 6s ease-in-out infinite;
}

.isbn-floating-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  right: 10%;
  /* background: linear-gradient(135deg, rgba(211,150,48,0.2) 0%, rgba(211,150,48,0.35) 100%); */
  border: 2px solid rgba(211,150,48,0.5);
  animation-delay: 0s;
}

.isbn-floating-2 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  left: 5%;
  /* background: linear-gradient(135deg, rgba(13,27,42,0.15) 0%, rgba(13,27,42,0.25) 100%); */
  border: 2px solid rgba(13,27,42,0.4);
  animation-delay: 2s;
}

.isbn-floating-3 {
  width: 30px;
  height: 30px;
  top: 50%;
  left: 0;
  /* background: linear-gradient(135deg, rgba(211,150,48,0.15) 0%, rgba(211,150,48,0.25) 100%); */
  border: 2px solid rgba(211,150,48,0.4);
  animation-delay: 4s;
}

@keyframes isbnFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(120deg);
  }
  66% {
    transform: translateY(8px) rotate(240deg);
  }
}

/* ============================================================
   EDITION GRID
   ============================================================ */
.isbn-edition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  width: 100%;
}

.isbn-edition-card {
  background: #fff;
  border: 1px solid rgba(211,150,48,0.12);
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 8px 25px rgba(20,33,61,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  text-align: center;
}

.isbn-edition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(36, 196, 57, 0.267);
  /* border-color: rgba(211,150,48,0.25); */
  border-color: 0 20px 45px 22px rgba(18, 42, 92, .35);;
}

.isbn-edition-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  /* background: linear-gradient(135deg, var(--gold, #d39630), var(--gold-deep, #a87d2b));0 */
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 4px 12px rgba(211,150,48,0.2); */
}

.isbn-edition-icon i {
  font-size: 1.5rem;
  color: #222222;
}

.isbn-edition-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-card, #14213d);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.isbn-edition-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body, #3d4a5e);
  margin: 0;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large Desktop - 1920px+ */
@media (min-width: 1920px) {
  .isbn-section {
    padding: 6rem 2rem;
  }
  .isbn-container {
    max-width: 1600px;
  }
  .isbn-title {
    font-size: 3.5rem;
  }
  .isbn-edition-grid {
    gap: 1.5rem;
  }
}

/* Desktop / 125% Windows - 1536px to 1919px */
@media (min-width: 1536px) and (max-width: 1919px) {
  .isbn-section {
    padding: 4rem 2rem;
  }
  .isbn-container {
    max-width: 1400px;
  }
  .isbn-title {
    font-size: 2.75rem;
  }
  .isbn-visual {
    flex-basis: 400px;
  }
}

/* Laptop - 1280px to 1535px */
@media (min-width: 1280px) and (max-width: 1535px) {
  .isbn-section {
    padding: 3.5rem 1.5rem;
  }
  .isbn-container {
    max-width: 1200px;
  }
  .isbn-title {
    font-size: 2.5rem;
  }
  .isbn-visual {
    flex-basis: 350px;
  }
  .isbn-edition-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Small Laptop / Large Tablet - 1024px to 1279px */
@media (min-width: 1024px) and (max-width: 1279px) {
  .isbn-section {
    padding: 3rem 1.5rem;
  }
  .isbn-title {
    font-size: 2.25rem;
  }
  .isbn-visual {
    flex-basis: 300px;
  }
  .isbn-edition-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

/* Tablet - 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .isbn-section {
    padding: 2.5rem 1.25rem;
  }
  .isbn-block {
    flex-direction: column !important;
    text-align: center;
    gap: 2rem;
  }
  .isbn-content {
    max-width: 100%;
  }
  .isbn-content--centered {
    max-width: 100%;
  }
  .isbn-visual {
    flex-basis: 250px;
  }
  .isbn-title {
    font-size: 2rem;
  }
  .isbn-edition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .isbn-eyebrow {
    justify-content: center;
  }
  .isbn-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile - 576px to 767px */
@media (min-width: 576px) and (max-width: 767px) {
  .isbn-section {
    padding: 2rem 1rem;
  }
  .isbn-block {
    flex-direction: column !important;
    text-align: center;
    gap: 1.75rem;
  }
  .isbn-content {
    max-width: 100%;
  }
  .isbn-visual {
    flex-basis: 200px;
  }
  .isbn-title {
    font-size: 1.75rem;
  }
  .isbn-text {
    font-size: 0.9375rem;
  }
  .isbn-edition-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .isbn-edition-card {
    padding: 1.25rem 1rem;
  }
  .isbn-cta {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
  }
}

/* Small Mobile - 360px to 575px */
@media (min-width: 360px) and (max-width: 575px) {
  .isbn-section {
    padding: 1.75rem 0.875rem;
  }
  .isbn-container {
    width: calc(100% - 16px);
  }
  .isbn-block {
    flex-direction: column !important;
    text-align: center;
    gap: 1.5rem;
  }
  .isbn-visual {
    flex-basis: 180px;
  }
  .isbn-icon-circle {
    width: 100px;
    height: 100px;
  }
  .isbn-icon-circle i {
    font-size: 2.5rem;
  }
  .isbn-title {
    font-size: 1.5rem;
  }
  .isbn-text {
    font-size: 0.875rem;
  }
  .isbn-highlight {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
  .isbn-edition-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    margin-top: 1.5rem;
  }
  .isbn-edition-card {
    padding: 1rem 0.75rem;
  }
  .isbn-edition-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.75rem;
  }
  .isbn-edition-icon i {
    font-size: 1.25rem;
  }
  .isbn-edition-title {
    font-size: 0.875rem;
  }
  .isbn-edition-desc {
    font-size: 0.75rem;
  }
  .isbn-cta {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.875rem;
  }
  .isbn-floating-element {
    display: none;
  }
}

/* Extra Small Mobile - Below 360px */
@media (max-width: 359px) {
  .isbn-section {
    padding: 1.5rem 0.75rem;
  }
  .isbn-container {
    width: 100%;
    padding: 0 0.5rem;
  }
  .isbn-block {
    gap: 1.25rem;
  }
  .isbn-visual {
    flex-basis: 150px;
  }
  .isbn-icon-circle {
    width: 80px;
    height: 80px;
  }
  .isbn-icon-circle i {
    font-size: 2rem;
  }
  .isbn-title {
    font-size: 1.25rem;
  }
  .isbn-text {
    font-size: 0.8125rem;
  }
  .isbn-edition-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .isbn-edition-card {
    padding: 0.75rem 0.5rem;
  }
  .isbn-edition-icon {
    width: 38px;
    height: 38px;
  }
  .isbn-edition-icon i {
    font-size: 1rem;
  }
  .isbn-edition-title {
    font-size: 0.75rem;
  }
  .isbn-edition-desc {
    font-size: 0.6875rem;
  }
  .isbn-cta {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
  }
  .isbn-eyebrow {
    font-size: 0.625rem;
    padding: 0.35rem 0.75rem;
  }
}

/* ============================================================
   GLOBAL OVERFLOW PREVENTION
   ============================================================ */
@media (max-width: 100vw) {
  .isbn-section,
  .isbn-container,
  .isbn-block,
  .isbn-content,
  .isbn-visual {
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* Prevent horizontal scroll */
.isbn-section * {
  box-sizing: border-box;
}

.isbn-section img,
.isbn-section video,
.isbn-section iframe {
  max-width: 100%;
  height: auto;
}

/* .gw-section-head h2{font-size:clamp(28px,3.6vw,44px);font-weight:800;margin:18px 0 14px;} */
.isbn-content h2{font-size:clamp(28px,3.6vw,44px);font-weight:800;margin:18px 0 14px;}
/* .gw-section-head h2 span{color:var(--brand-600);} */
.isbn-content h2 span{color:var(--brand-600);}