.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #0B2B3D;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TOKENS ── */
:root {
  --navy: #0B2B3D;
  --navy-mid: #163d54;
  --navy-light: #1e5272;
  --teal: #6BB8C4;
  --teal-dark: #3d8fa0;
  --teal-mid: #52a5b5;
  --teal-light: #9fd4de;
  --teal-pale: #e4f5f8;
  --teal-ultra: #f0fafc;
  --white: #ffffff;
  --off-white: #f6fbfc;
  --surface: #f0f8fa;
  --gray: #475569;
  --gray-mid: #64748b;
  --gray-light: #e2e8f0;
  --amber-dark: #92400e;
  --amber-bg: #fef3c7;
  --amber-border: #fde68a;
  --gold: #f59e0b;
  --radius: 16px;
  --shadow-sm: 0 2px 12px rgba(11,43,61,.08);
  --shadow: 0 8px 32px rgba(11,43,61,.11);
  --shadow-lg: 0 20px 60px rgba(11,43,61,.15);
}

/* ── UTILITY ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--surface); }
.section--dark { background: var(--navy); color: var(--white); }
.eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal-dark);
  background: var(--teal-pale); padding: 4px 12px; border-radius: 100px;
  margin-bottom: 12px;
}
.section--dark .eyebrow { background: rgba(107,184,196,.18); color: var(--teal-light); }
h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; color: var(--navy); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: var(--gray); }
.section--dark p { color: rgba(255,255,255,.78); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; text-decoration: none; border: none;
  transition: all .2s ease; white-space: nowrap;
}
.btn--primary { background: var(--teal); color: var(--navy); box-shadow: 0 4px 18px rgba(107,184,196,.38); }
.btn--primary:hover { background: var(--teal-mid); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(107,184,196,.48); }
.btn--secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--secondary:hover { background: rgba(11,43,61,.06); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--teal-pale); transform: translateY(-2px); }
.btn--lg { padding: 18px 36px; font-size: 1.1rem; }
.btn--xl { padding: 20px 44px; font-size: 1.2rem; }

/* ── URGENCY BAR ── */
.urgency-bar {
  background: var(--teal); color: var(--navy);
  text-align: center; padding: 10px 24px;
  font-size: .875rem; font-weight: 700;
  position: relative; z-index: 100;
}
.urgency-bar span { margin: 0 8px; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 99;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,184,196,.22);
  box-shadow: 0 2px 20px rgba(11,43,61,.07);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1140px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 38px; height: 38px; }
.logo-text { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.logo-text span { color: var(--teal-dark); display: block; font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 500; }
nav { display: flex; align-items: center; gap: 8px; }
nav a { color: var(--gray); text-decoration: none; font-size: .875rem; padding: 6px 12px; border-radius: 8px; transition: color .2s; }
nav a:hover { color: var(--teal-dark); }

/* ── HERO ── */
.hero {
  background: linear-gradient(150deg, #ddf0f4 0%, #eaf6f9 45%, #f5fcfd 100%);
  padding: 80px 0 0; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(107,184,196,.18) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(107,184,196,.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(61,143,160,.1); border: 1px solid rgba(61,143,160,.25);
  color: var(--teal-dark); font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--navy); margin-bottom: 20px; line-height: 1.1; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.1rem; color: var(--gray); margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 16px; padding-top: 16px; border-top: 1px solid var(--gray-light); }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--gray-mid); }
