/* =============================================================
   CARTA EXPRESS — Design System
   Aesthetic: Maritime editorial · Fraunces + DM Sans
   Palette: Ocean deep / Terracotta / Warm sand
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,300;1,9..144,600;1,9..144,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ocean:        #0C2340;
  --ocean-2:      #153354;
  --ocean-deep:   #071729;
  --terra:        #C84B2A;
  --terra-light:  #E06642;
  --sand:         #FBF7F0;
  --sand-2:       #F5EFE5;
  --bg:           #FFFFFF;
  --text:         #141B2D;
  --muted:        #6B7A99;
  --border:       #E8E3DA;
  --gold:         #C9963A;
  --gold-light:   #E0B65A;

  --shadow-sm:    0 1px 3px rgba(12,35,64,.07);
  --shadow-md:    0 8px 28px rgba(12,35,64,.10);
  --shadow-lg:    0 28px 64px rgba(12,35,64,.16);
  --shadow-terra: 0 6px 20px rgba(200,75,42,.30);

  --radius:       12px;
  --radius-lg:    20px;
  --radius-pill:  999px;
  --container:    1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ocean);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* ============ LAYOUT ============ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-sand { background: var(--sand); }
.section-ocean { background: var(--ocean); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-header p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; line-height: 1.7; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--terra); flex-shrink: 0; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: .98rem;
  transition: all .25s ease;
  white-space: nowrap; border: 2px solid transparent;
}
.btn-terra { background: var(--terra); color: #fff; box-shadow: var(--shadow-terra); }
.btn-terra:hover { background: var(--terra-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,75,42,.4); }
.btn-ocean { background: var(--ocean); color: #fff; }
.btn-ocean:hover { background: var(--ocean-2); transform: translateY(-2px); }
.btn-outline { border-color: var(--ocean); color: var(--ocean); }
.btn-outline:hover { background: var(--ocean); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ocean); border-color: #fff; }
.btn-ghost { color: var(--ocean); padding: 10px 16px; }
.btn-ghost:hover { color: var(--terra); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ============ ANNOUNCE ============ */
.announce {
  background: var(--terra);
  color: #fff;
  font-size: .85rem; text-align: center;
  padding: 11px 16px; letter-spacing: .02em;
}
.announce strong { font-weight: 700; }
.announce a { color: #fff; text-decoration: underline; margin-left: 8px; }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }

.logo {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.4rem;
  color: var(--ocean); letter-spacing: -.02em;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--ocean);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.logo-icon::after {
  content: 'CE';
  color: var(--terra);
  font-family: 'Fraunces', serif;
  font-weight: 800; font-size: 1rem; letter-spacing: -.04em;
}
.logo small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .62rem; font-weight: 500;
  color: var(--muted); letter-spacing: .16em; text-transform: uppercase;
}

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a { padding: 9px 14px; font-weight: 500; font-size: .94rem; border-radius: 8px; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--terra); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger span { width: 22px; height: 2px; background: var(--ocean); position: relative; transition: .25s; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; width: 22px; height: 2px;
  background: var(--ocean); left: 0; transition: .25s;
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: rotate(45deg); }
.burger.open span::after { top: 0; transform: rotate(-45deg); }
.nav-mobile { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--ocean);
  overflow: hidden;
  padding: 80px 0 0;
  min-height: 90vh;
  display: flex; flex-direction: column; justify-content: flex-end;
}

/* Decorative wave pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,75,42,.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(21,51,84,.8) 0%, transparent 60%);
}

/* Big decorative letter */
.hero::after {
  content: 'C';
  position: absolute; right: -2%; top: -10%;
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: 52vw; line-height: 1;
  color: rgba(255,255,255,.025);
  pointer-events: none; user-select: none;
  letter-spacing: -.06em;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 48px; align-items: flex-end;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.85);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-badge .dot { width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { color: var(--terra-light); font-style: italic; }
.hero-lead { font-size: 1.15rem; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 540px; line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1);
}
.trust-item { display: flex; align-items: center; gap: 9px; font-size: .88rem; color: rgba(255,255,255,.8); }
.trust-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--terra); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-dot svg { width: 11px; height: 11px; }

