:root {
  --teal-frost: #F0FDFA;
  --teal-mist: #CCFBF1;
  --teal-light: #99F6E4;
  --teal: #0F766E;
  --teal-bright: #14B8A6;
  --teal-deep: #115E59;
  --teal-pale: #CCFBF1;
  --amber: #0F766E;
  --amber-bright: #14B8A6;
  --amber-pale: #F0FDFA;
  --amber-deep: #0D6B64;
  --midnight: #1A1A1A;
  --charcoal: #2D2D2D;
  --stone: #6B7280;
  --stone-light: #9CA3AF;
  --warm-white: #FAFFFE;
  --coral: #F97066;
  --green: #22C55E;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-soft: 0 1px 3px rgba(15,118,110,.04), 0 8px 24px rgba(15,118,110,.03);
  --shadow-medium: 0 4px 12px rgba(15,118,110,.05), 0 16px 40px rgba(15,118,110,.04);
  --shadow-glow: 0 0 0 1px rgba(15,118,110,.12), 0 8px 30px rgba(15,118,110,.08);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; overflow-x:clip; }
body { font-family:var(--font-body); color:var(--midnight); background:#111114; line-height:1.6; overflow-x:clip; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes scaleIn { from{opacity:0;transform:scale(.92)} to{opacity:1;transform:scale(1)} }
@keyframes pulse { 0%,100%{transform:scale(.9);opacity:.6} 50%{transform:scale(1);opacity:1} }
@keyframes shimmer-line { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
.reveal { opacity:0; transform:translateY(30px); transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s } .reveal-delay-2 { transition-delay:.2s } .reveal-delay-3 { transition-delay:.3s } .reveal-delay-4 { transition-delay:.4s }
.rd1{transition-delay:.1s}
.rd2{transition-delay:.2s}
.rd3{transition-delay:.3s}
.rd4{transition-delay:.4s}

/* ========================= HEADER STYLES ========================= */
/* ========================= PAGE STYLES =========================== */
/* ===== SECTION PRIMITIVES ===== */
.section-label { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600; text-transform:uppercase; letter-spacing:.1em; color:var(--teal); margin-bottom:16px; }
.section-label::before { content:''; width:24px; height:2px; background:var(--teal-bright); border-radius:2px; }
.section-title { font-family:var(--font-display); font-size:clamp(30px,4vw,52px); font-weight:700; line-height:1.15; letter-spacing:-.02em; margin-bottom:16px; }
.section-title em { font-style:italic; color:var(--teal-bright); }
.section-sub { font-size:17px; color:rgba(255,255,255,.45); max-width:560px; line-height:1.7; }

/* ===== HERO — Dark ===== */
.hero { position:relative; z-index:1; padding:90px 0 100px; background:#111114; overflow:visible; }
.hero::before { content:''; position:absolute; inset:0; background:
  radial-gradient(ellipse 70% 50% at 10% 15%, rgba(20,184,166,.03) 0%, transparent 55%),
  radial-gradient(ellipse 50% 40% at 90% 80%, rgba(139,92,246,.02) 0%, transparent 45%),
  radial-gradient(ellipse 40% 50% at 50% 0%, rgba(20,184,166,.02) 0%, transparent 50%);
  pointer-events:none; }
.hero::after { content:''; position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.02'/%3E%3C/svg%3E");
  pointer-events:none; opacity:.5; }
.hero-grid-pattern {
  position:absolute; inset:0; pointer-events:none; opacity:.02;
  background-image:linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}
@keyframes orb-float {
  0%,100% { transform:translate(0,0) scale(1); }
  25% { transform:translate(30px,-20px) scale(1.05); }
  50% { transform:translate(-20px,30px) scale(.95); }
  75% { transform:translate(15px,15px) scale(1.02); }
}
.hero-orb { position:absolute; border-radius:50%; pointer-events:none; filter:blur(80px); }
.hero-orb-1 { width:700px; height:600px; top:-250px; right:-150px; background:rgba(20,184,166,.04); animation:orb-float 20s ease-in-out infinite; }
.hero-orb-2 { width:500px; height:500px; bottom:-200px; left:-120px; background:rgba(139,92,246,.03); animation:orb-float 16s ease-in-out infinite reverse; }
.hero-orb-3 { width:500px; height:500px; top:30%; left:20%; background:rgba(245,180,50,.02); animation:orb-float 24s ease-in-out infinite 4s; filter:blur(120px); }
.hero-bleed-glow{position:absolute;left:50%;pointer-events:none;z-index:1}
.hero-bleed-top{top:-60px;width:700px;height:160px;margin-left:-350px;background:radial-gradient(ellipse 100% 100% at 50% 100%,rgba(20,184,166,.06) 0%,rgba(139,92,246,.03) 40%,transparent 70%);filter:blur(40px)}
.hero-bleed-bottom{bottom:-140px;width:1000px;height:350px;margin-left:-500px;background:radial-gradient(ellipse 50% 60% at 55% 30%,rgba(20,184,166,.08) 0%,transparent 70%),radial-gradient(ellipse 45% 55% at 45% 35%,rgba(139,92,246,.04) 0%,transparent 70%);filter:blur(50px)}
.hero-content { position:relative; z-index:2; text-align:center; max-width:800px; margin:0 auto; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; padding:6px 16px 6px 8px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.12); border-radius:50px; font-size:13px; font-weight:600; color:rgba(255,255,255,.7); margin-bottom:24px; animation:fadeUp .8s var(--ease-smooth) both; }
.hero-badge .dot { width:8px; height:8px; border-radius:50%; background:var(--teal-bright); animation:pulse 2s ease infinite; }
.hero h1 { font-family:var(--font-display); font-size:clamp(36px,4.5vw,56px); font-weight:700; line-height:1.1; letter-spacing:-.03em; color:#fff; animation:fadeUp .8s var(--ease-smooth) .1s both; }
.hero h1 em {
  font-style:italic; position:relative; display:inline;
  color:var(--teal-bright);
  -webkit-text-fill-color:var(--teal-bright);
}
@keyframes gradient-flow{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}
.hero-sub { font-size:18px; color:rgba(255,255,255,.5); max-width:600px; margin:20px auto 0; line-height:1.7; animation:fadeUp .8s var(--ease-smooth) .2s both; }
.hero-actions { margin-top:36px; animation:fadeUp .8s var(--ease-smooth) .3s both; }
.hero-note { font-size:13px; color:rgba(255,255,255,.3); margin-top:16px; display:flex; align-items:center; gap:6px; justify-content:center; animation:fadeUp .8s var(--ease-smooth) .4s both; }
.hero-note svg { flex-shrink:0; stroke:var(--teal-bright); opacity:.7; }

/* ===== CEO QUOTE — light ===== */
.quote-section { padding:100px 0; background:#F4FBFA; position:relative; overflow:hidden; }
.quote-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 50% 60% at 50% 50%,rgba(20,184,166,.06) 0%,transparent 60%); pointer-events:none; }
.quote-section::after { content:''; position:absolute; inset:0; pointer-events:none;
  background-image:linear-gradient(30deg,rgba(15,118,110,.04) 1px,transparent 1px),linear-gradient(150deg,rgba(15,118,110,.04) 1px,transparent 1px); background-size:40px 24px; }

.quote-layout {
  display:flex; align-items:stretch; gap:0; max-width:1000px; margin:0 auto;
  border-radius:28px; overflow:hidden; position:relative; z-index:2;
  box-shadow:0 12px 48px rgba(15,118,110,.08),0 4px 16px rgba(0,0,0,.04),0 1px 0 rgba(255,255,255,.9) inset;
  border:1px solid rgba(15,118,110,.1);
}
.quote-photo {
  flex:0 0 320px; position:relative; overflow:hidden;
}
.quote-photo img {
  width:100%; height:100%; object-fit:cover; display:block;
}
.quote-glass {
  position:relative; z-index:2; flex:1;
  padding:48px 48px 40px;
  background:rgba(255,255,255,.85);
  overflow:hidden;
  display:flex; flex-direction:column; justify-content:center;
}
@keyframes quoteShimmer{0%{left:-60%;opacity:0}20%{opacity:1}80%{opacity:1}100%{left:120%;opacity:0}}
.quote-shimmer{
  position:absolute;top:-50%;left:-60%;width:45%;height:250%;
  background:linear-gradient(105deg,transparent 38%,rgba(20,184,166,.04) 46%,rgba(20,184,166,.08) 50%,rgba(20,184,166,.04) 54%,transparent 62%);
  pointer-events:none;z-index:1;animation:quoteShimmer 12s ease-in-out infinite;
}
.quote-mark { font-family:var(--font-display); font-size:64px; line-height:.8; color:rgba(15,118,110,.15); position:relative; z-index:2; }
.quote-glass blockquote {
  font-family:var(--font-body); font-size:18px; font-weight:600; font-style:italic;
  color:var(--midnight); line-height:1.7; margin-bottom:28px; position:relative; z-index:2;
}
.quote-author { display:flex; align-items:center; gap:16px; position:relative; z-index:2; }
.quote-name { font-size:18px; font-weight:700; color:var(--midnight); font-style:italic; }
.quote-role { font-size:13px; color:var(--stone); font-style:italic; }

/* ===== OUR STORY — light timeline ===== */
.story-section { padding:120px 0; background:#fff; position:relative; overflow:hidden; }
.story-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 50% 60% at 20% 50%,rgba(20,184,166,.05) 0%,transparent 60%); pointer-events:none; }
.story-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; position:relative; z-index:2; }
.story-text .section-label { color:var(--teal); background:rgba(20,184,166,.1); padding:4px 12px; border-radius:6px; }
.story-text .section-title { color:var(--midnight); }
.story-text .section-sub { color:rgba(17,17,20,.55); max-width:none; }
.story-text p { font-size:16px; color:rgba(17,17,20,.5); line-height:1.8; margin-top:20px; }
.story-img { width:100%; max-height:540px; border-radius:24px; object-fit:cover; box-shadow:0 10px 30px rgba(15,23,42,.06) }

