/* ============================================================
   PT NOVIX WEB VOID — Official Website Stylesheet
   Fonts: Outfit (display) + Plus Jakarta Sans (body)
   Primary: #00B4D8 | Secondary: #CAF0F8 | Accent: #FF6B6B
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --primary:            #00B4D8;
  --primary-dark:       #0096b5;
  --primary-light:      rgba(0,180,216,0.12);
  --secondary:          #CAF0F8;
  --secondary-dim:      rgba(202,240,248,0.30);
  --accent:             #FF6B6B;
  --foreground:         #0b2030;
  --muted:              #6b8a9a;
  --border:             #daedf3;
  --bg:                 #ffffff;
  --font-display:       'Outfit', sans-serif;
  --font-body:          'Plus Jakarta Sans', sans-serif;
  --radius:             0.5rem;
  --radius-lg:          1rem;
  --radius-xl:          1.25rem;
  --radius-2xl:         1.5rem;
  --container:          1200px;
  --nav-h:              80px;
  --transition:         0.25s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--foreground);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ── Utility ────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 3rem; } }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  background: rgba(202,240,248,0.5);
  border: 1px solid rgba(0,180,216,0.2);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.dot-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(1.3); }
}

/* fade-in via IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 10px rgba(0,180,216,0.18);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,180,216,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition),
              border-color var(--transition), padding var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-icon {
  position: relative;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition);
}
.nav-logo-icon svg { color: var(--primary); transition: color var(--transition); }
.nav-logo-icon .logo-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  transition: background var(--transition);
}
.nav-logo:hover .nav-logo-icon svg { color: var(--accent); }
.nav-logo:hover .logo-dot          { background: var(--accent); }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--foreground);
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--primary); }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--foreground);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── Hero ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 0;
}
.hero-bg .grid-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hero-bg .blob-right {
  position: absolute;
  right: 0; top: 25%;
  width: min(800px, 60vw);
  height: min(800px, 60vw);
  color: var(--secondary);
  opacity: 0.45;
  transform: translate(30%, -20%);
}
.hero-bg .blob-left {
  position: absolute;
  left: 0; bottom: 0;
  width: min(600px, 50vw);
  height: min(600px, 50vw);
  color: var(--primary);
  opacity: 0.04;
  transform: translate(-25%, 25%);
}

/* Floating badges */
.hero-badge {
  display: none;
  position: absolute;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,180,216,0.22);
  color: var(--primary);
  padding: 0.45rem 1rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  z-index: 10;
  animation: floatBadge 0.7s ease forwards;
  opacity: 0;
}
@media (min-width: 768px) { .hero-badge { display: flex; } }

.hero-badge-1 { top: 26%; left: 10%; animation-delay: 0.5s; }
.hero-badge-2 { bottom: 34%; right: 10%; animation-delay: 0.7s; }
.hero-badge-3 { top: 34%; right: 20%; animation-delay: 0.9s; }

@keyframes floatBadge {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 99px;
  background: rgba(202,240,248,0.55);
  border: 1px solid rgba(0,180,216,0.22);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  animation: fadeUp 0.6s 0.12s ease forwards;
  opacity: 0;
}
.hero-h1 .highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  color: var(--primary);
}
.hero-h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 0;
  width: 100%; height: 0.9rem;
  background: var(--secondary);
  z-index: -1;
  transform: skewX(12deg);
  opacity: 0.65;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.22s ease forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  animation: fadeUp 0.6s 0.32s ease forwards;
  opacity: 0;
}
@media (min-width: 480px) {
  .hero-cta { flex-direction: row; }
}

/* Marquee */
.marquee-wrap {
  width: 100%;
  max-width: 48rem;
  padding-top: 2rem;
  animation: fadeUp 0.8s 0.6s ease forwards;
  opacity: 0;
}
.marquee-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.marquee-divider .line {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.1);
}
.marquee-divider span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-outer {
  position: relative;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  width: max-content;
  gap: 2rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
.marquee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.marquee-fade-l {
  position: absolute; top: 0; left: 0; bottom: 0; width: 4rem;
  background: linear-gradient(to right, #fff, transparent);
  z-index: 2; pointer-events: none;
}
.marquee-fade-r {
  position: absolute; top: 0; right: 0; bottom: 0; width: 4rem;
  background: linear-gradient(to left, #fff, transparent);
  z-index: 2; pointer-events: none;
}

/* ── About ───────────────────────────────────────────────────── */
#about {
  padding: 6rem 0 8rem;
  background: #fff;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.about-rule {
  width: 4.5rem; height: 4px;
  background: var(--primary);
  border-radius: 4px;
  margin-bottom: 2rem;
}
.about-text p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-text p:last-child { margin-bottom: 0; }

/* Geometric visual */
.about-visual {
  position: relative;
  height: 400px;
  border-radius: var(--radius-2xl);
  background: rgba(202,240,248,0.3);
  border: 1px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-visual .radial-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,180,216,0.1) 0%, transparent 70%);
}
.about-visual .dot-grid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.18;
}
.about-visual .corner {
  position: absolute;
  width: 30px; height: 30px;
  border-color: rgba(0,180,216,0.5);
  border-style: solid;
  border-width: 0;
}
.about-visual .corner.tl { top: 1rem; left: 1rem; border-top-width: 2px; border-left-width: 2px; }
.about-visual .corner.tr { top: 1rem; right: 1rem; border-top-width: 2px; border-right-width: 2px; }
.about-visual .corner.bl { bottom: 1rem; left: 1rem; border-bottom-width: 2px; border-left-width: 2px; }
.about-visual .corner.br { bottom: 1rem; right: 1rem; border-bottom-width: 2px; border-right-width: 2px; }

