/* ============================================================
   THE EXPERT ASSIGNMENT — Design System
   Signature: logo-blue gradient "ascent" motif, clean entrance
   animation and hover motion (no looping background effects)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root{
  --animate-duration: 1.6s;
  --animate-delay: 0.3s;
  --ink:#101B33;
  --ink-2:#16264A;
  --ink-light:#3D5A99;
  --paper:#F2F5FC;
  --paper-alt:#E8EEFB;
  --paper-card:#FFFFFF;
  --blue:#2C6DF0;
  --blue-2:#1A3FC4;
  --blue-light:#6FA4FF;
  --crimson:#2C6DF0;       /* legacy token name, now the brand blue accent */
  --crimson-dark:#1A3FC4;  /* legacy token name, now the deep blue shadow */
  --gold:#D8A426;
  --charcoal:#1B2434;
  --line:#DCE4F5;
  --line-dark:#9FB1D9;
  --white:#FFFFFF;
  --grad-brand: linear-gradient(120deg, var(--ink) 0%, var(--blue-2) 55%, var(--blue) 100%);
  --grad-brand-soft: linear-gradient(120deg, rgba(44,109,240,0.14), rgba(216,164,38,0.10));

  --font-display:'Poppins', sans-serif;
  --font-body:'Poppins', sans-serif;
  --font-mono:'Poppins', sans-serif;

  --radius:10px;
  --shadow-card: 0 2px 0 var(--line), 0 14px 30px -18px rgba(16,27,51,0.28);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--charcoal);
  background-color:var(--paper);
  background-image:radial-gradient(rgba(44,109,240,0.07) 1.5px, transparent 1.5px);
  background-size:24px 24px;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; font-size:15px; }
.container{ max-width:1180px; margin:0 auto; padding:0 24px; }

h1,h2,h3,h4{ font-family:var(--font-display); color:var(--ink); margin:0; line-height:1.1; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

:focus-visible{ outline:3px solid var(--gold); outline-offset:2px; }

/* ---------- ruled paper texture ---------- */
.ruled{
  background-image: repeating-linear-gradient(
    to bottom,
    transparent, transparent 27px,
    var(--line) 27px, var(--line) 28px
  );
}
.ruled-alt{ background-color:var(--paper-alt); }

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--crimson);
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.eyebrow::before{
  content:'';
  width:18px; height:1px;
  background:var(--crimson);
}

