/* ==========================================================================
   SURYANSH CONTECH — DESIGN TOKENS
   Palette: deep emerald conglomerate green + charcoal neutrals + a
   restrained gold accent reserved only for the Miss Universe partnership.
   Type: Poppins (brand-mandated) for display/body, JetBrains Mono for
   data, eyebrows and labels — giving the "ledger / dashboard" feel of a
   diversified holding company.
   ========================================================================== */

:root{
  --emerald-950:#06211A;
  --emerald-900:#0A3527;
  --emerald-800:#0E4A36;
  --emerald-700:#116245;
  --emerald-600:#158055;
  --emerald-500:#1CA268;
  --emerald-100:#E4F2EA;

  --gold:#C9A24A;
  --gold-light:#F1E4C2;

  --ink:#121613;
  --ink-soft:#3A423E;
  --slate:#69756F;
  --line:#E3E7E1;
  --paper:#F8F9F6;
  --paper-alt:#F1F3EE;
  --white:#FFFFFF;

  --font-display:'Poppins', sans-serif;
  --font-mono:'JetBrains Mono', monospace;

  --shadow-sm:0 2px 10px rgba(10,30,22,0.06);
  --shadow-md:0 12px 32px rgba(10,30,22,0.10);
  --shadow-lg:0 24px 60px rgba(10,30,22,0.16);

  --radius-sm:8px;
  --radius-md:16px;
  --radius-lg:28px;

  --ease:cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-display);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
.container{ max-width:1240px; margin:0 auto; padding:0 28px; }
::selection{ background:var(--emerald-500); color:var(--white); }

@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:2px solid var(--emerald-500); outline-offset:3px; border-radius:4px; }