/* Hero card */
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  top: 40px;
}
.hero-card-top {
  background: var(--sand);
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.hero-card-top .tag {
  display: inline-block;
  background: var(--terra); color: #fff;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.hero-card-top h3 { font-size: 1.2rem; margin-bottom: 4px; }
.hero-card-top p { color: var(--muted); font-size: .9rem; }
.hero-card-body { padding: 24px 28px; }
.price-big { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 20px; }
.price-big .amount { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 700; color: var(--ocean); line-height: 1; }
.price-big .unit { color: var(--muted); font-size: .9rem; }
.card-features { list-style: none; margin-bottom: 22px; }
.card-features li {
  padding: 9px 0; display: flex; align-items: center; gap: 12px;
  font-size: .93rem; color: var(--text); border-bottom: 1px solid var(--border);
}
.card-features li:last-child { border-bottom: none; }
.card-features li::before {
  content: ''; flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C84B2A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.hero-card-body .btn { width: 100%; }

/* Decorative wave divider */
.wave-divider {
  display: block; width: 100%; overflow: hidden; line-height: 0;
  background: var(--ocean);
}
.wave-divider svg { display: block; width: 100%; }

/* ============ STATS ============ */
.stats { background: var(--sand); padding: 60px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-box { text-align: center; padding: 28px 16px; }
.stat-num {
  font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 700;
  color: var(--ocean); line-height: 1;
}
.stat-num span { color: var(--terra); }
.stat-label { font-size: .88rem; color: var(--muted); margin-top: 8px; }

/* Divider */
.divider { width: 60px; height: 3px; background: var(--terra); margin: 0 auto 16px; border-radius: 2px; }

/* ============ SERVICES ============ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all .3s;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card:hover { border-color: var(--terra); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--sand);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.4rem;
  color: var(--ocean);
  margin-bottom: 22px;
  transition: background .25s;
}
.service-card:hover .service-icon { background: var(--terra); color: #fff; }
.service-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.service-card .desc { color: var(--muted); font-size: .94rem; margin-bottom: 20px; line-height: 1.65; }
.service-meta { font-size: .8rem; font-weight: 600; color: var(--terra); letter-spacing: .08em; text-transform: uppercase; }
.service-arrow {
  position: absolute; bottom: 28px; right: 28px;
  width: 36px; height: 36px;
  border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .25s;
}
.service-card:hover .service-arrow { background: var(--terra); border-color: var(--terra); color: #fff; }

/* ============ WHY US ============ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-side h2 { margin-bottom: 16px; }
.why-side > p { color: var(--muted); margin-bottom: 36px; }
.why-list { display: grid; gap: 24px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-num {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--ocean); color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.1rem;
}
.why-item h4 { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--ocean); margin-bottom: 5px; }
.why-item p { color: var(--muted); font-size: .93rem; }

.why-visual {
  position: relative;
  background: var(--ocean);
  border-radius: 24px;
  padding: 48px 44px;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,75,42,.3) 0%, transparent 65%);
  border-radius: 50%;
}
.why-visual h3 { color: #fff; margin-bottom: 8px; font-size: 1.5rem; position: relative; z-index: 1; }
.why-visual .sub { color: rgba(255,255,255,.65); font-size: .93rem; margin-bottom: 28px; position: relative; z-index: 1; }
.why-badges { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.why-badge {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 14px 18px;
  backdrop-filter: blur(4px);
}
.why-badge .check {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--terra); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.why-badge .check svg { width: 16px; height: 16px; color: #fff; }
.why-badge span { font-size: .92rem; color: rgba(255,255,255,.9); }
.why-badge strong { color: #fff; }

/* ============ PROCESS ============ */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.process-step {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: border-color .25s, box-shadow .25s;
}
.process-step:hover { border-color: var(--terra); box-shadow: var(--shadow-md); }
.step-num {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: 3.5rem; line-height: 1;
  color: var(--sand-2); margin-bottom: 16px;
  transition: color .25s;
}
.process-step:hover .step-num { color: rgba(200,75,42,.15); }
.process-step h4 { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--ocean); margin-bottom: 8px; }
.process-step p { font-size: .9rem; color: var(--muted); }
.step-arrow {
  position: absolute; top: 50%; right: -24px;
  transform: translateY(-50%);
  width: 48px; height: 48px; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  color: var(--border); font-size: 1.4rem;
}
.process-step:last-child .step-arrow { display: none; }

/* ============ PRICING ============ */
.pricing { background: var(--ocean); }
.pricing h2 { color: #fff; }
.pricing .section-header p { color: rgba(255,255,255,.68); }
.pricing .eyebrow { color: var(--terra-light); }
.pricing .eyebrow::before { background: var(--terra-light); }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px; display: flex; flex-direction: column;
  transition: all .3s;
}
.price-card:hover { border-color: rgba(200,75,42,.5); transform: translateY(-6px); }
.price-card.featured {
  background: #fff; color: var(--text);
  position: relative; transform: scale(1.04);
  box-shadow: 0 32px 64px rgba(0,0,0,.3);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.price-card .pop {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--terra); color: #fff;
  padding: 5px 18px; border-radius: var(--radius-pill);
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.price-card .pname { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; color: #fff; }
.price-card.featured .pname { color: var(--ocean); }
.price-card .pdesc { font-size: .9rem; color: rgba(255,255,255,.68); margin-bottom: 24px; }
.price-card.featured .pdesc { color: var(--muted); }
.price-card .pamount-wrap { display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px; }
.price-card .pamount { font-family: 'Fraunces', serif; font-size: 3.2rem; font-weight: 700; line-height: 1; color: #fff; }
.price-card.featured .pamount { color: var(--ocean); }
.price-card .punit { font-size: .9rem; color: rgba(255,255,255,.6); }
.price-card.featured .punit { color: var(--muted); }
.price-card ul { list-style: none; flex: 1; margin-bottom: 28px; }
.price-card ul li { padding: 9px 0; font-size: .92rem; display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.08); }
.price-card.featured ul li { color: var(--text); border-bottom-color: var(--border); }
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before { content: '✓'; color: var(--terra-light); font-weight: 700; flex-shrink: 0; }
.price-card.featured ul li::before { color: var(--terra); }
.price-card .btn { width: 100%; }
.pricing-note { text-align: center; margin-top: 36px; font-size: .87rem; color: rgba(255,255,255,.5); }

/* ============ TESTIMONIALS ============ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: box-shadow .25s;
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.stars { color: #F59E0B; font-size: 1.05rem; margin-bottom: 16px; letter-spacing: .04em; }
.testi-card blockquote {
  font-size: .98rem; line-height: 1.72; color: var(--text);
  flex: 1; margin-bottom: 24px;
  font-style: italic;
  font-family: 'Fraunces', serif; font-weight: 300;
}
.testi-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ocean); color: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .9rem; flex-shrink: 0;
}
.testi-author .name { font-weight: 600; font-size: .94rem; color: var(--ocean); }
.testi-author .role { font-size: .82rem; color: var(--muted); }

/* ============ FAQ ============ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-weight: 600; font-size: 1.02rem;
  color: var(--ocean); text-align: left; transition: color .2s;
  font-family: 'DM Sans', sans-serif;
}
.faq-q:hover { color: var(--terra); }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--sand); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--ocean);
  transition: transform .25s, background .2s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--terra); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 0 22px; color: var(--muted); font-size: .97rem; line-height: 1.75; }

/* ============ CTA BANNER ============ */
.cta-band {
  background: var(--terra);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.cta-band::after {
  content: '';
  position: absolute; left: -80px; bottom: -80px;
  width: 350px; height: 350px;
  background: rgba(0,0,0,.06);
  border-radius: 50%;
}
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 { color: #fff; margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 1.08rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-panel {
  background: var(--ocean); border-radius: var(--radius-lg);
  padding: 44px; color: #fff;
  position: relative; overflow: hidden;
}
.contact-panel::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(200,75,42,.25) 0%, transparent 65%);
  border-radius: 50%;
}
.contact-panel h3 { color: #fff; font-size: 1.7rem; margin-bottom: 10px; position: relative; z-index: 1; }
.contact-panel > p { color: rgba(255,255,255,.7); margin-bottom: 32px; position: relative; z-index: 1; }
.contact-list { display: grid; gap: 20px; position: relative; z-index: 1; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: rgba(200,75,42,.18); border: 1px solid rgba(200,75,42,.3);
  color: var(--terra-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item .lbl { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--terra-light); margin-bottom: 4px; }
.contact-item .val { font-size: .98rem; color: #fff; line-height: 1.5; }
.contact-item a.val:hover { color: var(--terra-light); }
.contact-socials {
  display: flex; gap: 10px; margin-top: 28px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  position: relative; z-index: 1;
}
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-btn:hover { background: var(--terra); color: #fff; }

.contact-form {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 44px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form .sub { color: var(--muted); font-size: .94rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .84rem; font-weight: 600; color: var(--ocean); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: .95rem; color: var(--text); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(200,75,42,.14);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0; font-size: .84rem; color: var(--muted); }
.form-check input { margin-top: 3px; flex-shrink: 0; accent-color: var(--terra); }
.form-check a { color: var(--ocean); text-decoration: underline; }
.contact-form .btn { width: 100%; }
.form-msg { margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-size: .9rem; display: none; }
.form-msg.success { background: #ECFDF5; color: #065F46; display: block; }
.form-msg.error { background: #FEF2F2; color: #991B1B; display: block; }

/* ============ PAGE HERO (sub-pages) ============ */
.page-hero {
  background: var(--ocean);
  color: #fff; padding: 60px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 30%, rgba(200,75,42,.18) 0%, transparent 60%);
}
.page-hero h1 { color: #fff; position: relative; z-index: 1; }
.page-hero h1 em { color: var(--terra-light); font-style: italic; }
.page-hero .sub { color: rgba(255,255,255,.73); font-size: 1.05rem; margin-top: 14px; max-width: 620px; position: relative; z-index: 1; }

.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: .84rem; color: rgba(255,255,255,.55);
  margin-bottom: 24px; position: relative; z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--terra-light); }

.page-hero-grid {
  display: grid; grid-template-columns: 1.3fr .7fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-meta { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 28px; }
.meta-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  font-size: .87rem; color: rgba(255,255,255,.85);
}
.meta-chip svg { color: var(--terra-light); }

.side-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg);
}
.side-card .lbl { font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
.side-card .price { font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 700; color: var(--ocean); line-height: 1; margin-bottom: 4px; }
.side-card .price-sub { font-size: .88rem; color: var(--muted); margin-bottom: 22px; }
.quick-list { list-style: none; margin-bottom: 22px; }
.quick-list li { padding: 9px 0; display: flex; align-items: center; gap: 10px; font-size: .92rem; border-bottom: 1px solid var(--border); }
.quick-list li:last-child { border-bottom: none; }
.quick-list li svg { color: var(--terra); flex-shrink: 0; }
.side-card .btn { width: 100%; }

/* ============ BENTO ============ */
.bento { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.bento-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px;
  transition: all .25s;
}
.bento-card:hover { border-color: var(--terra); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bento-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--sand); color: var(--terra);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.bento-card h4 { font-family: 'DM Sans', sans-serif; font-size: 1.02rem; font-weight: 600; color: var(--ocean); margin-bottom: 8px; }
.bento-card p { font-size: .9rem; color: var(--muted); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.split-text h2 { margin-bottom: 16px; }
.split-text p { color: var(--muted); margin-bottom: 14px; }
.feature-list { margin-top: 28px; display: grid; gap: 18px; }
.feature-list .fi { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--sand); color: var(--terra);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feature-list h4 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--ocean); margin-bottom: 4px; }
.feature-list p { font-size: .9rem; color: var(--muted); margin: 0; }
.split-panel {
  background: var(--sand); border-radius: var(--radius-lg);
  padding: 40px; border: 1.5px solid var(--border);
}
.program-list { list-style: none; display: grid; gap: 12px; margin-top: 18px; }
.program-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; background: #fff;
  border-radius: 10px; border: 1px solid var(--border); font-size: .93rem;
}
.program-list li .num {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--ocean); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .76rem; font-weight: 700;
}

/* Timeline */
.timeline-box { background: var(--sand); border-radius: var(--radius-lg); padding: 48px; border: 1.5px solid var(--border); }
.timeline { display: grid; gap: 0; position: relative; }
.t-step { display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 16px 0; position: relative; }
.t-step:not(:last-child)::after { content: ''; position: absolute; left: 35px; top: 60px; bottom: -6px; width: 2px; background: var(--border); }
.t-circle {
  width: 72px; height: 72px;
  border: 2px solid var(--terra); border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.4rem; color: var(--ocean);
  position: relative; z-index: 1;
}
.t-content h4 { font-family: 'DM Sans', sans-serif; font-size: 1.03rem; font-weight: 600; color: var(--ocean); margin-bottom: 5px; padding-top: 20px; }
.t-content p { color: var(--muted); font-size: .92rem; }

/* ============ LEGAL PAGES ============ */
.legal-hero { background: var(--ocean); color: #fff; padding: 72px 0; position: relative; overflow: hidden; }
.legal-hero::before { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,75,42,.18) 0%, transparent 65%); border-radius: 50%; }
.legal-hero h1 { color: #fff; position: relative; z-index: 1; }

.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 64px; padding: 80px 0; }
.legal-toc { position: sticky; top: 100px; align-self: start; border-left: 2px solid var(--border); padding-left: 20px; }
.legal-toc h4 { font-family: 'DM Sans', sans-serif; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-bottom: 14px; }
.legal-toc ul { list-style: none; }
.legal-toc li { margin-bottom: 10px; }
.legal-toc a { font-size: .91rem; color: var(--muted); transition: color .2s; }
.legal-toc a:hover { color: var(--terra); }

.legal-content { max-width: 760px; line-height: 1.72; }
.legal-content h2 { font-size: clamp(1.4rem,2.4vw,1.8rem); margin-top: 48px; margin-bottom: 14px; }
.legal-content h3 { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 600; margin-top: 28px; margin-bottom: 10px; color: var(--ocean); }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { padding-left: 22px; margin: 8px 0 14px; }
.legal-content ul li { margin-bottom: 8px; }
.legal-content strong { color: var(--ocean); }
.legal-content a { color: var(--ocean); text-decoration: underline; text-decoration-color: var(--terra); text-underline-offset: 3px; }
.legal-content a:hover { color: var(--terra); }

.last-update { display: inline-block; background: var(--sand); padding: 6px 14px; border-radius: var(--radius-pill); font-size: .82rem; color: var(--muted); margin-bottom: 24px; }
.lede { font-size: 1.05rem; color: var(--muted); margin-bottom: 8px; }
.callout { background: var(--sand); border-left: 3px solid var(--terra); border-radius: 8px; padding: 18px 22px; margin: 18px 0; font-size: .94rem; }
.callout strong { display: block; color: var(--ocean); margin-bottom: 6px; }
.info-card { background: var(--sand); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 32px; margin: 20px 0; }
.info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.info-grid .lbl { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--terra); margin-bottom: 4px; }
.info-grid .val { font-size: .95rem; color: var(--ocean); font-weight: 500; }
.data-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .93rem; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.data-table th { background: var(--sand); text-align: left; padding: 13px 18px; font-weight: 600; color: var(--ocean); font-size: .87rem; border-bottom: 1.5px solid var(--border); }
.data-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }
.rights-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin: 20px 0; }
.right-card { background: var(--sand); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.right-card h4 { font-family: 'DM Sans', sans-serif; font-size: .94rem; font-weight: 600; color: var(--ocean); margin-bottom: 6px; }
.right-card p { font-size: .87rem; color: var(--muted); margin: 0; line-height: 1.55; }
.contact-box { background: var(--ocean); color: #fff; border-radius: var(--radius-lg); padding: 30px; margin-top: 22px; }
.contact-box h3 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.contact-box p { color: rgba(255,255,255,.85); margin-bottom: 8px; }
.contact-box a { color: var(--terra-light); font-weight: 600; }

/* ============ FOOTER ============ */
.footer { background: var(--ocean-deep); color: rgba(255,255,255,.65); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer h4 { color: #fff; font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-about p { font-size: .9rem; line-height: 1.72; margin: 14px 0 18px; }
.footer-about .logo { color: #fff; }
.footer-about .logo small { color: rgba(255,255,255,.45); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: .9rem; transition: color .2s; }
.footer ul a:hover { color: var(--terra-light); }
.footer-legal { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: .8rem; }
.footer-legal .li { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal .li span { color: rgba(255,255,255,.45); }
.footer-legal a { color: rgba(255,255,255,.65); }
.footer-legal a:hover { color: var(--terra-light); }

/* ============ WHATSAPP ============ */
.whats-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px; background: #25D366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4); z-index: 90;
  transition: transform .25s;
  animation: waPulse 2s infinite;
}
.whats-float:hover { transform: scale(1.08); }
@keyframes waPulse {
  0%   { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner, .why-grid, .contact-grid, .page-hero-grid, .split { grid-template-columns: 1fr; gap: 48px; }
  .services-grid, .price-grid, .testi-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .step-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .price-card.featured { transform: none; }
  .bento { grid-template-columns: repeat(2,1fr); }
  .legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; border-left: none; border-top: 2px solid var(--border); padding: 22px 0 0; }
  .rights-grid, .info-grid { grid-template-columns: 1fr; }
  .hero-card { top: 0; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-mobile {
    display: block; position: fixed; top: 78px; left: 0; right: 0;
    background: #fff; padding: 20px 28px 28px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    transform: translateY(-160%); transition: transform .3s;
  }
  .nav-mobile.open { transform: translateY(0); }
  .nav-mobile a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); font-weight: 500; }
  .nav-mobile a:last-child { border-bottom: none; }
  .nav-mobile .btn { margin-top: 16px; width: 100%; }
  .services-grid, .price-grid, .testi-grid, .footer-grid, .bento { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-panel, .contact-form { padding: 32px 24px; }
  .hero-card-top, .hero-card-body { padding-left: 24px; padding-right: 24px; }
  .timeline-box, .split-panel, .side-card { padding: 28px 22px; }
  .t-step { grid-template-columns: 56px 1fr; gap: 16px; }
  .t-circle { width: 56px; height: 56px; font-size: 1.1rem; }
  .t-step:not(:last-child)::after { left: 27px; top: 46px; }
  .t-content h4 { padding-top: 12px; }
  .data-table { font-size: .85rem; }
  .data-table th, .data-table td { padding: 10px 12px; }
  .legal-layout { padding: 48px 0; }
}
