/* =====================================================================
   ORBIT TECH LAB — Design System · "Warm Sand & Teal"
   Mid-tone warm-neutral palette, ink text, teal + clay accents.
   Bold & playful motion: drifting gradient blobs, springy hovers.
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Surfaces (warm sand, mid-tone) */
  --sand: #EAE1CE;
  --sand-2: #E3D8C0;
  --sand-3: #DACEB2;
  --paper: #FBF6EC;

  /* Ink / text */
  --ink: #221F18;
  --ink-soft: #4E4838;
  --muted: #736B58;

  /* Accents */
  --teal: #0E7C72;
  --teal-2: #12A594;
  --clay: #C6552F;
  --amber: #E0954A;
  --white: #ffffff;

  --line: rgba(34, 31, 24, 0.12);
  --line-strong: rgba(34, 31, 24, 0.22);

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #0E7C72 0%, #14B8A6 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(14,124,114,0.14), rgba(224,149,74,0.14));
  --grad-warm: linear-gradient(115deg, #C6552F 0%, #E0954A 100%);
  --grad-text: linear-gradient(115deg, #C6552F 0%, #E0954A 100%);

  /* Glass / cards (frosted light on sand) */
  --glass: rgba(255, 251, 243, 0.60);
  --glass-2: rgba(255, 251, 243, 0.85);
  --glass-border: rgba(34, 31, 24, 0.10);

  /* Shadow / glow */
  --shadow-sm: 0 4px 16px rgba(34, 31, 24, 0.08);
  --shadow-md: 0 18px 44px rgba(34, 31, 24, 0.14);
  --glow-teal: 0 0 40px rgba(18, 165, 148, 0.28);
  --glow-clay: 0 0 40px rgba(198, 85, 47, 0.22);

  /* Type */
  --font-display: "Space Grotesk", "Manrope", system-ui, sans-serif;
  --font-body: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --radius: 20px;
  --radius-sm: 13px;
  --radius-lg: 30px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Legacy aliases (map old dark-theme token names to the warm palette) */
  --gray-100: #4E4838; --gray-300: #4E4838; --gray-400: #736B58; --gray-500: #736B58;
  --electric-blue: #0E7C72; --purple: #C6552F;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
::selection { background: rgba(14, 124, 114, 0.22); color: var(--ink); }

/* Drifting gradient blobs (bold & playful ambient motion) */
body::before, body::after {
  content: ""; position: fixed; border-radius: 50%;
  filter: blur(70px); opacity: 0.55; z-index: -2; pointer-events: none;
  will-change: transform;
}
body::before {
  width: 48vw; height: 48vw; top: -10vw; right: -8vw;
  background: radial-gradient(circle, #16b8a6 0%, transparent 66%);
  animation: blobA 22s ease-in-out infinite;
}
body::after {
  width: 44vw; height: 44vw; bottom: -12vw; left: -8vw;
  background: radial-gradient(circle, #e0954a 0%, transparent 66%);
  animation: blobB 27s ease-in-out infinite;
}
@keyframes blobA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-4vw, 5vw) scale(1.14); } }
@keyframes blobB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(5vw,-4vw) scale(1.1); } }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { color: var(--ink-soft); }
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-sm { padding: clamp(48px, 6vw, 80px) 0; }
.text-center { text-align: center; }
.grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:40px}
.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}

/* Section header */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal);
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(14, 124, 114, 0.28);
  background: rgba(14, 124, 114, 0.08);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: var(--glow-teal); }
.section-head { max-width: 680px; margin: 0 auto 56px; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 12px;
  transition: transform .3s var(--spring), box-shadow .3s var(--ease), background .25s, color .25s;
  white-space: nowrap; will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 10px 26px rgba(14, 124, 114, 0.32);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 38px rgba(18, 165, 148, 0.45); }