.geo-ring {
  position: relative;
  width: 15rem; height: 15rem;
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.geo-ring .line-h,
.geo-ring .line-v {
  position: absolute;
  background: rgba(0,180,216,0.18);
}
.geo-ring .line-h { width: 100%; height: 1px; transform: rotate(45deg); }
.geo-ring .line-v { width: 1px; height: 100%; transform: rotate(-45deg); }

.geo-ring-2 {
  position: absolute;
  width: 10rem; height: 10rem;
  border: 1px solid rgba(0,180,216,0.35);
  border-radius: 50%;
}
.geo-ring-3 {
  position: absolute;
  width: 6rem; height: 6rem;
  border: 2px dashed var(--primary);
  border-radius: 50%;
}
.geo-core {
  position: absolute;
  width: 3.5rem; height: 3.5rem;
  background: rgba(0,180,216,0.12);
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(0,180,216,0.4);
}
.geo-core-dot {
  width: 1rem; height: 1rem;
  background: var(--accent);
  border-radius: 50%;
}

/* Value pillar cards */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .pillar-grid { grid-template-columns: repeat(3, 1fr); } }

.pillar-card {
  background: rgba(202,240,248,0.28);
  border: 1px solid var(--secondary);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pillar-card:hover {
  box-shadow: 0 6px 24px rgba(0,180,216,0.1);
  transform: translateY(-3px);
}
.pillar-icon {
  width: 3.5rem; height: 3.5rem;
  background: #fff;
  border: 1px solid rgba(0,180,216,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.pillar-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.pillar-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.pillar-card p  { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* ── Services ────────────────────────────────────────────────── */
#services {
  padding: 6rem 0 8rem;
  background: rgba(202,240,248,0.18);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-header p { font-size: 1.05rem; color: var(--muted); line-height: 1.75; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: rgba(0,180,216,0.4);
  box-shadow: 0 8px 28px rgba(0,180,216,0.08);
}
.service-card:hover .service-icon {
  background: var(--primary);
}
.service-card:hover .service-icon svg { color: #fff; }
.service-icon {
  width: 3rem; height: 3rem;
  background: rgba(202,240,248,0.55);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.service-icon svg { width: 1.35rem; height: 1.35rem; color: var(--primary); transition: color var(--transition); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.75; flex: 1; }

/* How We Engage strip */
.engage-strip {
  margin-top: 5rem;
}
.engage-strip h3 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.engage-box {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-2xl);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
@media (min-width: 768px) {
  .engage-box { flex-direction: row; justify-content: space-between; padding: 3rem; gap: 1.5rem; }
}
.engage-box .glow {
  position: absolute;
  right: 0; top: 0;
  width: 16rem; height: 16rem;
  background: rgba(202,240,248,0.25);
  border-radius: 50%;
  filter: blur(40px);
  transform: translate(40%, -40%);
  z-index: 0;
}

.engage-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  flex: 1;
}
.engage-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--primary-light);
  border: 1px solid rgba(0,180,216,0.2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.engage-icon svg { width: 1.3rem; height: 1.3rem; color: var(--primary); }
.engage-step h4 { font-size: 1.05rem; font-weight: 700; }
.engage-step p  { font-size: 0.825rem; color: var(--muted); }
.engage-arrow {
  display: none;
  color: rgba(0,180,216,0.3);
}
@media (min-width: 768px) { .engage-arrow { display: block; flex-shrink: 0; } }
.engage-arrow svg { width: 1.4rem; height: 1.4rem; }

/* ── Approach ────────────────────────────────────────────────── */
#approach {
  padding: 6rem 0 8rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.approach-bg-shape {
  position: absolute;
  right: 0; top: 0;
  width: 33%;
  height: 100%;
  background: rgba(202,240,248,0.1);
  transform: skewX(-15deg) translateX(25%);
  z-index: 0;
}

.approach-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .approach-layout { flex-direction: row; gap: 5rem; }
}

.approach-sidebar { flex-shrink: 0; }
@media (min-width: 1024px) { .approach-sidebar { width: 30%; } }

.approach-sticky { position: sticky; top: 8rem; }
.approach-sidebar h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.approach-rule {
  width: 3rem; height: 4px;
  background: var(--accent);
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.approach-sidebar p { font-size: 1.05rem; color: var(--muted); line-height: 1.75; }

.approach-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  flex: 1;
}
@media (min-width: 640px) { .approach-pillars { grid-template-columns: 1fr 1fr; } }

.approach-pillar { display: flex; flex-direction: column; gap: 1rem; }
.approach-pillar-icon {
  position: relative;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  border: 1px solid rgba(0,180,216,0.25);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
}
.approach-pillar-icon svg { width: 1.4rem; height: 1.4rem; color: var(--primary); }
.approach-pillar-icon .accent-dot {
  display: none;
  position: absolute;
  top: -3px; right: -3px;
  width: 10px; height: 10px;
  background: var(--accent);
  border: 2px solid #fff;
  border-radius: 50%;
}
.approach-pillar:hover .accent-dot { display: block; }
.approach-pillar h3 { font-size: 1.1rem; font-weight: 600; }
.approach-pillar p  { font-size: 0.95rem; color: var(--muted); line-height: 1.75; }

/* Timeline */
.timeline-section {
  position: relative;
  z-index: 1;
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}
.timeline-header h2 { font-size: 1.9rem; font-weight: 700; margin-bottom: 0.75rem; }
.timeline-header p  { font-size: 1.05rem; color: var(--muted); }

.timeline-track {
  position: relative;
}
.timeline-connector {
  display: none;
  position: absolute;
  top: 1.5rem;
  left: 10%; right: 10%;
  height: 2px;
  border-top: 2px dashed rgba(0,180,216,0.28);
  z-index: 0;
}
@media (min-width: 768px) { .timeline-connector { display: block; } }

.timeline-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .timeline-steps { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.timeline-num {
  width: 3rem; height: 3rem;
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.timeline-step h3 { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.timeline-step p  { font-size: 0.825rem; color: var(--muted); line-height: 1.65; padding: 0 0.5rem; }

/* ── Contact ─────────────────────────────────────────────────── */
#contact {
  padding: 6rem 0 8rem;
  background: rgba(202,240,248,0.28);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 62rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* Contact info col */
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }

.contact-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.contact-item-icon {
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact-item-icon svg { width: 1.1rem; height: 1.1rem; color: var(--primary); }
.contact-item h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
.contact-item a, .contact-item address {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--primary); }

.next-steps {
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.next-steps h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1.75rem; }
.next-step-list { display: flex; flex-direction: column; gap: 1.5rem; }

.next-step { display: flex; gap: 1rem; align-items: flex-start; }
.next-step-icon {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 5px rgba(0,0,0,0.04);
}
.next-step-icon svg { width: 1rem; height: 1rem; color: var(--primary); }
.next-step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.next-step p  { font-size: 0.85rem; color: var(--muted); }

/* Contact form */
.contact-form-wrap {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 8rem; height: 8rem;
  background: rgba(202,240,248,0.35);
  border-radius: 0 0 0 100%;
  z-index: 0;
}
.contact-form-wrap h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}
.contact-form-wrap .subtext {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.form-fields { display: flex; flex-direction: column; gap: 1.25rem; position: relative; z-index: 1; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--foreground); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--foreground);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group textarea { height: 8rem; padding: 0.75rem 1rem; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.7; }

.select-wrap { position: relative; }
.select-wrap select { padding-right: 2.5rem; }
.select-wrap .chevron {
  position: absolute;
  right: 0.9rem; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
}
.select-wrap .chevron svg { width: 1rem; height: 1rem; }

.form-submit { margin-top: 0.5rem; }

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--foreground);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  z-index: 9999;
  max-width: 22rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--foreground);
  color: #fff;
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-col-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.footer-col-brand .brand-row svg { color: var(--primary); }
.footer-col-brand .brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.footer-col-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 18rem;
  margin-bottom: 0.75rem;
}
.footer-email {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: color var(--transition);
}
.footer-email:hover { color: #fff; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #fff;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li { font-size: 0.875rem; color: rgba(255,255,255,0.45); }
.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  padding-bottom: 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ── SVG Icon helpers ────────────────────────────────────────── */
svg.icon { display: inline-block; flex-shrink: 0; }
