/* ==========================================================================
   Crestlines — Corporate Website Styles  (A subsidiary of Rogers Inc.)
   Palette: Deep Navy, Crestlines Green, White, Charcoal Grey
   ========================================================================== */

:root {
  --navy: #0b2447;
  --navy-deep: #071a36;
  --royal: #2f7d2e;
  --royal-light: #4aa03c;
  --gold: #6cc24a;
  --gold-2: #57ad3a;
  --charcoal: #2c3440;
  --grey: #5c6672;
  --grey-light: #8a929e;
  --line: #e6eaf0;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-soft-2: #eef2f8;
  --white: #ffffff;

  --maxw: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(11, 36, 71, 0.06);
  --shadow: 0 14px 40px rgba(11, 36, 71, 0.10);
  --shadow-lg: 0 30px 70px rgba(11, 36, 71, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(120deg, var(--royal), var(--royal-light));
  color: #fff;
  box-shadow: 0 12px 26px rgba(47, 125, 46, 0.32);
}
.btn-primary:hover { box-shadow: 0 18px 34px rgba(47, 125, 46, 0.42); }

.btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  color: var(--navy-deep);
  box-shadow: 0 12px 26px rgba(87, 173, 58, 0.32);
  font-weight: 600;
}
.btn-gold:hover { box-shadow: 0 18px 34px rgba(87, 173, 58, 0.45); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--royal); color: var(--royal); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.16); }

.btn .arw { transition: transform 0.3s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 20px 0;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 26px rgba(11, 36, 71, 0.08);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo-mark {
  width: auto; height: 40px; flex-shrink: 0;
  background: #fff;
  padding: 6px 8px;
  border-radius: 11px;
  box-shadow: 0 3px 10px rgba(11, 36, 71, 0.14);
}
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand .brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand .brand-tag {
  font-size: 0.64rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--grey-light);
  font-weight: 500;
}
.brand .brand-sub {
  font-size: 0.56rem;
  letter-spacing: 0.02em;
  color: var(--grey-light);
  font-weight: 500;
  opacity: 0.85;
}
.header:not(.scrolled) .brand-sub { color: rgba(255,255,255,0.55); }
/* light nav variant over dark hero */
.header:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.9); }
.header:not(.scrolled) .brand-name { color: #fff; }
.header:not(.scrolled) .brand-tag { color: rgba(255,255,255,0.6); }
.header:not(.scrolled) .menu-toggle span { background: #fff; }
.header.light-page:not(.scrolled) .nav-links a { color: var(--charcoal); }
.header.light-page:not(.scrolled) .brand-name { color: var(--navy); }
.header.light-page:not(.scrolled) .brand-tag { color: var(--grey-light); }
.header.light-page:not(.scrolled) .menu-toggle span { background: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  position: relative;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--royal); }
.nav-cta { margin-left: 6px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 6px;
}
.menu-toggle span {
  width: 26px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Section basics ---------- */
.section { padding: 110px 0; }
.section-soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
}
.section-head { max-width: 680px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin-bottom: 18px;
}
.section-sub { color: var(--grey); font-size: 1.06rem; }

.lead { font-size: 1.14rem; color: var(--grey); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1100px 620px at 78% 12%, rgba(47,125,46,0.28), transparent 60%),
    radial-gradient(900px 600px at 10% 88%, rgba(108,194,74,0.12), transparent 60%),
    linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, #103564 100%);
  color: #fff;
  overflow: hidden;
  padding: 140px 0 90px;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 70% 40%, #000 0%, transparent 72%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(108,194,74,0.25);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  font-weight: 700;
  margin-bottom: 24px;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--gold), #a8dc8a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead { color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}