/* ---------- shared type helpers ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:12px; font-weight:600;
  letter-spacing:0.14em; text-transform:uppercase;
  color:var(--emerald-500);
  margin-bottom:18px;
}
.eyebrow::before{ content:''; width:22px; height:1.5px; background:var(--emerald-500); }
.eyebrow-dark{ color:var(--emerald-700); }
.eyebrow-dark::before{ background:var(--emerald-700); }
.eyebrow-light{ color:var(--emerald-100); }
.eyebrow-light::before{ background:var(--gold); }
.eyebrow-gold{ color:var(--gold-light); }
.eyebrow-gold::before{ background:var(--gold); }

.section-title{
  font-size:clamp(32px,4vw,48px);
  line-height:1.12;
  font-weight:700;
  letter-spacing:-0.01em;
  margin:0 0 20px;
  color:var(--ink);
}
.section-title-light{ color:var(--white); }
.body-lg{ font-size:18px; line-height:1.7; color:var(--ink-soft); margin:0 0 18px; }
.body-md{ font-size:15.5px; line-height:1.75; color:var(--slate); margin:0 0 18px; }
.section-intro{ max-width:640px; }

.section{ padding:110px 0; position:relative; }
.section-head{ margin-bottom:56px; max-width:720px; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 30px; border-radius:999px;
  font-size:14.5px; font-weight:600; letter-spacing:0.01em;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  color:var(--white);
  box-shadow:0 10px 24px rgba(17,98,69,0.32);
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 16px 34px rgba(17,98,69,0.4); }
.btn-ghost{
  background:transparent; color:var(--white);
  border:1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover{ background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.7); transform:translateY(-3px); }
.btn-nav{ padding:11px 24px; font-size:13.5px; }

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announce-bar{
  background:var(--emerald-950);
  color:var(--emerald-100);
  overflow:hidden;
  white-space:nowrap;
  position:relative;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.announce-track{
  display:inline-flex;
  animation:marquee 28s linear infinite;
  padding:10px 0;
}
.announce-item{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12.5px; font-weight:500;
  padding:0 48px;
  font-family:var(--font-mono);
  letter-spacing:0.01em;
}
.announce-badge{
  background:linear-gradient(135deg, var(--gold), #a8823a);
  color:#241a06;
  font-weight:700; font-size:10.5px; letter-spacing:0.08em;
  padding:4px 10px; border-radius:999px;
}
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:100;
  transition:background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  background:transparent;
}
.site-header.scrolled{
  background:rgba(248,249,246,0.78);
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
  box-shadow:0 1px 0 rgba(10,30,22,0.06), 0 12px 30px rgba(10,30,22,0.06);
}
.nav-container{
  max-width:1240px; margin:0 auto; padding:20px 28px;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
}
.site-header.scrolled .nav-container{ padding:14px 28px; }

.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand-logo{ width:34px; height:34px; border-radius:8px; object-fit:cover; }
.brand-text{
  font-weight:700; font-size:19px; letter-spacing:-0.01em; color:var(--ink);
}
.brand-accent{ color:var(--emerald-600); }

.nav-links{ display:flex; align-items:center; gap:36px; }
.nav-link{
  font-size:14px; font-weight:500; color:var(--ink-soft);
  position:relative; padding:6px 0; transition:color .25s;
}
.nav-link::after{
  content:''; position:absolute; left:0; bottom:0; height:2px; width:0;
  background:var(--emerald-600); transition:width .3s var(--ease);
}
.nav-link:hover{ color:var(--ink); }
.nav-link:hover::after{ width:100%; }

.hamburger{ display:none; flex-direction:column; gap:5px; padding:6px; z-index:110; }
.hamburger span{ width:24px; height:2px; background:var(--ink); border-radius:2px; transition:transform .35s var(--ease), opacity .3s, background .3s; }
.hamburger.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  display:flex; flex-direction:column; gap:2px;
  max-height:0; overflow:hidden;
  background:var(--white);
  transition:max-height .45s var(--ease), box-shadow .3s;
  padding:0 28px;
}
.mobile-menu.open{ max-height:520px; padding:12px 28px 28px; box-shadow:0 20px 40px rgba(10,30,22,0.1); }
.mobile-link{ padding:14px 4px; font-weight:500; font-size:15.5px; border-bottom:1px solid var(--line); color:var(--ink-soft); }
.mobile-cta{ margin-top:16px; width:100%; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  min-height:92vh;
  display:flex; flex-direction:column; justify-content:center;
  padding:70px 0 60px;
  overflow:hidden;
  background:var(--emerald-950);
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg-img{ width:100%; height:100%; object-fit:cover; opacity:0.28; }
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 900px 600px at 15% 20%, rgba(28,162,104,0.35), transparent 60%),
    linear-gradient(180deg, rgba(6,33,26,0.55) 0%, rgba(6,33,26,0.92) 70%, var(--emerald-950) 100%);
}

.hero-grid{
  position:relative; z-index:1;
  max-width:1240px; margin:0 auto; padding:0 28px;
  display:grid; grid-template-columns:1.15fr 0.85fr; gap:64px;
  align-items:center;
}
.hero-copy .eyebrow{ color:var(--gold-light); }
.hero-copy .eyebrow::before{ background:var(--gold); }

.hero-title{
  font-size:clamp(38px,5.4vw,64px);
  line-height:1.06; font-weight:800; letter-spacing:-0.02em;
  color:var(--white); margin:0 0 24px;
}
.hero-title-accent{
  background:linear-gradient(120deg, var(--emerald-500), var(--gold-light));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub{
  font-size:17px; line-height:1.75; color:rgba(255,255,255,0.72);
  max-width:540px; margin:0 0 36px;
}
.hero-cta{ display:flex; flex-wrap:wrap; gap:16px; margin-bottom:56px; }

.hero-proof{ display:flex; align-items:center; gap:28px; flex-wrap:wrap; }
.proof-item{ display:flex; flex-direction:column; gap:4px; }
.proof-num{ font-family:var(--font-mono); font-size:28px; font-weight:700; color:var(--white); }
.proof-label{ font-size:12.5px; color:rgba(255,255,255,0.55); max-width:140px; line-height:1.4; }
.proof-divider{ width:1px; height:38px; background:rgba(255,255,255,0.18); }

.hero-visual{ position:relative; }
.hero-card-main{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,0.1);
  aspect-ratio:4/5;
}
.hero-card-main img{ width:100%; height:100%; object-fit:cover; }
.hero-card-float{
  position:absolute; left:-32px; bottom:-28px;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(10px);
  border-radius:var(--radius-md);
  padding:20px 24px;
  box-shadow:var(--shadow-lg);
  display:flex; flex-direction:column; gap:4px;
  max-width:230px;
  border-left:4px solid var(--gold);
}
.hero-card-eyebrow{ font-family:var(--font-mono); font-size:10px; font-weight:700; letter-spacing:0.08em; color:var(--emerald-700); }
.hero-card-title{ font-weight:700; font-size:16px; color:var(--ink); }
.hero-card-meta{ font-size:12.5px; color:var(--slate); }

.hero-scroll-cue{
  position:relative; z-index:1; margin:0 auto; margin-top:48px;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color:rgba(255,255,255,0.5); font-size:11px; letter-spacing:0.14em; text-transform:uppercase;
  font-family:var(--font-mono);
}
.scroll-line{ width:1px; height:36px; background:rgba(255,255,255,0.2); position:relative; overflow:hidden; }
.scroll-dot{ width:1px; height:12px; background:var(--gold); position:absolute; top:0; animation:scrollDown 1.8s ease-in-out infinite; }
@keyframes scrollDown{ 0%{ top:-12px; } 60%{ top:36px; } 100%{ top:36px; opacity:0; } }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:72px; align-items:center; }
.about-media{ position:relative; }
.about-img-wrap{
  border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md);
  aspect-ratio:4/5;
}
.about-img-wrap img{ width:100%; height:100%; object-fit:cover; }
.about-stat-chip{
  position:absolute; right:-24px; bottom:32px;
  background:var(--emerald-950); color:var(--white);
  border-radius:var(--radius-md);
  padding:20px 22px;
  box-shadow:var(--shadow-lg);
  display:flex; flex-direction:column; gap:4px;
  max-width:200px;
}
.chip-num{ font-family:var(--font-mono); font-size:24px; font-weight:700; color:var(--emerald-500); }
.chip-label{ font-size:12px; line-height:1.5; color:rgba(255,255,255,0.7); }

.about-quote{
  border-left:3px solid var(--gold);
  padding:4px 0 4px 22px; margin:28px 0;
}
.about-quote p{ font-size:20px; font-weight:600; font-style:italic; color:var(--ink); margin:0 0 6px; }
.about-quote span{ font-family:var(--font-mono); font-size:11.5px; color:var(--slate); letter-spacing:0.02em; }

.about-values{ display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.value-pill{
  font-family:var(--font-mono); font-size:12px; font-weight:500;
  padding:9px 16px; border-radius:999px;
  background:var(--emerald-100); color:var(--emerald-800);
  border:1px solid rgba(17,98,69,0.12);
}

/* ==========================================================================
   DIVISIONS
   ========================================================================== */