/* ===== WHAT WE DO — light cards ===== */
.wwd-section { padding:100px 0; background:#F4FBFA; position:relative; overflow:hidden; }
.wwd-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 50% at 50% 0%,rgba(20,184,166,.06) 0%,transparent 60%); pointer-events:none; }
.wwd-section::after { content:''; position:absolute; inset:0; pointer-events:none;
  background-image:linear-gradient(30deg,rgba(15,118,110,.04) 1px,transparent 1px),linear-gradient(150deg,rgba(15,118,110,.04) 1px,transparent 1px); background-size:40px 24px; }
.wwd-header { display:flex; align-items:center; justify-content:space-between; gap:32px; margin-bottom:64px; position:relative; z-index:2; }
.wwd-header .section-title { color:var(--midnight); margin-bottom:8px; }
.wwd-header .section-sub { color:rgba(17,17,20,.55); }
.wwd-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; position:relative; z-index:2; }
.wwd-card {
  display:flex; align-items:center; gap:24px; padding:24px 28px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:20px;
  transition:all .4s var(--ease-smooth);
  position:relative; overflow:hidden;
  box-shadow:0 4px 16px rgba(15,23,42,.04);
}
.wwd-card:hover { border-color:rgba(20,184,166,.25); transform:translateY(-4px); box-shadow:0 16px 40px rgba(15,23,42,.08); }
.wwd-icon {
  flex-shrink:0; width:64px; height:64px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,rgba(20,184,166,.15),rgba(20,184,166,.06));
  border:1px solid rgba(20,184,166,.18);
  transition:all .4s var(--ease-smooth);
}
.wwd-card:hover .wwd-icon {
  background:linear-gradient(135deg,var(--teal-bright),var(--teal));
  border-color:var(--teal-bright);
  box-shadow:0 8px 24px rgba(20,184,166,.25);
}
.wwd-icon svg { width:30px; height:30px; stroke:var(--teal); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; transition:stroke .4s; }
.wwd-card:hover .wwd-icon svg { stroke:#fff; }
.wwd-card p { font-size:16px; color:rgba(17,17,20,.6); line-height:1.6; }

/* ===== STATS BAR ===== */
.logos-bar{position:relative;z-index:5;padding:48px 0;background:rgba(17,17,20,.25);border:none;overflow:hidden}
.logos-bar::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent 10%,rgba(255,255,255,.07) 30%,rgba(255,255,255,.12) 50%,rgba(255,255,255,.07) 70%,transparent 90%);pointer-events:none;z-index:2}
@keyframes lbFloat1{0%,100%{transform:translate(0,0);opacity:.5}50%{transform:translate(15px,-8px);opacity:.9}}
@keyframes lbFloat2{0%,100%{transform:translate(0,0);opacity:.4}50%{transform:translate(-12px,6px);opacity:.8}}
@keyframes lbFloat3{0%,100%{transform:translate(0,0);opacity:.3}50%{transform:translate(8px,10px);opacity:.7}}
.lb-light{position:absolute;border-radius:50%;pointer-events:none;z-index:0;filter:blur(40px)}
.lb-light-1{width:120px;height:80px;top:20%;left:12%;background:rgba(20,184,166,.08);animation:lbFloat1 6s ease-in-out infinite}
.lb-light-2{width:100px;height:70px;top:30%;right:18%;background:rgba(139,92,246,.06);animation:lbFloat2 8s ease-in-out infinite 1s}
.lb-light-3{width:80px;height:60px;bottom:15%;left:35%;background:rgba(245,180,50,.05);animation:lbFloat3 7s ease-in-out infinite 2s}
.lb-light-4{width:90px;height:65px;top:15%;right:40%;background:rgba(59,130,246,.06);animation:lbFloat1 9s ease-in-out infinite 3s}
.lb-light-5{width:70px;height:55px;bottom:20%;right:10%;background:rgba(236,72,153,.05);animation:lbFloat2 7.5s ease-in-out infinite 1.5s}
.logos-bar p{position:relative;z-index:1;text-align:center;font-size:13px;font-weight:500;color:rgba(255,255,255,.3);text-transform:uppercase;letter-spacing:.08em;margin-bottom:24px}
.logos-row{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;gap:48px;flex-wrap:wrap;opacity:.3}
.logos-row img{height:28px;width:auto;opacity:.45;filter:brightness(10) grayscale(1);vertical-align:middle}
.logos-row img:nth-child(2){position:relative;top:6px}

