/* ==========================================================================
   E-Tech Accountancy Ltd — Design System
   Crystal / Glass / Premium Financial Aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root{
  /* ---- Core palette ---- */
  --navy-950:#060f22;
  --navy-900:#0a1a35;
  --navy-800:#0f2447;
  --navy-700:#15305c;
  --navy-600:#1c3d72;
  --teal-500:#12a6a0;
  --teal-400:#2fc4bd;
  --teal-300:#7ee0da;
  --gold-500:#c6a15b;
  --gold-400:#dcb96f;
  --ice-50:#f3f7fc;
  --ice-100:#e9f1f9;
  --ice-200:#dbe9f5;
  --slate-900:#101826;
  --slate-700:#38455a;
  --slate-500:#64738a;
  --slate-300:#a8b6c8;
  --white:#ffffff;

  /* ---- Glass tokens ---- */
  --glass-bg: rgba(255,255,255,0.58);
  --glass-bg-strong: rgba(255,255,255,0.78);
  --glass-border: rgba(255,255,255,0.85);
  --glass-shadow: 0 8px 32px rgba(10,26,53,0.10), 0 1.5px 0 rgba(255,255,255,0.6) inset;
  --glass-dark-bg: rgba(15,36,71,0.55);
  --glass-dark-border: rgba(255,255,255,0.14);

  /* ---- Type ---- */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- Layout ---- */
  --container: 1200px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--slate-700);
  background:var(--ice-50);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); color:var(--navy-900); margin:0 0 .5em; line-height:1.15; font-weight:600; }
p{ margin:0 0 1em; }
button{ font-family:inherit; }

:focus-visible{
  outline: 2px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}

/* ---- Ambient crystal background (used behind hero / dark sections) ---- */
.crystal-field{
  position:absolute; inset:0;
  overflow:hidden;
  pointer-events:none;
  z-index:0;
}
.crystal-field span{
  position:absolute;
  border-radius:50%;
  filter:blur(60px);
  opacity:.55;
}
.crystal-field .c1{ width:420px; height:420px; top:-140px; left:-100px; background:radial-gradient(circle at 30% 30%, var(--teal-400), transparent 70%); }
.crystal-field .c2{ width:520px; height:520px; top:10%; right:-180px; background:radial-gradient(circle at 60% 40%, var(--gold-500), transparent 70%); opacity:.28; }
.crystal-field .c3{ width:360px; height:360px; bottom:-160px; left:35%; background:radial-gradient(circle at 50% 50%, var(--teal-300), transparent 70%); opacity:.3; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:100;
  padding:18px 0;
}
.site-header .nav-shell{
  max-width:var(--container);
  margin:0 auto;
  padding:12px 22px;
  display:flex; align-items:center; justify-content:space-between;
  background:var(--glass-bg-strong);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-full);
  box-shadow:var(--glass-shadow);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
}

.brand{ display:flex; align-items:center; gap:14px; }
.brand-logo{ height:42px; width:auto; display:block; flex-shrink:0; }
.brand-divider{ width:1px; height:24px; background:rgba(15,36,71,0.16); flex-shrink:0; }
.brand-suffix{
  font-family:var(--font-display); font-weight:600; font-size:1.05rem;
  color:var(--navy-900); letter-spacing:.3px; white-space:nowrap;
}

.nav-main{ display:flex; align-items:center; gap:6px; }
.nav-main > li{ position:relative; }
.mobile-panel{ display:none; }
.nav-main a.nav-link{
  display:flex; align-items:center; gap:5px;
  padding:10px 16px;
  border-radius:var(--radius-full);
  font-size:.92rem; font-weight:500; color:var(--slate-700);
  transition:background .2s ease, color .2s ease;
  white-space:nowrap;
}
.nav-main a.nav-link:hover,
.nav-main li.active a.nav-link{
  background:rgba(18,166,160,0.12);
  color:var(--teal-500);
}
.nav-main .chev{ width:9px; height:9px; border-right:1.6px solid currentColor; border-bottom:1.6px solid currentColor; transform:rotate(45deg); margin-top:-3px; transition:transform .2s ease; }
.nav-main li.has-dropdown:hover .chev,
.nav-main li.has-dropdown.open .chev{ transform:rotate(225deg); margin-top:3px; }