.divisions{ background:var(--paper-alt); }
.division-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;
}
.division-card{
  background:var(--white); border-radius:var(--radius-md);
  padding:36px 30px; border:1px solid var(--line);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  display:flex; flex-direction:column;
}
.division-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.division-icon-wrap{
  width:52px; height:52px; border-radius:14px;
  background:var(--emerald-100); color:var(--emerald-700);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
}
.division-icon{ width:24px; height:24px; }
.division-icon-wrap-gold{ background:var(--gold-light); color:#8a6a1f; }
.division-num{
  font-family:var(--font-mono); font-size:11px; font-weight:600;
  letter-spacing:0.08em; text-transform:uppercase; color:var(--emerald-600);
  margin-bottom:10px;
}
.division-num-gold{ color:var(--gold); }
.division-card h3{ font-size:20px; font-weight:700; margin:0 0 12px; color:var(--ink); }
.division-card p{ font-size:14.5px; line-height:1.7; color:var(--slate); margin:0; flex-grow:1; }
.division-card-feature{
  background:linear-gradient(155deg, var(--emerald-950), var(--emerald-800));
  border-color:transparent;
}
.division-card-feature h3, .division-card-feature p{ color:rgba(255,255,255,0.85); }
.division-card-feature h3{ color:var(--white); }
.division-tag{
  margin-top:18px; display:inline-flex; align-self:flex-start;
  font-family:var(--font-mono); font-size:11px; font-weight:600;
  padding:7px 14px; border-radius:999px;
  background:rgba(201,162,74,0.16); color:var(--gold-light);
  border:1px solid rgba(201,162,74,0.3);
}

/* ==========================================================================
   SPOTLIGHT
   ========================================================================== */
.spotlight{ position:relative; padding:130px 0; overflow:hidden; }
.spotlight-bg{ position:absolute; inset:0; }
.spotlight-bg img{ width:100%; height:100%; object-fit:cover; }
.spotlight-overlay{
  position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(6,33,26,0.94) 40%, rgba(6,33,26,0.72));
}
.spotlight-content{ position:relative; z-index:1; max-width:640px; }
.spotlight-title{
  font-size:clamp(30px,4vw,46px); font-weight:700; line-height:1.15;
  color:var(--white); margin:0 0 22px; letter-spacing:-0.01em;
}
.spotlight-copy{ font-size:16.5px; line-height:1.8; color:rgba(255,255,255,0.72); margin:0 0 32px; }
.spotlight-years{ display:flex; gap:14px; }
.year-pill{
  font-family:var(--font-mono); font-weight:700; font-size:15px;
  padding:11px 22px; border-radius:999px;
  background:rgba(201,162,74,0.14); color:var(--gold-light);
  border:1px solid rgba(201,162,74,0.35);
}