.stats-counter{position:relative;z-index:10;padding:60px 0;background:#111114;border-bottom:1px solid rgba(255,255,255,.04)}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;text-align:center}
.stat-item-value{font-family:var(--font-display);font-size:clamp(32px,4vw,48px);font-weight:700;color:#fff;line-height:1}
.stat-item-value span{color:var(--teal-bright)}
.stat-item-label{font-size:14px;color:rgba(255,255,255,.4);margin-top:6px}


/* ===== TEAM CULTURE — lifestyle gallery ===== */
.culture-section { padding:100px 0; background:#fff; position:relative; overflow:hidden; }
.culture-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 50% 50% at 70% 30%,rgba(20,184,166,.04) 0%,transparent 60%); pointer-events:none; }
.culture-header { text-align:center; margin-bottom:64px; position:relative; z-index:2; }
.culture-header .section-label { justify-content:center; }
.culture-header .section-title { color:var(--midnight); }
.culture-sub { color:rgba(17,17,20,.55); margin:0 auto; max-width:560px; }
.culture-grid {
  display:grid;
  grid-template-columns:1.2fr 1fr;
  grid-template-rows:auto auto;
  gap:24px; position:relative; z-index:2;
}
.culture-img {
  position:relative; border-radius:20px; overflow:hidden;
  box-shadow:0 8px 32px rgba(15,23,42,.08);
  transition:all .5s var(--ease-smooth);
}
.culture-img:hover { transform:translateY(-4px); box-shadow:0 20px 50px rgba(15,23,42,.12); }
.culture-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s var(--ease-smooth); }
.culture-img:hover img { transform:scale(1.03); }
.culture-img-wide {
  grid-column:1 / 2;
  grid-row:1 / 3;
  min-height:420px;
}