.btn-ghost {
  background: rgba(34, 31, 24, 0.03); color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { transform: translateY(-3px) scale(1.03); border-color: var(--teal); color: var(--teal); background: rgba(14,124,114,0.06); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s, border-color .35s, backdrop-filter .35s, box-shadow .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(234, 225, 206, 0.78);
  backdrop-filter: blur(18px) saturate(130%);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(34, 31, 24, 0.06);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.15rem; letter-spacing: -0.01em; }
.brand .logo-mark { width: 38px; height: 38px; flex: none; }
.brand small { display: block; font-size: 0.62rem; letter-spacing: 0.34em; color: var(--teal); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 9px; transition: color .25s, background .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: rgba(14, 124, 114, 0.08); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line-strong); background: rgba(255,251,243,0.6); color: var(--ink); align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile drawer — stylish, staggered, full-height */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: rgba(233, 224, 205, 0.97); backdrop-filter: blur(26px) saturate(130%);
  padding: 34px 26px 40px; transform: translateX(100%);
  transition: transform .5s var(--ease); overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
/* decorative blobs */
.mobile-menu::before { content:""; position:absolute; top:-30px; right:-30px; width:220px; height:220px; border-radius:50%; background: radial-gradient(circle,#14b8a6,transparent 70%); opacity:.22; filter: blur(28px); pointer-events:none; }
.mobile-menu::after { content:""; position:absolute; bottom:120px; left:-40px; width:200px; height:200px; border-radius:50%; background: radial-gradient(circle,#e0954a,transparent 70%); opacity:.20; filter: blur(30px); pointer-events:none; }

.mobile-menu a:not(.btn) {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 6px; font-family: var(--font-display); font-size: 1.55rem; font-weight: 600;
  color: var(--ink); border-bottom: 1px solid var(--line);
  transition: color .25s, padding .35s var(--spring);
}
.mobile-menu a:not(.btn)::after {
  content: ""; width: 22px; height: 22px; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230E7C72' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0; transform: translateX(-10px); transition: opacity .3s, transform .3s var(--spring);
}
.mobile-menu a:not(.btn):hover { color: var(--teal); padding-left: 16px; }
.mobile-menu a:not(.btn):hover::after { opacity: 1; transform: translateX(0); }

.mobile-menu .btn { position: relative; z-index: 1; margin-top: auto; font-size: 1.05rem; padding: 17px; }

/* staggered entrance when open */
.mobile-menu a { opacity: 0; transform: translateY(16px); }
.mobile-menu.open a { animation: mmIn .55s var(--spring) forwards; }
.mobile-menu.open a:nth-child(1) { animation-delay: .10s; }
.mobile-menu.open a:nth-child(2) { animation-delay: .16s; }
.mobile-menu.open a:nth-child(3) { animation-delay: .22s; }
.mobile-menu.open a:nth-child(4) { animation-delay: .28s; }
.mobile-menu.open a:nth-child(5) { animation-delay: .36s; }
@keyframes mmIn { to { opacity: 1; transform: none; } }

/* toggle → active state */
.nav-toggle[aria-expanded="true"] { background: var(--teal); color: #fff; border-color: var(--teal); transform: rotate(90deg); transition: transform .35s var(--spring), background .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--nav-h) + 60px) 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero-sub { font-size: 1.14rem; max-width: 560px; margin-bottom: 32px; color: var(--ink-soft); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; height: 460px; }

/* Orbit animation */
.orbit-wrap { position: absolute; inset: 0; display: grid; place-items: center; }
.orbit-core {
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--grad-brand); box-shadow: var(--glow-teal), var(--glow-clay);
  position: relative; z-index: 2; animation: pulse 4s ease-in-out infinite;
}
.orbit-core::after { content:""; position:absolute; inset:14px; border-radius:50%; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.7), transparent 55%); }
.orbit-ring { position: absolute; border: 1px solid var(--line-strong); border-radius: 50%; }
.orbit-ring.r1 { width: 260px; height: 260px; animation: spin 14s linear infinite; }
.orbit-ring.r2 { width: 380px; height: 380px; border-style: dashed; animation: spin 26s linear infinite reverse; }
.orbit-ring.r3 { width: 480px; height: 480px; animation: spin 40s linear infinite; }
.orbit-ring span { position: absolute; top: -6px; left: 50%; width: 13px; height: 13px; border-radius: 50%; background: var(--teal); box-shadow: var(--glow-teal); }
.orbit-ring.r2 span { background: var(--clay); box-shadow: var(--glow-clay); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{ transform: scale(1);} 50%{ transform: scale(1.06);} }

/* Floating glass card */
.float-card {
  position: absolute; background: var(--glass-2); border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px); border-radius: 14px; padding: 14px 16px;
  box-shadow: var(--shadow-md); font-family: var(--font-body); font-size: 0.82rem;
  animation: float 6s ease-in-out infinite;
}
.float-card.fc1 { top: 8%; right: 2%; animation-delay: 0s; }
.float-card.fc2 { bottom: 10%; left: -4%; animation-delay: 1.5s; }
.float-card .fc-row { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); }
.float-card .dot { width: 8px; height: 8px; border-radius: 50%; }
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-16px);} }

/* Hero stats */
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--line); }
.stat .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--ink); }
.stat .num .gradient-text, .stat .num span { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .label { font-size: 0.9rem; color: var(--muted); margin-top: 4px; }

/* ---------- Cards ---------- */
.card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 30px; backdrop-filter: blur(10px);
  transition: transform .35s var(--spring), border-color .35s, background .35s, box-shadow .35s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-7px) scale(1.012); border-color: rgba(14,124,114,0.3); background: var(--glass-2); box-shadow: var(--shadow-md); }
.card-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-brand-soft); border: 1px solid var(--glass-border);
  color: var(--teal); margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