.hero-stat .num span { color: var(--gold); }
.hero-stat .lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* Hero visual card */
.hero-visual { position: relative; margin: 34px 26px; }
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 42px 30px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}
.hero-card h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
.hero-card .metric-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-card .metric-row:last-child { border-bottom: none; }
.hero-card .metric-row .k { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.hero-card .bar {
  width: 120px; height: 8px;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}
.hero-card .bar i {
  display: block; height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--royal-light), var(--gold));
}
.hero-card .chk {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(108,194,74,0.18);
  color: var(--gold);
}
.floaty {
  position: absolute;
  background: #fff;
  color: var(--navy);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 0.9rem;
  animation: float 5s ease-in-out infinite;
}
.floaty .ic {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(47,125,46,0.12); color: var(--royal);
}
.floaty.one { top: -26px; right: -18px; }
.floaty.two { bottom: -26px; left: -18px; animation-delay: 1.6s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Trusted / marquee strip ---------- */
.strip { background: var(--navy); padding: 26px 0; }
.strip .container { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: center; }
.strip p { color: rgba(255,255,255,0.55); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.strip .tags { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.strip .tags span { color: rgba(255,255,255,0.85); font-family: var(--font-head); font-weight: 600; font-size: 1rem; }

/* ---------- Cards grid (services) ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .ic {
  width: 58px; height: 58px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(47,125,46,0.12), rgba(108,194,74,0.12));
  color: var(--royal);
  margin-bottom: 22px;
  transition: transform 0.4s var(--ease);
}
.card:hover .ic { transform: scale(1.08) rotate(-4deg); }
.card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.card p { color: var(--grey); font-size: 0.97rem; }

/* ---------- Feature / why split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-list { display: grid; gap: 22px; margin-top: 30px; }
.feature-item { display: flex; gap: 18px; }
.feature-item .fi-ic {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--gold);
}
.feature-item h4 { font-size: 1.08rem; margin-bottom: 5px; }
.feature-item p { color: var(--grey); font-size: 0.95rem; }

.visual-stack { position: relative; }
.visual-stack .img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, var(--navy), #16457f);
  aspect-ratio: 4/3.4;
  position: relative;
}
.visual-stack .img-main::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}
.img-main .net {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  padding: 8px;
}
.map-dots { position: absolute; inset: 0; z-index: 2; }
.map-dots .pin {
  position: absolute;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(108,194,74,0.6);
  animation: pulse 2.4s infinite;
}
.map-dots .pin.p1 { top: 26%; left: 30%; }
.map-dots .pin.p2 { top: 46%; left: 58%; animation-delay: 0.6s; }
.map-dots .pin.p3 { top: 64%; left: 38%; animation-delay: 1.2s; }
.map-dots .pin.p4 { top: 34%; left: 72%; animation-delay: 1.8s; background: var(--royal-light); }
.map-dots .line { position: absolute; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); transform-origin: left; opacity: 0.5; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(108,194,74,0.55); } 70% { box-shadow: 0 0 0 16px rgba(108,194,74,0); } 100% { box-shadow: 0 0 0 0 rgba(108,194,74,0); } }

.stat-badge {
  position: absolute;
  bottom: 26px; right: -18px;
  background: #fff;
  border-radius: var(--radius);
  padding: 13px 18px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 150px;
}
.stat-badge .num { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--navy); line-height: 1.2; }
.stat-badge .num span { color: var(--royal); }
.stat-badge .lbl { font-size: 0.7rem; color: var(--grey); letter-spacing: 0.03em; }

/* ---------- Industries chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 14px; }
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: all 0.3s var(--ease);
}
.chip .d { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-3px); }
.chip:hover .d { background: var(--gold); }

/* ---------- Stats band ---------- */
.stats-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 60%, #12447f);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 85% 20%, rgba(108,194,74,0.14), transparent 60%);
}
.stats-band .container { position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-grid .s .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); color: #fff; }
.stats-grid .s .num span { color: var(--gold); }
.stats-grid .s .lbl { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-top: 6px; }
.stats-grid .s:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.12); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { position: relative; padding-top: 20px; }
.step .no {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--royal-light);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 14px;
}
.step h4 { font-size: 1.14rem; margin-bottom: 10px; }
.step p { color: var(--grey); font-size: 0.95rem; }
.step::after {
  content: "";
  position: absolute; top: 34px; right: -13px;
  width: 26px; height: 26px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23cfd8e6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
}
.step:last-child::after { display: none; }

/* ---------- Values ---------- */
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-card .vc-ic {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--navy); color: var(--gold);
  margin-bottom: 18px;
}
.value-card h4 { font-size: 1.14rem; margin-bottom: 8px; }
.value-card p { color: var(--grey); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta {
  background:
    radial-gradient(700px 400px at 15% 20%, rgba(47,125,46,0.35), transparent 60%),
    linear-gradient(120deg, var(--navy-deep), var(--navy));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 85% 80%, rgba(108,194,74,0.18), transparent 60%);
}
.cta .container { position: relative; z-index: 2; }
.cta h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 18px; }
.cta p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 34px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(47,125,46,0.28), transparent 60%),
    linear-gradient(140deg, var(--navy-deep), var(--navy));
  color: #fff;
  padding: 180px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 0%, #000, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 620px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { display: flex; gap: 10px; justify-content: center; align-items: center; margin-top: 22px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- About cards ---------- */