/* ===== TRUST & SECURITY ===== */
.trust-section{padding:100px 0;background:#111114;color:#fff;position:relative;overflow:hidden}
.trust-section::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 50% at 50% 0%,rgba(20,184,166,.06) 0%,transparent 60%);pointer-events:none}
.trust-header{text-align:center;margin-bottom:56px;position:relative;z-index:2}
.trust-header .section-label{color:var(--teal-bright);justify-content:center}
.trust-header .section-title{color:#fff}
.trust-header .section-sub{color:rgba(255,255,255,.45);margin:0 auto}
.trust-creds{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px;margin-bottom:64px;position:relative;z-index:2}
.trust-cred{text-align:center;padding:32px 20px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:20px;transition:all .4s var(--ease-smooth);position:relative;overflow:hidden}
.trust-cred::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.08) 30%,rgba(255,255,255,.12) 50%,rgba(255,255,255,.08) 70%,transparent)}
.trust-cred:hover{background:rgba(255,255,255,.05);border-color:rgba(20,184,166,.15);transform:translateY(-3px)}
.trust-cred-icon{font-size:36px;margin-bottom:14px;display:block}
.trust-cred h4{font-family:var(--font-display);font-size:16px;font-weight:700;color:#fff;margin-bottom:6px}
.trust-cred p{font-size:13px;color:rgba(255,255,255,.4);line-height:1.6}
.trust-guarantee{display:flex;align-items:center;gap:24px;max-width:800px;margin:0 auto;padding:28px 36px;background:linear-gradient(135deg,rgba(20,184,166,.08) 0%,rgba(20,184,166,.03) 100%);border:1px solid rgba(20,184,166,.15);border-radius:20px;position:relative;z-index:2}
.trust-guarantee-shield{flex-shrink:0;width:64px;height:64px;border-radius:50%;background:linear-gradient(135deg,rgba(20,184,166,.15),rgba(20,184,166,.05));border:1.5px solid rgba(20,184,166,.25);display:flex;align-items:center;justify-content:center}
.trust-guarantee-text h4{font-family:var(--font-display);font-size:20px;font-weight:700;color:#fff;margin-bottom:4px}
.trust-guarantee-text p{font-size:14px;color:rgba(255,255,255,.45);line-height:1.6}

/* ========================= /PAGE STYLES ========================== */

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .hero-content{max-width:600px}
  .story-grid{grid-template-columns:1fr;gap:48px}
  .wwd-grid{grid-template-columns:1fr}
  .wwd-header{flex-direction:column;align-items:flex-start;gap:24px}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .hero-note{font-size:11px}
  .lp-cta-note{font-size:11px}
  .footer-cta-note{font-size:11px}
  .cta-note{font-size:11px}
  .hero{padding:90px 0 60px} .hero h1{font-size:32px} .hero-sub{font-size:16px}
  .hero-actions{flex-direction:column} .hero-actions .btn-primary{width:100%;justify-content:center;white-space:nowrap;font-size:15px;padding:16px 24px}
  .quote-layout{flex-direction:column;border-radius:20px}
  .quote-photo{flex:0 0 auto;max-height:320px}
  .quote-glass{padding:32px 24px}
  .quote-glass blockquote{font-size:17px}
  .quote-mark{font-size:56px}
  .culture-grid{grid-template-columns:1fr;grid-template-rows:auto}
  .culture-img-wide{grid-column:auto;grid-row:auto;min-height:280px}
  .trust-creds{grid-template-columns:1fr}
  .trust-guarantee{flex-direction:column;text-align:center;padding:24px}
}
@media(max-width:640px){
  .stats-grid{grid-template-columns:1fr 1fr}
}
/* ========================= /FOOTER STYLES ======================== */