/* Real product logos (app-icon style) */
.product-logo { width: 58px; height: 58px; border-radius: 14px; margin-bottom: 20px; display: block; box-shadow: 0 6px 20px rgba(34,31,24,.18); background: #fff; }
.product-card:hover .product-logo { box-shadow: 0 10px 26px rgba(18,165,148,.3); }
.card h3 { color: var(--ink); margin-bottom: 10px; }
.card p { font-size: 0.96rem; }
.card .tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.tag { font-size: 0.74rem; padding: 5px 11px; border-radius: 999px; background: rgba(34,31,24,0.05); border: 1px solid var(--line); color: var(--ink-soft); }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--teal); font-weight: 600; font-size: 0.9rem; }
.card-link svg { width: 16px; height: 16px; transition: transform .3s; }
.card:hover .card-link svg { transform: translateX(4px); }
.card::after { content:""; position:absolute; top:0; left:0; right:0; height:3px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.card:hover::after { transform: scaleX(1); }

/* Product card badges */
.product-card { position: relative; }
.badge-soon { position: absolute; top: 18px; right: 18px; font-size: 0.68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: rgba(198,85,47,.12); border: 1px solid rgba(198,85,47,.4); color: var(--clay); }
.badge-live { position: absolute; top: 18px; right: 18px; font-size: 0.68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: rgba(14,124,114,.12); border: 1px solid rgba(14,124,114,.42); color: var(--teal); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; white-space: nowrap; opacity: .8; transition: opacity .3s, color .3s; }
.marquee-item:hover { opacity: 1; color: var(--teal); }
.marquee-item svg { width: 24px; height: 24px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Tech chips */
.tech-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tech-chip { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 12px; background: var(--glass); border: 1px solid var(--glass-border); color: var(--ink); font-weight: 500; font-size: 0.92rem; transition: transform .3s var(--spring), border-color .3s, color .3s, box-shadow .3s; }
.tech-chip:hover { transform: translateY(-4px) scale(1.05); border-color: var(--teal); color: var(--teal); box-shadow: var(--glow-teal); }
.tech-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grad-brand); }

/* ---------- Process timeline ---------- */
.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline::before { content:""; position:absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--teal), var(--clay), transparent); }
.tl-item { position: relative; padding: 0 0 34px 76px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-num { position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--teal); background: var(--glass-2); border: 1px solid var(--glass-border); backdrop-filter: blur(8px); z-index: 2; }
.tl-item h3 { margin-bottom: 6px; }
.tl-item p { font-size: 0.96rem; }