.mv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.mv-card.dark {
  background: linear-gradient(150deg, var(--navy), #16457f);
  color: #fff; border-color: transparent;
}
.mv-card.dark h3, .mv-card.dark p { color: #fff; }
.mv-card .mv-ic {
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--royal), var(--royal-light));
  color: #fff; margin-bottom: 22px;
}
.mv-card.dark .mv-ic { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--navy-deep); }
.mv-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.mv-card p { color: var(--grey); }

/* ---------- Services detailed list ---------- */
.svc-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
}
.svc-row:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.svc-row .n {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
  border-right: 1px solid var(--line);
}
.svc-row h4 { font-size: 1.2rem; margin-bottom: 8px; }
.svc-row p { color: var(--grey); font-size: 0.97rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 20px; }
.info-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.info-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.info-card .ic {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 13px; display: grid; place-items: center;
  background: var(--navy); color: var(--gold);
}
.info-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--grey); font-size: 0.96rem; }
.info-card a:hover { color: var(--royal); }

.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--charcoal);
  background: var(--bg-soft);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--royal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47,125,46,0.1);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--grey-light); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(47,125,46,0.08);
  border: 1px solid rgba(47,125,46,0.2);
  color: var(--navy);
  font-size: 0.95rem;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

/* ---------- Accordion (FAQ) ---------- */
.acc-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.acc-head {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-head);
  font-weight: 600; font-size: 1.05rem;
  color: var(--navy);
}
.acc-head .pm {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 8px; display: grid; place-items: center;
  background: var(--bg-soft); color: var(--royal);
  transition: transform 0.3s var(--ease), background 0.3s;
  font-size: 1.2rem;
}
.acc-item.open .acc-head .pm { transform: rotate(45deg); background: var(--royal); color: #fff; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc-body p { padding: 0 26px 24px; color: var(--grey); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 76px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer .brand-name { color: #fff; }
.footer .f-about { margin: 20px 0; font-size: 0.95rem; max-width: 320px; }
.footer h5 { color: #fff; font-size: 1rem; margin-bottom: 20px; font-family: var(--font-head); }
.footer ul li { margin-bottom: 12px; }
.footer ul li a { font-size: 0.94rem; transition: color 0.25s, padding-left 0.25s; }
.footer ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer .socials { display: flex; gap: 12px; margin-top: 20px; }
.footer .socials a {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  transition: all 0.3s var(--ease);
}
.footer .socials a:hover { background: var(--royal); transform: translateY(-3px); }
.f-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.94rem; }
.f-contact li svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}
.footer-bottom .fb-links { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--royal); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: all 0.35s var(--ease);
  z-index: 900; border: none; cursor: pointer;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ---------- Mobile nav panel ---------- */
.mobile-panel {
  position: fixed; inset: 0;
  background: var(--navy-deep);
  z-index: 999;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 28px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-panel.open { opacity: 1; visibility: visible; }
.mobile-panel a {
  color: #fff; font-family: var(--font-head);
  font-weight: 600; font-size: 1.5rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
}
.mobile-panel.open a { opacity: 1; transform: none; }
.mobile-panel.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-panel.open a:nth-child(2) { transition-delay: 0.16s; }
.mobile-panel.open a:nth-child(3) { transition-delay: 0.22s; }
.mobile-panel.open a:nth-child(4) { transition-delay: 0.28s; }
.mobile-panel a:hover { color: var(--gold); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stats-grid .s:nth-child(2)::after { display: none; }
  .stats-grid .s { border-right: none !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .section { padding: 74px 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-badge { right: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mv-card { padding: 32px 26px; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- Static site: no motion anywhere ---------- */
*, *::before, *::after { animation: none !important; }
html { scroll-behavior: auto !important; }
.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.floaty { animation: none !important; }
.to-top { transform: none !important; }
/* neutralize movement on hover (colors/shadows still allowed) */
.btn:hover, .btn:hover .arw,
.card:hover, .card:hover .ic, .card:hover::before,
.chip:hover, .value-card:hover, .svc-row:hover, .info-card:hover,
.mv-card:hover, .footer .socials a:hover, .to-top:hover,
.nav-links a:hover { transform: none !important; }
.footer ul li a:hover { padding-left: 0 !important; }