.dropdown{
  position:absolute; top:calc(100% + 14px); left:50%;
  transform:translateX(-50%) translateY(6px);
  min-width:300px;
  background:var(--glass-bg-strong);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-md);
  box-shadow:0 20px 46px rgba(10,26,53,0.18);
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  padding:10px;
  opacity:0; visibility:hidden;
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:50;
}
.nav-main li.has-dropdown:hover .dropdown,
.nav-main li.has-dropdown.open .dropdown{
  opacity:1; visibility:visible; transform:translateX(-50%) translateY(0);
}
.dropdown a{
  display:flex; align-items:flex-start; gap:12px;
  padding:11px 12px;
  border-radius:var(--radius-sm);
  transition:background .15s ease;
}
.dropdown a:hover{ background:rgba(18,166,160,0.10); }
.dropdown a .dd-ic{
  width:34px; height:34px; flex-shrink:0; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(145deg, var(--teal-400), var(--teal-500));
  color:#fff;
}
.dropdown a .dd-ic svg{ width:17px; height:17px; }
.dropdown a .dd-title{ font-weight:600; font-size:.88rem; color:var(--navy-900); }
.dropdown a .dd-desc{ font-size:.76rem; color:var(--slate-500); margin-top:1px; }

.nav-cta{
  display:flex; align-items:center; gap:14px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 24px;
  border-radius:var(--radius-full);
  font-weight:600; font-size:.9rem;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(135deg, var(--teal-500), var(--navy-700));
  color:#fff;
  box-shadow:0 10px 24px rgba(18,166,160,0.35);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 30px rgba(18,166,160,0.45); }
.btn-ghost{
  background:var(--glass-bg);
  border-color:var(--glass-border);
  color:var(--navy-800);
}
.btn-ghost:hover{ background:#fff; }
.btn-gold{
  background:linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color:var(--navy-950);
  box-shadow:0 10px 24px rgba(198,161,91,0.35);
}
.btn-gold:hover{ transform:translateY(-2px); }
.btn-block{ width:100%; }
.btn-sm{ padding:9px 18px; font-size:.82rem; }

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:50%;
  border:1px solid var(--glass-border);
  background:var(--glass-bg);
  align-items:center; justify-content:center;
  flex-direction:column; gap:4px;
  cursor:pointer;
}
.nav-toggle span{ width:18px; height:2px; background:var(--navy-800); border-radius:2px; transition:.25s ease; }
.nav-toggle.is-open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Sections / Utility
   ========================================================================== */
section{ position:relative; }
.section{ padding:100px 0; }
.section-sm{ padding:64px 0; }
.section-tight{ padding:80px 0; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.72rem; font-weight:700; letter-spacing:2.2px; text-transform:uppercase;
  color:var(--teal-500);
  margin-bottom:16px;
}
.eyebrow::before{ content:''; width:22px; height:2px; background:var(--gold-500); border-radius:2px; }

.section-head{ max-width:700px; margin-bottom:56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.8rem, 3.2vw, 2.6rem); }
.section-head p{ font-size:1.05rem; color:var(--slate-500); }

.lede{ font-size:1.15rem; color:var(--slate-500); max-width:640px; }

/* ---- Glass card ---- */
.glass{
  background:var(--glass-bg);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  box-shadow:var(--glass-shadow);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
}
.glass-dark{
  background:var(--glass-dark-bg);
  border:1px solid var(--glass-dark-border);
  border-radius:var(--radius-lg);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  color:var(--ice-100);
}
.glass-dark h1,.glass-dark h2,.glass-dark h3,.glass-dark h4{ color:#fff; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  padding:60px 0 120px;
  background:linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  overflow:hidden;
}
.hero-inner{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.hero-copy .eyebrow{ color:var(--teal-300); }
.hero-copy h1{
  color:#fff;
  font-size:clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight:600;
  letter-spacing:-.5px;
}
.hero-copy h1 em{ font-style:normal; color:var(--gold-400); }
.hero-copy p{ color:var(--slate-300); font-size:1.12rem; max-width:520px; }
.hero-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }

.hero-stats{
  display:flex; gap:28px; margin-top:52px; flex-wrap:wrap;
}
.hero-stats .stat b{ display:block; font-family:var(--font-display); font-size:1.7rem; color:#fff; }
.hero-stats .stat span{ font-size:.78rem; color:var(--slate-300); text-transform:uppercase; letter-spacing:1px; }

.hero-panel{
  position:relative;
  z-index:2;
  padding:34px;
  color:#fff;
}
.hero-panel .hp-row{
  display:flex; align-items:center; gap:14px;
  padding:16px 6px;
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.hero-panel .hp-row:last-child{ border-bottom:none; }
.hero-panel .hp-ic{
  width:46px; height:46px; border-radius:14px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(145deg, var(--teal-400), var(--teal-500));
}
.hero-panel .hp-ic svg{ width:22px; height:22px; color:#fff; }
.hero-panel .hp-title{ font-weight:600; color:#fff; font-size:.98rem; }
.hero-panel .hp-desc{ font-size:.82rem; color:var(--slate-300); margin-top:2px; }
.hero-panel-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:6px; }
.hero-panel-head span{ font-size:.7rem; letter-spacing:2px; text-transform:uppercase; color:var(--teal-300); font-weight:700; }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip{
  margin-top:-64px;
  position:relative; z-index:5;
}
.trust-strip .glass{
  display:flex; flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:20px 40px;
  padding:26px 40px;
}
.trust-item{ display:flex; align-items:center; gap:12px; }
.trust-item .ti-num{ font-family:var(--font-display); font-size:1.5rem; color:var(--navy-900); font-weight:600; }
.trust-item .ti-label{ font-size:.78rem; color:var(--slate-500); max-width:120px; line-height:1.3; }

/* ==========================================================================
   Service cards
   ========================================================================== */
.service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.service-card{
  padding:38px 32px;
  transition:transform .25s ease, box-shadow .25s ease;
  position:relative;
  overflow:hidden;
}
.service-card::after{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(160deg, rgba(18,166,160,0.10), transparent 60%);
  opacity:0; transition:opacity .25s ease;
}
.service-card:hover{ transform:translateY(-8px); box-shadow:0 24px 50px rgba(10,26,53,0.16); }
.service-card:hover::after{ opacity:1; }
.service-card .sc-ic{
  width:58px; height:58px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(145deg, var(--navy-700), var(--navy-900));
  margin-bottom:22px;
  position:relative; z-index:1;
}
.service-card .sc-ic svg{ width:27px; height:27px; color:var(--teal-300); }
.service-card h3{ font-size:1.28rem; position:relative; z-index:1; }
.service-card p{ font-size:.94rem; color:var(--slate-500); position:relative; z-index:1; }
.service-card .sc-link{
  display:inline-flex; align-items:center; gap:6px;
  font-size:.85rem; font-weight:600; color:var(--teal-500);
  position:relative; z-index:1;
}
.service-card .sc-link svg{ width:14px; height:14px; transition:transform .2s ease; }
.service-card:hover .sc-link svg{ transform:translateX(4px); }
.sc-index{ position:absolute; top:22px; right:28px; font-family:var(--font-display); font-size:2.6rem; color:rgba(15,36,71,0.06); font-weight:600; z-index:0; }

/* ---- Sub-service list rows (used on service detail pages) ---- */
.offer-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}
.offer-row{
  display:flex; gap:18px; align-items:flex-start;
  padding:26px;
}
.offer-row .or-ic{
  width:44px; height:44px; border-radius:12px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background:rgba(18,166,160,0.12);
  color:var(--teal-500);
}
.offer-row .or-ic svg{ width:20px; height:20px; }
.offer-row h4{ font-size:1.02rem; margin-bottom:6px; }
.offer-row p{ font-size:.88rem; color:var(--slate-500); margin:0; }

/* ==========================================================================
   Split / feature sections
   ========================================================================== */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.split.reverse .split-media{ order:2; }
.split.reverse .split-copy{ order:1; }
.split-copy h2{ font-size:clamp(1.7rem, 3vw, 2.3rem); }
.split-media{ position:relative; }
.media-frame{
  position:relative;
  border-radius:var(--radius-lg);
  padding:8px;
  background:var(--glass-bg);
  border:1px solid var(--glass-border);
  box-shadow:var(--glass-shadow);
}
.media-frame img, .media-frame .media-inner{
  border-radius:calc(var(--radius-lg) - 8px);
  overflow:hidden;
}
.media-inner{
  aspect-ratio:4/3.2;
  background:linear-gradient(150deg, var(--navy-800), var(--navy-950));
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.media-inner svg{ width:46%; height:46%; opacity:.9; }
.media-badge{
  position:absolute; bottom:-22px; right:-18px;
  padding:16px 22px;
  display:flex; align-items:center; gap:12px;
}
.media-badge .mb-num{ font-family:var(--font-display); font-size:1.4rem; color:var(--navy-900); font-weight:700; }
.media-badge .mb-txt{ font-size:.72rem; color:var(--slate-500); max-width:100px; line-height:1.25; }

.check-list li{
  display:flex; align-items:flex-start; gap:12px;
  padding:9px 0;
  font-size:.96rem; color:var(--slate-700);
}
.check-list li svg{ width:19px; height:19px; flex-shrink:0; color:var(--teal-500); margin-top:2px; }

/* ==========================================================================
   Progress / skill bars
   ========================================================================== */
.progress-block{ margin-bottom:24px; }
.progress-block .pb-top{ display:flex; justify-content:space-between; font-size:.9rem; font-weight:600; color:var(--navy-900); margin-bottom:8px; }
.progress-track{ height:8px; border-radius:99px; background:rgba(15,36,71,0.08); overflow:hidden; }
.progress-fill{ height:100%; border-radius:99px; background:linear-gradient(90deg, var(--teal-500), var(--gold-500)); }

/* ==========================================================================
   Process / timeline
   ========================================================================== */
.timeline{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
  position:relative;
}
.timeline-step{ padding:30px 24px; position:relative; }
.timeline-step .ts-num{
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(145deg, var(--teal-400), var(--navy-700));
  color:#fff; font-family:var(--font-display); font-weight:600; font-size:.95rem;
  margin-bottom:18px;
}
.timeline-step h4{ font-size:1rem; }
.timeline-step p{ font-size:.85rem; color:var(--slate-500); margin:0; }

/* ==========================================================================
   Testimonial
   ========================================================================== */
.testimonial-wrap{
  position:relative;
  padding:70px 0;
  background:linear-gradient(180deg, var(--navy-900), var(--navy-950));
  overflow:hidden;
}
.testimonial-card{
  max-width:780px; margin:0 auto;
  text-align:center;
  padding:52px 56px;
  position:relative; z-index:2;
}
.testimonial-card .tq{
  font-family:var(--font-display);
  font-size:clamp(1.15rem, 2vw, 1.5rem);
  color:#fff;
  font-weight:400;
  line-height:1.55;
  margin-bottom:26px;
}
.testimonial-card .tauthor{ display:flex; align-items:center; justify-content:center; gap:12px; }
.testimonial-card .tavatar{
  width:44px; height:44px; border-radius:50%;
  background:linear-gradient(145deg, var(--teal-400), var(--gold-500));
  display:flex; align-items:center; justify-content:center;
  color:#0a1a35; font-weight:700; font-family:var(--font-display);
}
.testimonial-card .tname{ color:#fff; font-weight:600; font-size:.92rem; }
.testimonial-card .trole{ color:var(--slate-300); font-size:.78rem; }
.tstars{ color:var(--gold-400); letter-spacing:3px; margin-bottom:14px; }

/* ==========================================================================
   News cards
   ========================================================================== */
.news-grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:26px; }
.news-card{ overflow:hidden; }
.news-thumb{
  height:160px;
  background:linear-gradient(150deg, var(--navy-800), var(--teal-500));
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.news-thumb svg{ width:52px; height:52px; color:rgba(255,255,255,0.85); }
.news-tag{
  position:absolute; top:16px; left:16px;
  background:rgba(255,255,255,0.9);
  color:var(--navy-900);
  font-size:.68rem; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  padding:6px 12px; border-radius:99px;
}
.news-body{ padding:26px 26px 28px; }
.news-body h3{ font-size:1.1rem; }
.news-body p{ font-size:.88rem; color:var(--slate-500); }
.news-link{ font-size:.83rem; font-weight:600; color:var(--teal-500); display:inline-flex; align-items:center; gap:6px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  position:relative;
  padding:64px 56px;
  overflow:hidden;
  display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;
  background:linear-gradient(135deg, var(--navy-800), var(--navy-950));
}
.cta-band h2{ color:#fff; font-size:clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom:8px; }
.cta-band p{ color:var(--slate-300); margin:0; max-width:420px; }
.cta-band-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-hero{
  position:relative;
  padding:150px 0 90px;
  background:linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 65%, var(--navy-800) 100%);
  color:#fff;
  margin-top:-104px;
}
.page-hero .container{ position:relative; z-index:2; }
.breadcrumb{ display:flex; align-items:center; gap:8px; font-size:.82rem; color:var(--slate-300); margin-bottom:20px; }
.breadcrumb a:hover{ color:var(--teal-300); }
.breadcrumb .sep{ opacity:.5; }
.page-hero h1{ color:#fff; font-size:clamp(2.1rem, 4vw, 3rem); max-width:760px; }
.page-hero p{ color:var(--slate-300); font-size:1.08rem; max-width:600px; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:36px;
  align-items:start;
}
.contact-info-card{ padding:38px; color:#fff; }
.contact-info-card .ci-row{ display:flex; gap:16px; padding:18px 0; border-bottom:1px solid rgba(255,255,255,0.12); }
.contact-info-card .ci-row:last-child{ border-bottom:none; }
.contact-info-card .ci-ic{
  width:44px; height:44px; border-radius:12px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.1);
  color:var(--teal-300);
}
.contact-info-card .ci-ic svg{ width:20px; height:20px; }
.contact-info-card .ci-label{ font-size:.7rem; text-transform:uppercase; letter-spacing:1.5px; color:var(--slate-300); margin-bottom:3px; }
.contact-info-card .ci-value{ font-size:.98rem; font-weight:500; color:#fff; }
.social-row{ display:flex; gap:10px; margin-top:26px; }
.social-row a{
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.14);
  transition:background .2s ease;
}
.social-row a:hover{ background:var(--teal-500); }
.social-row svg{ width:16px; height:16px; color:#fff; }

.form-card{ padding:40px; }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-field{ margin-bottom:18px; display:flex; flex-direction:column; gap:8px; }
.form-field label{ font-size:.82rem; font-weight:600; color:var(--navy-900); }
.form-field input, .form-field select, .form-field textarea{
  font-family:var(--font-body);
  padding:13px 16px;
  border-radius:12px;
  border:1px solid rgba(15,36,71,0.14);
  background:rgba(255,255,255,0.7);
  font-size:.92rem;
  color:var(--slate-900);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:none;
  border-color:var(--teal-500);
  box-shadow:0 0 0 4px rgba(18,166,160,0.12);
}
.form-field textarea{ resize:vertical; min-height:130px; }
.form-note{ font-size:.78rem; color:var(--slate-500); margin-top:12px; }

.map-frame{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--glass-border);
  box-shadow:var(--glass-shadow);
  margin-top:28px;
}
.map-frame iframe{ width:100%; height:340px; border:0; display:block; filter:grayscale(15%) contrast(1.02); }

/* ==========================================================================
   Team / values (Who We Are)
   ========================================================================== */
.value-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:22px; }
.value-card{ padding:30px 26px; text-align:left; }
.value-card .vc-ic{
  width:48px; height:48px; border-radius:13px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(198,161,91,0.14);
  color:var(--gold-500);
  margin-bottom:18px;
}
.value-card .vc-ic svg{ width:22px; height:22px; }
.value-card h4{ font-size:1rem; }
.value-card p{ font-size:.86rem; color:var(--slate-500); margin:0; }

.badge-row{ display:flex; gap:16px; flex-wrap:wrap; margin-top:30px; }
.cert-badge{
  display:flex; align-items:center; gap:10px;
  padding:12px 18px;
  font-size:.8rem; font-weight:600; color:var(--navy-800);
}
.cert-badge svg{ width:18px; height:18px; color:var(--teal-500); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background:var(--navy-950);
  color:var(--slate-300);
  padding-top:80px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1.2fr;
  gap:48px;
  padding-bottom:56px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-suffix{ color:#fff; }
.footer-brand .brand-divider{ background:rgba(255,255,255,0.22); }
.footer-brand p{ color:var(--slate-300); font-size:.9rem; max-width:280px; margin-top:16px; }
.footer-col h5{ color:#fff; font-size:.85rem; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:20px; font-weight:700; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col a{ font-size:.9rem; color:var(--slate-300); transition:color .2s ease; }
.footer-col a:hover{ color:var(--teal-300); }
.footer-contact li{ display:flex; gap:10px; font-size:.88rem; margin-bottom:16px; align-items:flex-start; }
.footer-contact svg{ width:17px; height:17px; color:var(--teal-400); flex-shrink:0; margin-top:2px; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding:26px 0; flex-wrap:wrap; gap:14px;
  font-size:.8rem; color:var(--slate-500);
}
.footer-bottom .fs{ display:flex; gap:18px; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
}
.footer-social svg{ width:15px; height:15px; color:#fff; }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-1{ transition-delay:.08s; }
.reveal-2{ transition-delay:.16s; }
.reveal-3{ transition-delay:.24s; }
.reveal-4{ transition-delay:.32s; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-panel{ order:-1; }
  .service-grid{ grid-template-columns:repeat(2,1fr); }
  .offer-grid{ grid-template-columns:1fr; }
  .timeline{ grid-template-columns:repeat(2,1fr); }
  .value-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-top{ grid-template-columns:1fr 1fr; row-gap:40px; }
  .split{ grid-template-columns:1fr; gap:40px; }
  .split.reverse .split-media{ order:1; }
  .split.reverse .split-copy{ order:2; }
  .contact-grid{ grid-template-columns:1fr; }
}

@media (max-width: 860px){
  .nav-main, .nav-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:flex; }
  .site-header .nav-shell{ border-radius:26px; }
  .mobile-panel{
    max-width:var(--container);
    margin:10px auto 0;
    padding:14px;
    display:none;
    flex-direction:column;
    gap:4px;
  }
  .mobile-panel.is-open{ display:flex; }
  .mobile-panel a{ padding:13px 14px; border-radius:12px; font-weight:500; font-size:.95rem; color:var(--navy-800); }
  .mobile-panel a:hover{ background:rgba(18,166,160,0.1); }
  .mobile-sub{ padding-left:14px; display:flex; flex-direction:column; gap:2px; }
  .mobile-sub a{ font-size:.88rem; color:var(--slate-500); padding:10px 14px; }
  .mobile-group-label{ padding:12px 14px 4px; font-size:.72rem; text-transform:uppercase; letter-spacing:1.5px; color:var(--teal-500); font-weight:700; }
  .mobile-cta{ margin-top:10px; padding:0 14px; }

  .news-grid{ grid-template-columns:1fr; }
  .form-grid{ grid-template-columns:1fr; }
}

@media (max-width: 640px){
  .section{ padding:64px 0; }
  .service-grid{ grid-template-columns:1fr; }
  .timeline{ grid-template-columns:1fr; }
  .value-grid{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr; }
  .trust-strip .glass{ justify-content:center; text-align:center; }
  .cta-band{ padding:44px 26px; flex-direction:column; text-align:center; }
  .cta-band-actions{ justify-content:center; }
  .testimonial-card{ padding:36px 24px; }
  .page-hero{ padding:130px 0 70px; }
  .hero-panel{ padding:24px; }
}