/* ---------- Testimonials ---------- */
.testi-card { display: flex; flex-direction: column; gap: 18px; height: 100%; }
.stars { display: flex; gap: 3px; color: #E0954A; }
.stars svg { width: 18px; height: 18px; }
.testi-quote { color: var(--ink); font-size: 1rem; line-height: 1.7; }
.testi-person { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; flex: none; }
.testi-person strong { color: var(--ink); font-size: 0.95rem; display: block; }
.testi-person span { font-size: 0.82rem; color: var(--muted); }

/* ---------- Pricing ---------- */
.price-card { display: flex; flex-direction: column; height: 100%; }
.price-card.featured { border-color: rgba(14,124,114,.5); background: linear-gradient(180deg, rgba(14,124,114,.08), var(--glass)); box-shadow: var(--glow-teal); }
.price-card .plan { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.2rem; }
.price-card .price { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; color: var(--ink); margin: 12px 0 2px; }
.price-card .price small { font-size: 0.95rem; color: var(--muted); font-weight: 400; }
.price-list { margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.price-list li { display: flex; gap: 10px; font-size: 0.94rem; color: var(--ink-soft); }
.price-list svg { width: 18px; height: 18px; color: var(--teal); flex: none; margin-top: 2px; }
.pop-tag { align-self: flex-start; font-size: 0.7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: var(--grad-brand); color: #fff; margin-bottom: 14px; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--glass-border); border-radius: var(--radius-sm); margin-bottom: 14px; background: var(--glass); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: rgba(14,124,114,.4); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; font-family: var(--font-display); font-weight: 500; color: var(--ink); font-size: 1.02rem; }
.faq-q .chev { flex: none; transition: transform .35s var(--spring); color: var(--teal); }
.faq-item.open .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 22px 22px; color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--glass); color: var(--ink-soft); font-weight: 500; font-size: 0.9rem; transition: all .3s; }
.filter-btn:hover { color: var(--teal); border-color: var(--teal); }
.filter-btn.active { background: var(--grad-brand); color: #fff; border-color: transparent; }
.portfolio-card { padding: 0; overflow: hidden; }
.portfolio-thumb { height: 190px; background: var(--grad-brand-soft); position: relative; display: grid; place-items: center; }
.portfolio-thumb .ph-icon { width: 60px; height: 60px; color: var(--teal); opacity: .55; }
.portfolio-body { padding: 24px 26px 28px; }
.portfolio-body .cat { font-size: 0.76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); font-weight: 600; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 500; color: var(--ink); }
.field input, .field select, .field textarea {
  background: rgba(255, 251, 243, 0.7); border: 1px solid var(--line-strong); border-radius: 11px;
  padding: 13px 15px; color: var(--ink); font-size: 0.95rem; transition: border-color .25s, background .25s, box-shadow .25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px rgba(14,124,114,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23736B58' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-note { font-size: 0.85rem; color: var(--muted); }

/* Contact info list */
.info-list { display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; gap: 15px; align-items: flex-start; }
.info-item .ii-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-brand-soft); border: 1px solid var(--glass-border); display: grid; place-items: center; color: var(--teal); flex: none; }
.info-item .ii-icon svg { width: 20px; height: 20px; }
.info-item strong { color: var(--ink); display: block; font-size: 0.95rem; }
.info-item a, .info-item span { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); text-align: center; overflow: hidden; border: 1px solid rgba(14,124,114,.25); background: linear-gradient(135deg, rgba(14,124,114,.10), rgba(224,149,74,.12)); }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 80% -10%, rgba(18,165,148,.18), transparent 60%); z-index:-1; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; font-size: 1.06rem; color: var(--ink-soft); }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Page hero ---------- */
.page-hero { padding: calc(var(--nav-h) + 70px) 0 60px; text-align: center; position: relative; }
.page-hero p { max-width: 620px; margin: 20px auto 0; font-size: 1.1rem; color: var(--ink-soft); }
.breadcrumb { display: inline-flex; gap: 8px; font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--teal); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 72px 0 32px; background: linear-gradient(180deg, transparent, rgba(227,216,192,.6)); position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer-brand p { margin: 18px 0 22px; font-size: 0.95rem; max-width: 320px; color: var(--ink-soft); }
.footer h4 { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; padding: 6px 0; font-size: 0.93rem; color: var(--ink-soft); transition: color .25s; }
.footer-col a:hover { color: var(--teal); }
.newsletter { display: flex; gap: 8px; margin-top: 14px; }
.newsletter input { flex: 1; background: rgba(255,251,243,0.7); border: 1px solid var(--line-strong); border-radius: 10px; padding: 11px 14px; color: var(--ink); font-size: 0.9rem; }
.newsletter input:focus { outline: none; border-color: var(--teal); }
.newsletter button { flex: none; padding: 11px 16px; border-radius: 10px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; }
.newsletter button svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer-bottom p { font-size: 0.87rem; color: var(--muted); }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: var(--glass); border: 1px solid var(--glass-border); display: grid; place-items: center; color: var(--ink-soft); transition: all .3s var(--spring); }
.socials a:hover { color: var(--teal); border-color: var(--teal); transform: translateY(-3px) scale(1.08); }
.socials svg { width: 18px; height: 18px; }

/* ---------- Values / checks ---------- */
.check-item { display: flex; gap: 12px; align-items: flex-start; }
.check-item .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--grad-brand-soft); border:1px solid var(--glass-border); display: grid; place-items: center; color: var(--teal); flex: none; }
.check-item .ck svg { width: 15px; height: 15px; }
.check-item strong { color: var(--ink); }

/* Industry pills */
.industry-item { display: flex; align-items: center; gap: 13px; padding: 18px 20px; border-radius: var(--radius-sm); background: var(--glass); border: 1px solid var(--glass-border); transition: all .3s var(--spring); }
.industry-item:hover { transform: translateY(-4px) scale(1.02); border-color: var(--teal); background: var(--glass-2); }
.industry-item .ind-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--grad-brand-soft); display: grid; place-items: center; color: var(--teal); flex: none; }
.industry-item .ind-icon svg { width: 20px; height: 20px; }
.industry-item strong { color: var(--ink); font-family: var(--font-display); font-weight: 500; font-size: 0.98rem; }

/* Blog cards */
.blog-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.blog-thumb { height: 180px; background: var(--grad-brand-soft); position: relative; display:grid; place-items:center; }
.blog-thumb svg { width: 52px; height: 52px; color: var(--teal); opacity: .5; }
.blog-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 12px; font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.blog-meta .cat { color: var(--teal); font-weight: 600; }
.blog-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-body p { font-size: 0.92rem; flex: 1; }

/* Careers */
.job-card { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.job-card .job-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.job-card h3 { font-size: 1.2rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--spring); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* Mouse glow */
.mouse-glow { position: fixed; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(18,165,148,.12), transparent 65%); pointer-events: none; z-index: -1; transform: translate(-50%, -50%); transition: opacity .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 360px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .section { padding: 60px 0; }
  .job-card { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  body::before, body::after { animation: none; }
}
