:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-light: #ccfbf1;
  --navy: #0f172a;
  --slate: #334155;
  --sand: #f8fafc;
  --accent: #f59e0b;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'DM Sans',sans-serif; color:var(--slate); overflow-x:hidden; }
h1,h2,h3,h4 { font-family:'Playfair Display',serif; color:var(--navy); }

/* HERO */
.hero {
  min-height:100vh;
  background: linear-gradient(165deg, var(--navy) 0%, #1e3a5f 50%, var(--teal-dark) 100%);
  position:relative;
  overflow:hidden;
}
.hero::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(circle at 70% 30%, rgba(13,148,136,.25) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(245,158,11,.1) 0%, transparent 50%);
}
.hero-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:60px 60px;
}
.hero .container { position:relative; z-index:2; }
.hero h1 { font-size:clamp(2.4rem,5vw,4rem); color:#fff; line-height:1.15; }
.hero h1 span { color:var(--accent); }
.hero p.lead { color:rgba(255,255,255,.8); font-size:1.15rem; max-width:540px; }
.btn-cta {
  background:var(--accent); color:var(--navy); border:none;
  font-weight:700; padding:.85rem 2.2rem; border-radius:50px;
  font-size:1rem; transition:all .3s;
}
.btn-cta:hover { background:#d97706; color:#fff; transform:translateY(-2px); box-shadow:0 8px 25px rgba(245,158,11,.35); }
.btn-outline-light2 {
  border:2px solid rgba(255,255,255,.4); color:#fff; padding:.8rem 2rem; border-radius:50px;
  font-weight:500; transition:all .3s; background:transparent;
}
.btn-outline-light2:hover { background:rgba(255,255,255,.12); color:#fff; border-color:#fff; }

.hero-mockup {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  padding:2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.mockup-bar { display:flex; gap:6px; margin-bottom:1.2rem; }
.mockup-dot { width:12px; height:12px; border-radius:50%; }
.mockup-dot.r { background:#ef4444; } .mockup-dot.y { background:#eab308; } .mockup-dot.g { background:#22c55e; }
.mockup-row {
  background:rgba(255,255,255,.06); border-radius:10px; padding:.8rem 1rem;
  margin-bottom:.6rem; display:flex; align-items:center; gap:.8rem;
}
.mockup-avatar { width:36px; height:36px; border-radius:50%; }
.mockup-text { height:10px; border-radius:4px; background:rgba(255,255,255,.15); }
.mockup-badge { padding:4px 12px; border-radius:20px; font-size:.7rem; font-weight:600; }

/* NAV */
.navbar-cerassee {
  background:transparent; transition:background .3s;
  padding:1rem 0;
}
.navbar-cerassee.scrolled { background:rgba(15,23,42,.95); backdrop-filter:blur(12px); }
.navbar-cerassee .navbar-brand { color:#fff; font-family:'Playfair Display',serif; font-weight:800; font-size:1.4rem; }
.navbar-cerassee .nav-link { color:rgba(255,255,255,.75); font-weight:500; }
.navbar-cerassee .nav-link:hover { color:#fff; }

/* TRUST BAR */
.trust-bar { background:var(--navy); padding:1.5rem 0; }
.trust-item { color:rgba(255,255,255,.5); font-size:.85rem; font-weight:500; text-align:center; }
.trust-item i { font-size:1.6rem; display:block; margin-bottom:.3rem; color:var(--teal); }

/* FEATURES */
.features { padding:6rem 0; background:var(--sand); }
.feature-card {
  background:#fff; border-radius:16px; padding:2rem;
  border:1px solid #e2e8f0; transition:all .35s;
  height:100%;
}
.feature-card:hover { transform:translateY(-6px); box-shadow:0 20px 50px rgba(0,0,0,.08); border-color:var(--teal); }
.feature-icon {
  width:56px; height:56px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; margin-bottom:1.2rem;
}
.fi-teal { background:var(--teal-light); color:var(--teal); }
.fi-amber { background:#fef3c7; color:var(--accent); }
.fi-blue { background:#dbeafe; color:#2563eb; }
.fi-rose { background:#ffe4e6; color:#e11d48; }
.fi-purple { background:#ede9fe; color:#7c3aed; }
.fi-emerald { background:#d1fae5; color:#059669; }
.feature-card h4 { font-size:1.15rem; margin-bottom:.6rem; }
.feature-card p { color:#64748b; font-size:.92rem; line-height:1.6; }

/* STATS */
.stats-section {
  background:linear-gradient(135deg, var(--teal-dark), var(--navy));
  padding:5rem 0;
}
.stat-num { font-family:'Playfair Display',serif; font-size:3rem; font-weight:800; color:#fff; }
.stat-label { color:rgba(255,255,255,.7); font-size:.9rem; margin-top:.3rem; }

/* BENEFITS */
.benefits { padding:6rem 0; }
.benefit-check { color:var(--teal); font-size:1.3rem; flex-shrink:0; margin-top:3px; }
.benefit-item { display:flex; gap:1rem; margin-bottom:1.5rem; }
.benefit-item h5 { font-size:1rem; font-family:'DM Sans',sans-serif; font-weight:700; margin-bottom:.2rem; }
.benefit-item p { font-size:.88rem; color:#64748b; margin:0; }

/* PRICING */
.pricing { padding:6rem 0; background:var(--sand); }
.price-card {
  background:#fff; border-radius:20px; padding:2.5rem;
  border:2px solid #e2e8f0; text-align:center; transition:all .35s;
}
.price-card.featured { border-color:var(--teal); box-shadow:0 20px 60px rgba(13,148,136,.15); transform:scale(1.03); }
.price-amount { font-family:'Playfair Display',serif; font-size:2.8rem; color:var(--navy); font-weight:800; }
.price-period { color:#94a3b8; font-size:.85rem; }
.price-list { list-style:none; padding:0; text-align:left; }
.price-list li { padding:.55rem 0; border-bottom:1px solid #f1f5f9; font-size:.9rem; color:var(--slate); display:flex; gap:.6rem; align-items:flex-start; }
.price-list li i { color:var(--teal); margin-top:3px; }

/* TESTIMONIALS */
.testimonials { padding:6rem 0; }
.testimonial-card {
  background:#fff; border-radius:16px; padding:2rem;
  border:1px solid #e2e8f0; height:100%;
}
.testimonial-card .stars { color:var(--accent); margin-bottom:.8rem; }
.testimonial-card p { font-style:italic; color:#475569; font-size:.95rem; line-height:1.7; }
.testimonial-card .author { display:flex; align-items:center; gap:.8rem; margin-top:1.2rem; }
.testimonial-card .avatar-circle { width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; color:#fff; font-size:.9rem; }

/* CTA */
.cta-section {
  background:linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  padding:5rem 0; text-align:center; position:relative; overflow:hidden;
}
.cta-section::before {
  content:''; position:absolute; top:-50%; right:-20%; width:600px; height:600px;
  background:radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%);
  border-radius:50%;
}
.cta-section h2 { color:#fff; font-size:clamp(1.8rem,4vw,2.8rem); }
.cta-section p { color:rgba(255,255,255,.75); font-size:1.05rem; }

/* FOOTER */
footer { background:var(--navy); padding:3rem 0 1.5rem; color:rgba(255,255,255,.5); }
footer a { color:rgba(255,255,255,.6); text-decoration:none; transition:color .2s; }
footer a:hover { color:var(--accent); }
footer h6 { color:#fff; font-family:'DM Sans',sans-serif; font-weight:700; font-size:.85rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:1rem; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation:fadeUp .8s ease both; }
.delay-1 { animation-delay:.15s; } .delay-2 { animation-delay:.3s; } .delay-3 { animation-delay:.45s; }
.delay-4 { animation-delay:.6s; } .delay-5 { animation-delay:.75s; }

@media(max-width:768px) {
  .hero { min-height:auto; padding:7rem 0 4rem; }
  .price-card.featured { transform:none; }
  .stat-num { font-size:2.2rem; }
}