/* ============ HEADER ============ */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 24px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:56px; width:auto; }
.brand-name{ font-family:var(--font-display); font-weight:600; font-size:19px; color:var(--ink); }
.main-nav{ display:flex; gap:28px; }
.main-nav a{
  font-size:14.5px; font-weight:500; color:var(--charcoal);
  position:relative; padding:4px 0;
}
.main-nav a:hover{ color:var(--crimson); }
.header-actions{ display:flex; align-items:center; gap:14px; }
.header-phone{ font-family:var(--font-mono); font-size:13.5px; color:var(--ink); display:flex; gap:6px; align-items:center; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-weight:600; font-size:14.5px;
  padding:12px 22px;
  border-radius:6px;
  border:1.5px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--grad-brand); color:var(--white); box-shadow:0 3px 0 var(--crimson-dark);
  position:relative; overflow:hidden;
}
.btn-primary::after{
  content:'';
  position:absolute; top:0; left:-60%; width:40%; height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform:skewX(-20deg);
  transition:left .6s ease;
}
.btn-primary:hover::after{ left:130%; }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 5px 0 var(--crimson-dark); }
.btn-primary:active{ transform:translateY(1px); box-shadow:0 2px 0 var(--crimson-dark); }
.btn-ghost{ background:transparent; border-color:var(--ink); color:var(--ink); }
.btn-ghost:hover{ background:var(--ink); color:var(--white); }
.btn-dark{ background:var(--ink); color:var(--white); box-shadow:0 3px 0 #0f1930; }
.btn-dark:hover{ transform:translateY(-2px); }
.btn-sm{ padding:9px 16px; font-size:13.5px; }
.btn-block{ width:100%; }

/* ============ HERO ============ */
.hero{
  padding:64px 0 40px;
  position:relative;
  overflow:hidden;
}
.hero::before,
.hero::after{
  content:'';
  position:absolute;
  border-radius:50%;
  filter:blur(70px);
  z-index:0;
  opacity:.4;
}
.hero::before{
  width:420px; height:420px;
  background:radial-gradient(circle at 30% 30%, var(--blue-light), transparent 70%);
  top:-180px; right:-140px;
}
.hero::after{
  width:340px; height:340px;
  background:radial-gradient(circle at 30% 30%, var(--gold), transparent 70%);
  bottom:-160px; left:-120px;
  opacity:.16;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:start;
  position:relative;
  z-index:1;
}
.hero-bg-motif{
  position:absolute;
  top:-40px; right:2%;
  width:480px; height:480px;
  opacity:.10;
  z-index:0;
  pointer-events:none;
}
.hero h1{
  font-size:clamp(34px,4.4vw,54px);
  font-weight:600;
  margin:16px 0 20px;
  letter-spacing:-0.01em;
}
.hero h1 em{ font-style:italic; color:var(--crimson); }
.hero p.lead{
  font-size:17.5px; color:#4A4436; max-width:520px; margin:0 0 28px; line-height:1.6;
}
.hero-ctas{ display:flex; gap:14px; margin-bottom:34px; flex-wrap:wrap; }
.trust-row{ display:flex; gap:28px; flex-wrap:wrap; }
.trust-item{ display:flex; flex-direction:column; }
.trust-item strong{ font-family:var(--font-display); font-size:22px; color:var(--ink); }
.trust-item span{ font-size:12.5px; color:#6B644F; font-family:var(--font-mono); }

/* ---------- lead capture "index card" ---------- */
.lead-card-wrap{ position:relative; }
.lead-card{
  background:var(--paper-card);
  border:1.5px dashed var(--line-dark);
  border-radius:12px;
  padding:28px 26px 24px;
  box-shadow:var(--shadow-card);
  position:relative;
}
.lead-card::before{
  content:'';
  position:absolute; top:0; left:28px; right:28px; height:1px;
  background:var(--line);
}
.lead-card h3{ font-size:20px; margin-bottom:4px; }
.lead-card .sub{ font-size:13px; color:#6B644F; margin-bottom:18px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; }
.form-field{ display:flex; flex-direction:column; gap:5px; }
.form-field.full{ grid-column:1 / -1; }
.form-field label{ font-size:12px; font-weight:600; color:var(--ink); text-transform:uppercase; letter-spacing:.03em; }
.form-field input, .form-field select, .form-field textarea{
  padding:10px 12px; border:1px solid var(--line-dark); border-radius:6px;
  background:var(--white); color:var(--charcoal);
}
.form-field textarea{ resize:vertical; min-height:64px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  border-color:var(--crimson); outline:none;
}
.form-note{ font-size:11.5px; color:#8a8266; margin-top:10px; text-align:center; }
#lead-status{ font-size:13.5px; margin-top:10px; text-align:center; font-weight:600; }
#lead-status.ok{ color:#2E6B3E; }
#lead-status.err{ color:var(--crimson); }

/* ---------- stamp signature element ---------- */
.stamp{
  position:absolute;
  width:118px; height:118px;
  border:3px solid var(--crimson);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transform:rotate(-11deg);
  color:var(--crimson);
  font-family:var(--font-mono);
  text-align:center;
  font-size:11px;
  letter-spacing:.06em;
  text-transform:uppercase;
  opacity:.85;
  mix-blend-mode:multiply;
  pointer-events:none;
}
.stamp::before{
  content:'';
  position:absolute; inset:6px;
  border:1px solid var(--crimson);
  border-radius:50%;
}
.stamp .stamp-big{ font-family:var(--font-display); font-size:22px; font-weight:700; display:block; margin-bottom:2px; }
.stamp-hero{ top:-18px; right:-16px; background:var(--paper); }

/* ============ PHOTO BAND ============ */
.photo-band{ position:relative; height:280px; overflow:hidden; }
.photo-band img{ width:100%; height:100%; object-fit:cover; }
.photo-band-overlay{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(16,27,51,0.88) 0%, rgba(16,27,51,0.55) 55%, rgba(16,27,51,0.15) 100%);
  display:flex; align-items:center;
}
.photo-band-overlay h2{ color:#fff; font-size:clamp(24px,3vw,34px); max-width:520px; margin-top:12px; }

/* Hero/about-hero elements are visible by default. script.js adds an
   Animate.css entrance class on load as a bonus — if JS or the CDN
   ever fails, content still shows normally instead of staying hidden. */

/* ============ TRUST STRIP ============ */
.trust-strip{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:22px 0;
  background:var(--paper-alt);
}
.trust-strip-inner{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:18px;
}
.trust-badge{ display:flex; align-items:center; gap:10px; font-size:13.5px; color:var(--ink); font-weight:600; }
.trust-badge .ico{ width:34px; height:34px; border-radius:50%; background:var(--ink); color:var(--white); display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:12px; flex-shrink:0; }

/* ============ SECTION SHELL ============ */
.section{ padding:88px 0; }
.section-head{ max-width:640px; margin:0 auto 48px; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.2vw,38px); margin-top:14px; font-weight:600; }
.section-head p{ margin-top:14px; color:#5A5340; font-size:16px; line-height:1.6; }
.section-head.left{ margin-left:0; text-align:left; }

/* ============ PROCESS (numbered) ============ */
.process-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  counter-reset:step;
  border:1px solid var(--line); border-radius:12px; overflow:hidden;
  background:var(--paper-card);
}
.process-step{
  padding:32px 26px; position:relative;
  border-right:1px dashed var(--line);
}
.process-step:last-child{ border-right:none; }
.process-step .num{
  font-family:var(--font-mono); font-size:13px; color:var(--crimson); font-weight:600;
  display:block; margin-bottom:14px;
}
.process-step h4{ font-size:17px; margin-bottom:8px; }
.process-step p{ font-size:14px; color:#5A5340; line-height:1.55; margin:0; }

/* ============ WHY CHOOSE (feature grid) ============ */
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.feature-card{
  background:var(--paper-card); border:1px solid var(--line); border-radius:10px;
  padding:26px 24px; box-shadow:0 1px 0 var(--line);
}
.feature-card .ico{
  width:44px; height:44px; border-radius:8px; background:var(--ink);
  color:var(--paper); display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:15px; margin-bottom:16px;
}
.feature-card h4{ font-size:16.5px; margin-bottom:8px; }
.feature-card p{ font-size:14px; color:#5A5340; line-height:1.55; margin:0; }

/* ============ SUBJECTS (tag cloud) ============ */
.subject-groups{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.subject-group h4{
  font-family:var(--font-mono); font-size:12.5px; text-transform:uppercase; letter-spacing:.08em;
  color:var(--ink-light); margin-bottom:14px; border-bottom:1px solid var(--line); padding-bottom:8px;
}
.tag-wrap{ display:flex; flex-wrap:wrap; gap:8px; }
.tag{
  font-size:13px; padding:7px 13px; border:1px solid var(--line-dark); border-radius:20px;
  background:var(--paper-card); color:var(--charcoal);
}

/* ============ EXPERTS (ID card style) ============ */
.expert-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.expert-card{
  background:var(--paper-card); border:1px solid var(--line); border-radius:10px; overflow:hidden;
  box-shadow:0 1px 0 var(--line);
}
.expert-photo{
  height:120px; background:var(--ink);
  display:flex; align-items:center; justify-content:center; position:relative;
}
.expert-photo .initials{
  width:64px; height:64px; border-radius:50%; background:var(--paper);
  color:var(--ink); display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:700; font-size:22px;
  border:2px solid var(--gold);
}
.expert-body{ padding:16px 18px 18px; }
.expert-body .rating{ font-family:var(--font-mono); font-size:12px; color:var(--gold); margin-bottom:4px; }
.expert-body h4{ font-size:15.5px; margin-bottom:2px; }
.expert-body .deg{ font-size:12.5px; color:#6B644F; margin-bottom:10px; }
.expert-body .subj-tag{ font-size:11.5px; font-family:var(--font-mono); color:var(--ink-light); }

/* ============ TESTIMONIALS ============ */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.testi-card{
  background:var(--paper-card); border:1px solid var(--line); border-radius:10px; padding:26px 24px;
  position:relative;
}
.testi-check{
  position:absolute; top:18px; right:18px; color:var(--crimson); font-size:20px; font-family:var(--font-display);
}
.testi-card p.quote{ font-size:14.5px; line-height:1.65; color:var(--charcoal); margin:8px 0 18px; }
.testi-foot{ display:flex; align-items:center; gap:10px; border-top:1px dashed var(--line); padding-top:14px; }
.testi-avatar{
  width:38px; height:38px; border-radius:50%; background:var(--ink); color:var(--paper);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:14px;
}
.testi-foot strong{ font-size:13.5px; display:block; }
.testi-foot span{ font-size:12px; color:#6B644F; }

/* ============ STATS LEDGER (dark) ============ */
.stats-band{
  background:var(--grad-brand);
  padding:64px 0;
  position:relative;
  overflow:hidden;
}
.stats-band::before{
  content:'';
  position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,0.16) 1.5px, transparent 1.5px);
  background-size:26px 26px;
  opacity:.5;
}
.stats-band .container{ position:relative; z-index:1; }
.stat{ transition:transform .3s ease; }
.stat:hover{ transform:translateY(-4px); }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.stat{
  text-align:center; padding:0 20px; border-right:1px solid rgba(255,255,255,0.14);
}
.stat:last-child{ border-right:none; }
.stat .n{
  font-family:var(--font-mono); font-size:clamp(28px,3vw,40px); color:var(--paper);
  font-weight:600;
}
.stat .l{ font-size:12.5px; color:#AAB4CC; margin-top:8px; letter-spacing:.03em; }

/* ============ FAQ ============ */
.faq-list{ max-width:780px; margin:0 auto; }
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-q{
  width:100%; text-align:left; background:none; border:none; padding:20px 4px;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  font-size:15.5px; font-weight:600; color:var(--ink); font-family:var(--font-body);
}
.faq-q .plus{ font-family:var(--font-mono); font-size:18px; color:var(--crimson); transition:transform .2s ease; flex-shrink:0; }
.faq-item.open .plus{ transform:rotate(45deg); }
.faq-a{
  max-height:0; overflow:hidden; transition:max-height .25s ease;
  font-size:14.5px; color:#5A5340; line-height:1.6;
}
.faq-a-inner{ padding:0 4px 20px; }
.faq-item.open .faq-a{ max-height:280px; }

/* ============ FINAL CTA ============ */
.final-cta{
  background:var(--grad-brand-soft), var(--paper-alt);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:70px 0; text-align:center; position:relative;
  overflow:hidden;
}
.final-cta::before{
  content:'';
  position:absolute; width:360px; height:360px; border-radius:50%;
  background:radial-gradient(circle, var(--blue-light), transparent 70%);
  opacity:.3; filter:blur(50px);
  top:-140px; left:50%; transform:translateX(-50%);
}
.final-cta .container{ position:relative; z-index:1; }
.final-cta h2{ font-size:clamp(26px,3.2vw,36px); margin-bottom:12px; }
.final-cta p{ color:#5A5340; margin-bottom:26px; }
.final-cta .ctas{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.final-cta .stamp{ position:static; margin:0 auto 18px; }

/* ============ FOOTER ============ */
.site-footer{ background:var(--ink); color:#C7CEDF; padding:60px 0 24px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:32px; margin-bottom:44px; }
.footer-brand .brand-name{ color:var(--paper); }
.footer-brand p{ font-size:13.5px; line-height:1.6; margin:14px 0 0; color:#96A1BD; max-width:240px; }
.footer-col h5{
  font-family:var(--font-mono); font-size:12px; text-transform:uppercase; letter-spacing:.08em;
  color:#8792AE; margin-bottom:16px;
}
.footer-col ul li{ margin-bottom:9px; }
.footer-col a{ font-size:13.5px; color:#C7CEDF; }
.footer-col a:hover{ color:var(--gold); }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.12); padding-top:22px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
}
.footer-bottom p{ font-size:12.5px; color:#8792AE; margin:0; }
.footer-legal{ display:flex; gap:18px; }
.footer-legal a{ font-size:12.5px; color:#8792AE; }
.footer-legal a:hover{ color:var(--gold); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float{
  position:fixed; bottom:22px; right:22px; z-index:60;
  width:56px; height:56px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center; box-shadow:0 8px 20px rgba(0,0,0,0.25);
  transition:transform .15s ease;
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:28px; height:28px; }

/* ============ SCROLL REVEAL (Animate.css powered) ============ */
/* Sections are visible by default. If JS runs, the IntersectionObserver
   in script.js adds animate__animated + an Animate.css entrance class
   (with a staggered delay) as a bonus — content never depends on JS
   to become visible. */

/* ---------- hover motion on cards ---------- */
.feature-card, .expert-card, .testi-card, .process-step{
  transition:transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover, .testi-card:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 30px -18px rgba(16,27,51,0.35);
}
.expert-card:hover{ transform:translateY(-5px); box-shadow:0 16px 30px -18px rgba(16,27,51,0.35); }
.expert-photo{ transition:background .3s ease; }
.expert-card:hover .expert-photo{ background:var(--grad-brand); }
.tag{ transition:transform .2s ease, background .2s ease, color .2s ease; }
.tag:hover{ background:var(--grad-brand); color:var(--white); border-color:transparent; transform:translateY(-2px); }

/* ============ SERVICES MEGA-MENU ============ */
.nav-dropdown{ position:relative; }
.nav-dropdown-trigger{
  background:none; border:none; font-family:inherit; font-size:14.5px; font-weight:500;
  color:var(--charcoal); display:flex; align-items:center; gap:5px; padding:4px 0; cursor:pointer;
}
.nav-dropdown-trigger:hover{ color:var(--blue); }
.caret{ font-size:11px; transition:transform .2s ease; }
.nav-dropdown.open .caret{ transform:rotate(180deg); }
.mega-menu{
  position:absolute; top:100%; left:0; transform:translateY(4px);
  margin-top:14px;
  background:var(--paper-card); border:1px solid var(--line); border-radius:12px;
  box-shadow:0 24px 48px -20px rgba(16,27,51,0.35);
  display:grid; grid-template-columns:260px 220px 260px; gap:28px;
  padding:26px 28px; opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
  z-index:80;
  max-height:80vh; overflow-y:auto;
}
/* Invisible bridge so the pointer never leaves the interactive area between trigger and menu */
.mega-menu::before{
  content:''; position:absolute; top:-14px; left:0; right:0; height:14px;
}
.nav-dropdown.open .mega-menu{
  opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0);
}
.mega-col h5{
  font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.06em;
  color:var(--blue); margin-bottom:10px; white-space:nowrap;
}
.mega-col a{ display:block; font-size:13.5px; color:var(--charcoal); padding:6px 0; line-height:1.4; }
.mega-col a:hover{ color:var(--blue); transform:translateX(2px); }

/* ============ FRAUD WARNING BOX ============ */
.fraud-box{
  display:flex; gap:12px; align-items:flex-start;
  margin-top:18px; padding:14px 16px;
  background:#FFF6E9; border:1px solid #F0D9A8; border-radius:10px;
  max-width:520px;
}
.fraud-ico{ font-size:18px; line-height:1; color:#B5790F; flex-shrink:0; }
.fraud-box strong{ font-size:13px; color:#7A4E0A; display:block; margin-bottom:3px; }
.fraud-box p{ font-size:12.5px; color:#7A5E2E; margin:0; line-height:1.5; }
.fraud-box .mono{ font-family:var(--font-mono); font-weight:600; }

/* ============ FOOTER COUNTRY STRIP ============ */
.served-countries{
  display:flex; flex-wrap:wrap; gap:16px; align-items:center;
  padding-bottom:28px; margin-bottom:28px; border-bottom:1px solid rgba(255,255,255,0.12);
  font-size:13px; color:#8792AE;
}
.served-countries .country{ color:#C7CEDF; font-weight:500; }

/* ============================================================
   SERVICE PAGE TEMPLATE — visually distinct from the homepage
   (dark full-bleed hero + floating quote card, timeline process,
   split why-us, testimonial spotlight, scroll-strip related)
   ============================================================ */

/* ---------- dark hero ---------- */
.svc-hero{
  background:var(--grad-brand);
  color:#EAF0FF;
  padding:76px 0 110px;
  position:relative;
  overflow:hidden;
  text-align:center;
}
.svc-hero::before{
  content:'';
  position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size:26px 26px;
  opacity:.5;
}
.svc-hero .container{ position:relative; z-index:1; max-width:820px; }
.svc-hero .eyebrow{ color:#BFD3FF; justify-content:center; }
.svc-hero .eyebrow::before{ background:#BFD3FF; }
.svc-hero h1{
  color:#fff; font-size:clamp(32px,4.2vw,50px); margin:16px 0 18px; font-weight:600;
}
.svc-hero h1 em{ color:var(--gold); font-style:italic; }
.svc-hero p.lead{ color:#C9D6F5; font-size:16.5px; max-width:600px; margin:0 auto 30px; line-height:1.65; }
.svc-hero .hero-ctas{ justify-content:center; margin-bottom:0; }
.svc-hero .btn-ghost{ border-color:rgba(255,255,255,0.5); color:#fff; }
.svc-hero .btn-ghost:hover{ background:#fff; color:var(--ink); }

.svc-ticker{
  position:relative; z-index:1; display:flex; justify-content:center; gap:0; flex-wrap:wrap;
  margin-top:34px;
}
.svc-ticker span{
  font-family:var(--font-mono); font-size:12.5px; color:#C9D6F5;
  padding:0 20px; border-right:1px solid rgba(255,255,255,0.25);
}
.svc-ticker span:last-child{ border-right:none; }
.svc-ticker strong{ color:#fff; font-family:var(--font-display); font-size:16px; display:block; margin-bottom:2px; }

/* ---------- floating overlap quote card ---------- */
.svc-quote-wrap{ position:relative; z-index:2; margin-top:-70px; padding-bottom:20px; }
.svc-quote-card{
  background:var(--paper-card); border:1px solid var(--line); border-radius:16px;
  box-shadow:0 30px 60px -24px rgba(16,27,51,0.4);
  padding:30px 34px; max-width:1080px; margin:0 auto;
  position:relative;
}
.svc-quote-card h3{ text-align:center; font-size:19px; margin-bottom:18px; }
.svc-quote-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:14px; }
.svc-quote-grid .form-field.full{ grid-column:1 / -1; }
.svc-quote-card .btn-block{ max-width:280px; margin:6px auto 0; }

/* ---------- timeline process ---------- */
.svc-timeline{
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  position:relative; counter-reset:step;
}
.svc-timeline::before{
  content:'';
  position:absolute; top:26px; left:12.5%; right:12.5%; height:2px;
  background:repeating-linear-gradient(to right, var(--line-dark) 0 8px, transparent 8px 14px);
}
.svc-timeline-item{ position:relative; text-align:center; padding:0 18px; }
.svc-timeline-dot{
  width:52px; height:52px; border-radius:50%; background:var(--grad-brand); color:#fff;
  font-family:var(--font-mono); font-weight:700; font-size:16px;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 18px; position:relative; z-index:1;
  box-shadow:0 8px 20px -8px rgba(44,109,240,0.6);
}
.svc-timeline-item h4{ font-size:15.5px; margin-bottom:8px; }
.svc-timeline-item p{ font-size:13.5px; color:#5A6478; line-height:1.55; margin:0; }

/* ---------- split why-us ---------- */
.svc-why-split{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:start; }
.svc-why-intro{ position:sticky; top:110px; }
.svc-why-intro .eyebrow{ margin-bottom:14px; }
.svc-why-intro h2{ font-size:clamp(26px,3vw,34px); margin-bottom:14px; }
.svc-why-intro p{ font-size:15.5px; color:#5A6478; line-height:1.65; margin-bottom:22px; }
.svc-why-stat{ display:flex; gap:24px; }
.svc-why-stat div strong{ font-family:var(--font-display); font-size:24px; color:var(--ink); display:block; }
.svc-why-stat div span{ font-size:12px; color:#6B7488; font-family:var(--font-mono); }
.svc-why-list{ display:flex; flex-direction:column; gap:4px; }
.svc-why-row{
  display:flex; gap:16px; align-items:flex-start; padding:18px 4px;
  border-bottom:1px solid var(--line);
}
.svc-why-row:last-child{ border-bottom:none; }
.svc-why-row .ico{
  width:38px; height:38px; border-radius:9px; background:var(--grad-brand-soft); color:var(--blue);
  display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0;
}
.svc-why-row h4{ font-size:15.5px; margin:0 0 4px; }
.svc-why-row p{ font-size:13.5px; color:#5A6478; margin:0; line-height:1.55; }

/* ---------- essay-type pill cards ---------- */
.svc-types-grid{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.svc-type-pill{
  display:flex; align-items:center; gap:9px;
  background:var(--paper-card); border:1px solid var(--line); border-radius:12px;
  padding:12px 18px; font-size:13.5px; font-weight:500; color:var(--charcoal);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-type-pill .dot{ width:8px; height:8px; border-radius:50%; background:var(--grad-brand); flex-shrink:0; }
.svc-type-pill:hover{ transform:translateY(-3px); box-shadow:0 12px 24px -14px rgba(16,27,51,0.35); border-color:var(--blue-light); }

/* ---------- testimonial spotlight ---------- */
.svc-spotlight{
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:0;
  border-radius:18px; overflow:hidden; border:1px solid var(--line);
}
.svc-spotlight-main{
  background:var(--grad-brand); color:#fff; padding:44px 40px; position:relative;
}
.svc-spotlight-quote-mark{
  font-family:var(--font-display); font-size:70px; color:rgba(255,255,255,0.25); line-height:1; margin-bottom:6px;
}
.svc-spotlight-main p{ font-size:18px; line-height:1.6; font-style:italic; margin:0 0 22px; }
.svc-spotlight-main strong{ display:block; font-size:14.5px; }
.svc-spotlight-main span{ font-size:12.5px; color:#C9D6F5; }
.svc-spotlight-side{ background:var(--paper-card); padding:28px 30px; display:flex; flex-direction:column; gap:20px; }
.svc-mini-quote{ border-bottom:1px solid var(--line); padding-bottom:18px; }
.svc-mini-quote:last-child{ border-bottom:none; padding-bottom:0; }
.svc-mini-quote p{ font-size:13.5px; color:var(--charcoal); line-height:1.55; margin:0 0 8px; }
.svc-mini-quote strong{ font-size:12.5px; }
.svc-mini-quote span{ font-size:11.5px; color:#6B7488; }

/* ---------- related services scroll strip ---------- */
.svc-related-strip{
  display:flex; gap:16px; overflow-x:auto; padding-bottom:10px; scroll-snap-type:x proximity;
}
.svc-related-strip::-webkit-scrollbar{ height:6px; }
.svc-related-strip::-webkit-scrollbar-thumb{ background:var(--line-dark); border-radius:6px; }
.svc-related-card{
  flex:0 0 240px; scroll-snap-align:start;
  background:var(--paper-card); border:1px solid var(--line); border-radius:12px;
  padding:22px 20px; transition:transform .2s ease, box-shadow .2s ease;
}
.svc-related-card:hover{ transform:translateY(-4px); box-shadow:0 16px 30px -18px rgba(16,27,51,0.35); }
.svc-related-card .ico{
  width:40px; height:40px; border-radius:9px; background:var(--ink); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:14px; margin-bottom:14px;
}
.svc-related-card h4{ font-size:14.5px; margin-bottom:6px; }
.svc-related-card p{ font-size:12.5px; color:#5A6478; line-height:1.5; margin:0; }

/* ---------- two-column FAQ ---------- */
.svc-faq-columns{ column-count:2; column-gap:36px; }
.svc-faq-item{
  break-inside:avoid; margin-bottom:22px; padding-left:18px; border-left:3px solid var(--blue-light);
}
.svc-faq-item h4{ font-size:14.5px; color:var(--ink); margin:0 0 6px; }
.svc-faq-item p{ font-size:13.5px; color:#5A6478; line-height:1.55; margin:0; }

@media (max-width: 980px){
  .svc-quote-grid{ grid-template-columns:1fr 1fr; }
  .svc-timeline{ grid-template-columns:1fr 1fr; row-gap:32px; }
  .svc-timeline::before{ display:none; }
  .svc-why-split{ grid-template-columns:1fr; }
  .svc-why-intro{ position:static; }
  .svc-spotlight{ grid-template-columns:1fr; }
  .svc-faq-columns{ column-count:1; }
}
@media (max-width: 600px){
  .svc-quote-grid{ grid-template-columns:1fr; }
  .svc-timeline{ grid-template-columns:1fr; }
  .svc-hero{ padding:60px 0 90px; }
  .svc-quote-card{ padding:24px 18px; }
}

/* ============ DEDICATED QUOTE PAGE ============ */
.quote-band{
  background:var(--grad-brand);
  padding:70px 24px 90px;
  position:relative;
  overflow:hidden;
}
.quote-band::before{
  content:'';
  position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size:26px 26px;
  opacity:.5;
}
.quote-band-card{
  position:relative; z-index:1;
  max-width:1080px; margin:0 auto;
  background:var(--paper-card);
  border-radius:20px;
  padding:44px 48px;
  box-shadow:0 30px 70px -24px rgba(16,27,51,0.5);
}
.quote-band-card h1{
  text-align:center; font-size:clamp(28px,3.4vw,38px); margin-bottom:8px;
}
.quote-band-card .sub{ text-align:center; color:#5A6478; font-size:15px; margin-bottom:32px; }
.whatsapp-row{ display:flex; gap:8px; }
.whatsapp-row select{
  flex:0 0 130px; padding:10px 8px; border:1px solid var(--line-dark); border-radius:6px;
  background:var(--white); font-size:13px; color:var(--charcoal);
}
.whatsapp-row input{ flex:1; }
.quote-plan-row{ display:flex; gap:12px; margin:6px 0 22px; flex-wrap:wrap; }
.quote-plan-pill{
  display:flex; align-items:center; gap:8px;
  padding:10px 20px; border-radius:8px; font-size:14px; font-weight:600; cursor:pointer;
  border:1.5px solid transparent;
}
.quote-plan-pill.silver{ background:#E7EAF0; color:#4A5468; }
.quote-plan-pill.gold{ background:#F6D98A; color:#7A4E0A; }
.quote-plan-pill.platinum{ background:#CFEAF7; color:#0C4A63; }
.quote-plan-pill input{ accent-color:currentColor; }
.quote-contact-row{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px;
  margin-top:28px; padding-top:24px; border-top:1px dashed var(--line);
}
.quote-contact-info{ display:flex; gap:24px; flex-wrap:wrap; font-size:14px; color:var(--charcoal); }
.quote-contact-info a{ color:var(--charcoal); }
.quote-social-row{ display:flex; gap:10px; }

@media (max-width: 700px){
  .quote-band-card{ padding:30px 22px; }
  .whatsapp-row{ flex-direction:column; }
  .whatsapp-row select{ flex:1; }
}

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.rv-hero{ padding:60px 0 40px; }
.rv-hero-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center; }
.rv-hero h1{ font-size:clamp(32px,4vw,48px); margin:14px 0 18px; }
.rv-hero p.lead{ font-size:16px; color:#5A6478; max-width:480px; margin-bottom:26px; line-height:1.6; }
.rv-hero-art{ display:flex; justify-content:center; }
.rv-hero-art svg{ width:100%; max-width:360px; height:auto; }

.rv-trust-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:10px; }
.rv-trust-card{
  background:var(--paper-card); border:1px solid var(--line); border-radius:12px;
  padding:20px 18px; text-align:center;
}
.rv-trust-card .n{ font-family:var(--font-display); font-size:24px; color:var(--ink); font-weight:700; }
.rv-trust-card .l{ font-size:12px; color:#6B7488; margin-top:4px; }

.rv-band{ background:var(--ink); color:#EAF0FF; padding:64px 0; }
.rv-band-head{ display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:20px; margin-bottom:34px; }
.rv-band-head h2{ color:#fff; font-size:clamp(24px,3vw,32px); margin:0 0 8px; }
.rv-band-head p{ color:#AAB4CC; margin:0; font-size:14.5px; }
.rv-rating-pill{
  display:flex; align-items:center; gap:12px;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.16);
  border-radius:14px; padding:12px 20px;
}
.rv-rating-pill .num{ font-family:var(--font-display); font-size:22px; font-weight:700; color:#fff; }
.rv-rating-pill .stars{ color:var(--gold); font-size:14px; }
.rv-rating-pill .lbl{ font-size:11px; color:#AAB4CC; }

.rv-review-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.rv-review-card{
  background:#16264A; border:1px solid rgba(255,255,255,0.1); border-radius:12px;
  padding:22px 20px;
}
.rv-review-card .stars{ color:var(--gold); font-size:13px; margin-bottom:8px; }
.rv-review-card h4{ color:#fff; font-size:15px; margin:0 0 4px; }
.rv-review-card .tag{ font-size:12px; color:var(--blue-light); margin-bottom:10px; display:block; }
.rv-review-card p{ font-size:13.5px; color:#C9D2E8; line-height:1.55; margin:0 0 14px; }
.rv-review-card .meta{ font-size:11px; color:#7C88A8; border-top:1px solid rgba(255,255,255,0.1); padding-top:10px; }
.rv-review-card.rv-hidden{ display:none; }

.rv-show-more{ text-align:center; margin-top:30px; }

.rv-info-split{ display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.rv-info-block h4{ font-size:17px; margin-bottom:10px; display:flex; align-items:center; gap:8px; }
.rv-info-block p{ font-size:14px; color:#5A6478; line-height:1.65; margin:0; }

.rv-cta-band{
  background:var(--grad-brand); text-align:center; padding:64px 24px; position:relative; overflow:hidden;
}
.rv-cta-band::before{
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size:26px 26px; opacity:.5;
}
.rv-cta-band .container{ position:relative; z-index:1; }
.rv-cta-band h2{ color:#fff; font-size:clamp(24px,3vw,32px); margin-bottom:10px; }
.rv-cta-band p{ color:#C9D6F5; margin-bottom:24px; }

@media (max-width: 980px){
  .rv-hero-grid{ grid-template-columns:1fr; }
  .rv-trust-grid{ grid-template-columns:1fr 1fr; }
  .rv-review-grid{ grid-template-columns:1fr 1fr; }
  .rv-info-split{ grid-template-columns:1fr; }
}
@media (max-width: 600px){
  .rv-trust-grid{ grid-template-columns:1fr; }
  .rv-review-grid{ grid-template-columns:1fr; }
  .rv-band-head{ flex-direction:column; align-items:flex-start; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:repeat(2,1fr); }
  .process-step{ border-right:none; border-bottom:1px dashed var(--line); }
  .feature-grid{ grid-template-columns:repeat(2,1fr); }
  .subject-groups{ grid-template-columns:1fr 1fr; }
  .expert-grid{ grid-template-columns:repeat(2,1fr); }
  .testi-grid{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); gap:26px 0; }
  .stat{ border-right:none; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .main-nav{ display:none; }
}
/* ============ NAV ACTIVE STATE ============ */
.main-nav a.active{ color:var(--blue); font-weight:700; }

/* ============ ABOUT HERO ============ */
.about-hero{ padding:56px 0 40px; position:relative; overflow:hidden; }
.about-hero-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center; }
.about-hero-copy h1{ font-size:clamp(36px,4.6vw,56px); margin:10px 0 4px; }
.about-hero-sub{ font-family:var(--font-mono); font-size:15px; letter-spacing:.06em; color:var(--blue); margin:0 0 18px; }
.about-hero-copy > p{ font-size:16px; color:#4A5468; line-height:1.65; max-width:480px; margin-bottom:22px; }
.trust-line{ font-size:12.5px; color:#6B7488; margin:14px 0 12px !important; }
.social-row{ display:flex; gap:10px; }
.social-ico{
  width:36px; height:36px; border-radius:50%; background:var(--paper-card); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; color:var(--ink);
  transition:transform .2s ease, background .2s ease, color .2s ease;
}
.social-ico:hover{ background:var(--grad-brand); color:#fff; transform:translateY(-3px); border-color:transparent; }
.about-hero-art svg{ width:100%; height:auto; }
.about-hero-photo{ position:relative; }
.about-hero-photo::before{
  content:'';
  position:absolute; inset:-18px -18px auto auto; width:78%; height:88%;
  background:var(--grad-brand); border-radius:32px; opacity:.14; z-index:0;
}
.about-hero-photo img{
  position:relative; z-index:1; width:100%; height:340px; object-fit:cover;
  border-radius:20px; border:1px solid var(--line); box-shadow:0 24px 48px -24px rgba(16,27,51,0.35);
}

/* ============ CIRCLE FEATURE CARDS ============ */
.circle-feature-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.circle-feature-card{
  background:var(--paper-card); border:1px solid var(--line); border-radius:12px;
  padding:32px 22px; text-align:center; transition:transform .25s ease, box-shadow .25s ease;
}
.circle-feature-card:hover{ transform:translateY(-5px); box-shadow:0 16px 30px -18px rgba(16,27,51,0.35); }
.circle-ico{
  width:64px; height:64px; margin:0 auto 18px; border-radius:50%;
  background:var(--grad-brand); color:#fff; font-size:24px;
  display:flex; align-items:center; justify-content:center;
}
.circle-feature-card h4{ font-size:16.5px; margin-bottom:10px; }
.circle-feature-card p{ font-size:13.5px; color:#5A6478; line-height:1.6; margin:0; }

/* ============ SERVICE BANNER ============ */
.service-banner-section{ padding:0 0 88px; }
.service-banner{
  background:linear-gradient(rgba(16,27,51,0.86), rgba(26,63,196,0.82)), url('https://cdn.pixabay.com/photo/2020/04/01/17/46/library-4992077_1280.jpg') center/cover;
  border-radius:16px; margin:0 24px; max-width:1180px; margin-inline:auto;
  padding:36px 32px; position:relative; overflow:hidden;
}
.service-banner::before{
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size:22px 22px; opacity:.5;
}
.service-banner-label{
  position:relative; z-index:1; display:inline-block; color:#fff; font-family:var(--font-mono);
  font-size:12px; letter-spacing:.06em; text-transform:uppercase; background:rgba(255,255,255,0.16);
  padding:6px 14px; border-radius:20px; margin-bottom:22px;
}
.service-banner-cards{ position:relative; z-index:1; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.service-banner-card{
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.25); border-radius:10px;
  padding:20px 18px; backdrop-filter:blur(4px);
}
.service-banner-card h4{ color:#fff; font-size:15.5px; margin-bottom:8px; }
.service-banner-card p{ color:#D7E0F5; font-size:13px; line-height:1.55; margin:0; }

/* ============ PRICING PLANS ============ */
.plans-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch; }
.plan-card{
  background:var(--paper-card); border:1px solid var(--line); border-radius:14px;
  padding:30px 26px; text-align:center; display:flex; flex-direction:column; gap:16px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.plan-card:hover{ transform:translateY(-6px); box-shadow:0 20px 36px -20px rgba(16,27,51,0.35); }
.plan-featured{ border-color:var(--gold); box-shadow:0 14px 30px -16px rgba(216,164,38,0.45); transform:scale(1.03); }
.plan-badge{
  font-family:var(--font-display); font-size:22px; font-weight:700; padding:8px 0;
}
.plan-silver{ color:#6B7488; }
.plan-gold{ color:var(--gold); }
.plan-platinum{ color:var(--blue); }
.plan-unit{ font-size:12px; font-family:var(--font-mono); color:#8A93A8; margin-top:-10px; }
.plan-list{ text-align:left; margin:0; padding:0; list-style:none; flex:1; }
.plan-list li{ font-size:13.5px; padding:6px 0; color:#3A4256; }

/* ============ BLOG CARDS ============ */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.blog-card{
  background:var(--paper-card); border:1px solid var(--line); border-radius:12px; overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover{ transform:translateY(-5px); box-shadow:0 16px 30px -18px rgba(16,27,51,0.35); }
.blog-thumb{ height:150px; overflow:hidden; }
.blog-thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.blog-card:hover .blog-thumb img{ transform:scale(1.06); }
.blog-card h4{ font-size:15.5px; margin:16px 18px 8px; }
.blog-card p{ font-size:13px; color:#5A6478; line-height:1.55; margin:0 18px 16px; }
.blog-card .btn{ margin:0 18px 20px; }

/* ============ CONTACT SECTION ============ */
.contact-section{ padding-top:0; }
.contact-card{
  background:var(--grad-brand-soft), var(--paper-card);
  border:1px solid var(--line); border-radius:18px;
  padding:44px 40px; max-width:900px; margin:0 auto;
}
.contact-card .form-row{ grid-template-columns:1fr 1fr; }
.contact-card textarea{ min-height:44px; }
.plan-radio-row{ display:flex; gap:18px; margin-top:6px; }
.plan-radio{ display:flex; align-items:center; gap:6px; font-size:13.5px; color:var(--charcoal); font-weight:500; }
.contact-meta{
  display:flex; gap:24px; justify-content:center; margin-top:22px; padding-top:20px;
  border-top:1px dashed var(--line); font-size:13.5px; color:#5A6478; flex-wrap:wrap;
}
#contact-status{ font-size:13.5px; margin-top:12px; text-align:center; font-weight:600; }
#contact-status.ok{ color:#2E6B3E; }
#contact-status.err{ color:var(--blue-2); }

/* ============ RESPONSIVE (about page) ============ */
@media (max-width: 980px){
  .about-hero-grid{ grid-template-columns:1fr; }
  .circle-feature-grid{ grid-template-columns:repeat(2,1fr); }
  .service-banner-cards{ grid-template-columns:repeat(2,1fr); }
  .plans-grid{ grid-template-columns:1fr; }
  .plan-featured{ transform:none; }
  .blog-grid{ grid-template-columns:1fr; }
  .contact-card{ padding:32px 22px; }
}
@media (max-width: 600px){
  .form-row{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:1fr; }
  .feature-grid{ grid-template-columns:1fr; }
  .subject-groups{ grid-template-columns:1fr; }
  .expert-grid{ grid-template-columns:1fr 1fr; }
  .stats-grid{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .stamp-hero{ display:none; }
  .header-phone{ display:none; }
  .circle-feature-grid{ grid-template-columns:1fr; }
  .service-banner-cards{ grid-template-columns:1fr; }
  .contact-card .form-row{ grid-template-columns:1fr; }
}