/* ==========================================================================
   LEADERSHIP
   ========================================================================== */
.leader-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:28px; }
.leader-card{
  background:var(--white); border-radius:var(--radius-lg);
  padding:32px; border:1px solid var(--line);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
  position:relative;
}
.leader-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.leader-img-wrap{
  position:relative; border-radius:var(--radius-md); overflow:hidden;
  aspect-ratio:1/1; margin-bottom:22px;
}
.leader-img-wrap img{ width:100%; height:100%; object-fit:cover; }
.leader-badge{
  position:absolute; left:14px; bottom:14px;
  background:rgba(6,33,26,0.85); backdrop-filter:blur(6px);
  color:var(--gold-light); font-family:var(--font-mono); font-size:10.5px; font-weight:600;
  padding:7px 12px; border-radius:999px; letter-spacing:0.03em;
}
.leader-card-ceo{ border-color:var(--gold); box-shadow:0 0 0 1px rgba(201,162,74,0.3); }
.leader-name{ font-size:20px; font-weight:700; margin:0 0 4px; }
.leader-title{ display:block; font-family:var(--font-mono); font-size:12px; color:var(--emerald-600); font-weight:600; margin-bottom:14px; }
.leader-bio{ font-size:14px; line-height:1.7; color:var(--slate); margin:0 0 20px; }
.leader-linkedin{
  width:36px; height:36px; border-radius:50%;
  background:var(--emerald-100); color:var(--emerald-700);
  display:inline-flex; align-items:center; justify-content:center;
  transition:background .3s, color .3s, transform .3s;
}
.leader-linkedin svg{ width:17px; height:17px; }
.leader-linkedin:hover{ background:var(--emerald-700); color:var(--white); transform:translateY(-2px); }

/* ==========================================================================
   ACHIEVEMENTS
   ========================================================================== */
.achievements{
  position:relative;
  background:var(--emerald-950);
  overflow:hidden;
}
.achievements-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(600px 400px at 90% 10%, rgba(28,162,104,0.25), transparent 60%),
    radial-gradient(500px 400px at 10% 90%, rgba(201,162,74,0.12), transparent 60%);
}
.achievements .container{ position:relative; z-index:1; }
.stat-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:1px;
  background:rgba(255,255,255,0.08);
  border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
}
.stat-card{
  background:var(--emerald-950);
  padding:44px 32px;
  display:flex; flex-direction:column; gap:10px;
  transition:background .35s;
}
.stat-card:hover{ background:var(--emerald-900); }
.stat-num{
  font-family:var(--font-mono); font-weight:700;
  font-size:clamp(34px,3.4vw,46px); color:var(--emerald-500);
  letter-spacing:-0.01em;
}
.stat-label{ font-size:13.5px; color:rgba(255,255,255,0.62); line-height:1.5; max-width:220px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns:0.8fr 1.2fr; gap:72px; }
.contact-detail-list{ margin-top:32px; display:flex; flex-direction:column; gap:22px; }
.contact-detail{ display:flex; align-items:flex-start; gap:16px; }
.contact-detail svg{ width:20px; height:20px; color:var(--emerald-600); flex-shrink:0; margin-top:2px; }
.contact-detail div{ display:flex; flex-direction:column; gap:2px; }
.contact-detail span{ font-family:var(--font-mono); font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:var(--slate); }
.contact-detail a{ font-size:15px; font-weight:500; color:var(--ink); transition:color .25s; }
.contact-detail a:hover{ color:var(--emerald-600); }