.hero-trust-item svg { color: var(--teal-dark); flex-shrink: 0; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: flex-end; padding-top: 20px; }
.hero-card {
  background: var(--white); border: 1px solid rgba(107,184,196,.25);
  border-radius: 20px 20px 0 0; padding: 32px;
  box-shadow: var(--shadow-lg); width: 100%;
}
.hero-card-badge {
  background: var(--teal); color: var(--navy);
  font-size: .75rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
  display: inline-block; margin-bottom: 20px;
}
.hero-card h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 8px; }
.hero-card p { color: var(--gray); font-size: .875rem; margin-bottom: 24px; }
.hero-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hero-checklist li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #334155; }
.hero-checklist li::before {
  content: ''; width: 20px; height: 20px; flex-shrink: 0;
  background: var(--teal); border-radius: 50%;
  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='%230B2B3D' 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-price-note {
  display: flex; align-items: center; gap: 8px;
  background: var(--teal-pale); border-radius: 10px;
  padding: 12px 16px; margin-top: 20px;
  font-size: .85rem; color: var(--teal-dark); font-weight: 600;
}
.deadline-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--amber-bg); border: 1px solid var(--amber-border);
  color: var(--amber-dark); font-size: .8rem; font-weight: 700;
  padding: 5px 12px; border-radius: 100px; margin-top: 12px;
}

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-value { font-size: 2.2rem; font-weight: 800; color: var(--teal); font-family: 'DM Sans', sans-serif; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.72); margin-top: 6px; letter-spacing: .02em; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── PERSONA SELECTOR ── */
.persona-section { padding: 64px 0 0; }
.persona-section h2 { text-align: center; margin-bottom: 12px; }
.persona-section > .container > p { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.persona-tabs { display: flex; gap: 12px; justify-content: center; margin-bottom: 0; flex-wrap: wrap; }
.persona-tab {
  padding: 12px 24px; border-radius: 12px 12px 0 0;
  font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 600;
  cursor: pointer; border: none; transition: all .2s;
  background: var(--gray-light); color: var(--gray-mid);
}
.persona-tab.active { background: var(--teal-dark); color: var(--white); }
.persona-tab:hover:not(.active) { background: #d1e9ed; color: var(--navy); }
.persona-content-wrap {
  background: var(--teal-ultra); border: 1px solid rgba(107,184,196,.28);
  border-top: none; border-radius: 0 20px 20px 20px; padding: 48px;
}
.persona-content { display: none; }
.persona-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.persona-label {
  display: inline-block; background: rgba(61,143,160,.12);
  color: var(--teal-dark); font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.persona-headline { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.persona-headline em { font-style: normal; color: var(--teal-dark); }
.persona-body { color: #334155; font-size: 1rem; margin-bottom: 28px; line-height: 1.7; }
.persona-pains { margin-bottom: 28px; }
.persona-pains-title { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 12px; }
.persona-pain-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.persona-pain-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: #334155;
  padding: 12px 16px; background: var(--white);
  border-radius: 10px; border-left: 3px solid var(--teal); box-shadow: var(--shadow-sm);
}
.persona-solutions { display: flex; flex-direction: column; gap: 16px; }
.persona-solution-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 14px; padding: 20px; box-shadow: var(--shadow-sm); transition: box-shadow .2s;
}
.persona-solution-card:hover { box-shadow: var(--shadow); }
.persona-solution-icon {
  width: 38px; height: 38px; background: var(--teal-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; font-size: 1.1rem;
}
.persona-solution-card h4 { color: var(--navy); margin-bottom: 6px; font-size: 1rem; }
.persona-solution-card p { color: var(--gray); font-size: .875rem; }

/* ── DIFFERENTIALS ── */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.diff-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius); padding: 28px;
  transition: all .25s; box-shadow: var(--shadow-sm);
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-light); }
.diff-icon {
  width: 52px; height: 52px; background: var(--teal-pale);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.diff-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.diff-card p { font-size: .875rem; }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; margin-top: 48px; }
.steps::before {
  content: ''; position: absolute; top: 30px;
  left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 2px; background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%); z-index: 0;
}
.step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-number {
  width: 60px; height: 60px; background: var(--teal);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: var(--navy);
  margin: 0 auto 20px; position: relative; box-shadow: 0 0 0 8px var(--white);
}
.section--alt .step-number { box-shadow: 0 0 0 8px var(--surface); }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .875rem; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: box-shadow .25s;
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.testimonial-text { font-size: .9375rem; color: #334155; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--navy-mid); flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.author-role { font-size: .8rem; color: var(--gray-mid); }

/* ── FAQ ── */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-light); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 18px 24px; display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy);
  cursor: pointer; text-align: left; gap: 16px;
}
.faq-question:hover { color: var(--teal-dark); }
.faq-chevron {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--teal-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s; color: var(--teal-dark); font-size: .7rem;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--teal); color: var(--navy); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 24px; font-size: .9375rem; color: var(--gray); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ── FINAL CTA ── */
.cta-section {
  background: linear-gradient(135deg, #0a2739 0%, var(--navy-mid) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,184,196,.13) 0%, transparent 70%); pointer-events: none;
}
.cta-section h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.75rem); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.cta-trust { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 28px; font-size: .85rem; color: rgba(255,255,255,.52); }
.cta-trust span { display: flex; align-items: center; gap: 6px; }

/* ── FOOTER ── */
footer { background: #071e2b; border-top: 1px solid rgba(107,184,196,.12); padding: 40px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand p { color: rgba(255,255,255,.52); font-size: .875rem; margin-top: 12px; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: .9rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.52); text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,.36); font-size: .8rem; }

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 1000;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none; transition: all .2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }
}
@media (max-width: 720px) {
  .persona-content.active { grid-template-columns: 1fr; }
  .persona-content-wrap { padding: 28px 20px; border-radius: 0 12px 12px 12px; }
  .diff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  nav a:not(:last-child) { display: none; }
  .section { padding: 56px 0; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp .6s ease forwards; }
.animate-delay-1 { animation-delay: .1s; }
.animate-delay-2 { animation-delay: .2s; }
.animate-delay-3 { animation-delay: .3s; }/* End custom CSS */