.contact-form{
  background:var(--white); border-radius:var(--radius-lg);
  border:1px solid var(--line); box-shadow:var(--shadow-sm);
  padding:40px; display:flex; flex-direction:column; gap:20px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group{ display:flex; flex-direction:column; gap:8px; }
.form-group-full{ grid-column:1/-1; }
.form-group label{ font-size:12.5px; font-weight:600; color:var(--ink-soft); }
.form-group input, .form-group select, .form-group textarea{
  font-family:var(--font-display);
  padding:13px 16px; border-radius:10px; border:1.5px solid var(--line);
  font-size:14.5px; color:var(--ink); background:var(--paper);
  transition:border-color .25s, box-shadow .25s;
  resize:vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  outline:none; border-color:var(--emerald-500);
  box-shadow:0 0 0 4px rgba(28,162,104,0.12);
  background:var(--white);
}
.btn-submit{ width:fit-content; margin-top:6px; }
.btn-submit svg{ width:16px; height:16px; transition:transform .3s var(--ease); }
.btn-submit:hover svg{ transform:translateX(3px); }
.form-note{ font-size:13.5px; font-weight:500; min-height:18px; margin:0; }
.form-note.success{ color:var(--emerald-600); }
.form-note.error{ color:#B3452F; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background:var(--emerald-950); color:rgba(255,255,255,0.7); padding:90px 0 0; }
.footer-top{
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:48px;
  padding-bottom:64px; border-bottom:1px solid rgba(255,255,255,0.1);
}
.brand-footer .brand-text{ color:var(--white); }
.footer-tagline{ font-size:14px; line-height:1.75; color:rgba(255,255,255,0.55); margin:20px 0 26px; max-width:320px; }
.footer-social{ display:flex; gap:12px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  transition:background .3s, transform .3s;
}
.footer-social svg{ width:16px; height:16px; color:var(--white); }
.footer-social a:hover{ background:var(--emerald-600); transform:translateY(-3px); }

.footer-links h4{
  font-family:var(--font-mono); font-size:12px; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--gold-light); margin:0 0 20px; font-weight:600;
}
.footer-links a{
  display:block; font-size:14px; color:rgba(255,255,255,0.6);
  margin-bottom:13px; transition:color .25s;
}
.footer-links a:hover{ color:var(--white); }
.footer-address{ font-size:14px; line-height:1.8; color:rgba(255,255,255,0.6); margin:0; }

.footer-bottom{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px;
  padding:26px 0; font-size:12.5px; color:rgba(255,255,255,0.4);
}
.footer-cin{ font-family:var(--font-mono); font-size:11.5px; }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top{
  position:fixed; right:26px; bottom:26px; z-index:90;
  width:48px; height:48px; border-radius:50%;
  background:var(--emerald-950); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md);
  opacity:0; visibility:hidden; transform:translateY(12px);
  transition:opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.back-to-top.visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top svg{ width:18px; height:18px; }
.back-to-top:hover{ background:var(--emerald-700); }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1080px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ max-width:420px; margin:0 auto; }
  .about-grid{ grid-template-columns:1fr; }
  .about-media{ max-width:440px; margin:0 auto; }
  .contact-grid{ grid-template-columns:1fr; }
  .division-grid{ grid-template-columns:repeat(2, 1fr); }
  .leader-grid{ grid-template-columns:repeat(3, 1fr); gap:20px; }
  .footer-top{ grid-template-columns:1fr 1fr; row-gap:44px; }
}

@media (max-width:860px){
  .nav-links, .btn-nav{ display:none; }
  .hamburger{ display:flex; }
  .section{ padding:80px 0; }
  .leader-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; }
  .division-grid{ grid-template-columns:1fr; }
  .stat-grid{ grid-template-columns:1fr 1fr; }
  .form-row{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr; }
  .hero{ min-height:auto; padding-top:50px; }
  .hero-card-float{ position:static; margin-top:16px; max-width:none; }
}

@media (max-width:560px){
  .container{ padding:0 20px; }
  .hero-grid, .nav-container{ padding:0 20px; }
  .hero-title{ font-size:clamp(30px,9vw,40px); }
  .hero-proof{ gap:18px; }
  .proof-divider{ display:none; }
  .stat-grid{ grid-template-columns:1fr; }
  .spotlight{ padding:90px 0; }
  .contact-form{ padding:26px; }
  .about-stat-chip{ position:static; margin-top:16px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
}
