:root {
  --black: #0a0a0a;
  --off-black: #111111;
  --dark: #1a1a1a;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --light-muted: #9b9b9b;
  --border: #e8e8e8;
  --border-light: #f0f0f0;
  --bg: #fafafa;
  --white: #ffffff;
  --teal: #1F9E92;
  --teal-dark: #197f75;
  --teal-light: rgba(31, 158, 146, 0.08);
  --teal-border: rgba(31, 158, 146, 0.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 20px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
}

a { text-decoration: none; color: inherit; }

/* top bar */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  z-index: 200;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

@keyframes drawLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.container { max-width: 1040px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV ── */
.nav-main {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky; top: 2px; z-index: 100;
  backdrop-filter: blur(20px);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 28px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500;
  color: var(--muted); transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: #115b55; color: white !important;
  padding: 0.55rem 1.4rem; border-radius: 6px;
  font-weight: 600 !important; font-size: 0.8rem !important;
  transition: all 0.2s !important; letter-spacing: 0.02em;
}
.btn-nav:hover { background: var(--teal) !important; color: white !important; }

.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--muted); border-radius: 2px;
  transition: all 0.3s; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.99);
  backdrop-filter: blur(20px); z-index: 150;
  flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--text);
  letter-spacing: -0.03em; padding: 0.5rem 2rem;
  transition: color 0.2s; text-align: center;
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-cta {
  margin-top: 1.5rem; background: var(--black); color: white !important;
  font-size: 1rem !important; font-weight: 600 !important;
  padding: 0.9rem 2.5rem !important; border-radius: 8px;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem !important;
}

/* ── HERO ── */
.hero {
  padding: 6rem 0 5rem;
  position: relative; overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.hero-layout {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.hero-left { display: flex; flex-direction: column; gap: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal);
  border: 1px solid var(--teal-border);
  background: var(--teal-light);
  padding: 0.3rem 0.85rem; border-radius: 3px;
  margin-bottom: 2rem; width: fit-content;
}
.hero-badge::before { content: '🇹🇹'; font-size: 0.85rem; }

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600; /* down from 800 */
  letter-spacing: -0.035em;
  color: var(--black);
  line-height: 1.0;
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: normal;
  color: var(--teal);
}

.hero-body {
  font-size: 1rem; color: var(--muted); line-height: 1.8;
  font-weight: 400; margin-bottom: 2.5rem; max-width: 400px;
}

.hero-cta-group { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #115b55; color: white;
  padding: 0.9rem 1.85rem; border-radius: 6px;
  font-size: 0.88rem; font-weight: 600;
  transition: all 0.2s; letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-1px);
  color: white;
}
.btn-primary svg { width: 14px; height: 14px; }

.hero-trust-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.trust-dot {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; color: var(--light-muted); font-weight: 500;
}
.trust-dot::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}

.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-img-wrap { 
  position: relative; 
  width: 100%; 
  max-width: 600px; 
}
.hero-img-wrap img {
  width: 90%; height: auto; display: block;
  border-radius: 12px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.06);
}

/* ── CONTRAST ── */
.contrast-section {
  padding: 6rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.section-eyebrow {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 1rem; color: var(--black);
}
.section-title em { font-style: normal; color: var(--teal); }
.section-sub {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.75; max-width: 520px;
}

.contrast-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3.5rem;
}
.contrast-col { border-radius: 12px; padding: 2.25rem; }
.contrast-col.without {
  background: white;
  border: 1px solid var(--border);
}
.contrast-col.with {
  background: #115b55;
  border: 1px solid #115b55;
}
.contrast-col-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.contrast-col.without .contrast-col-label { color: var(--light-muted); }
.contrast-col.with .contrast-col-label { color: rgba(255,255,255,0.5); }
.contrast-col-label::before {
  content: ''; display: inline-block;
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.contrast-col.without .contrast-col-label::before { background: var(--border); }
.contrast-col.with .contrast-col-label::before { background: white; }
.contrast-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.contrast-item {
  display: flex; align-items: flex-start; gap: 0.85rem;
  font-size: 0.88rem; line-height: 1.55;
}
.contrast-item-marker { flex-shrink: 0; margin-top: 0.15rem; }
.contrast-col.without .contrast-item { color: var(--muted); }
.contrast-col.without .contrast-item-marker { color: var(--border); font-weight: 700; font-size: 1rem; }
.contrast-col.with .contrast-item { color: rgba(255,255,255,0.85); }

/* ── WHAT YOU GET ── */
.wyg-section {
  padding: 6rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.wyg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3.5rem;
}
.wyg-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.wyg-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: transparent;
  opacity: 0; transition: opacity 0.25s;
}
.wyg-card:hover {
  border-color: var(--teal-border);
  box-shadow: 0 8px 32px rgba(46,196,182,0.08);
  transform: translateY(-2px);
}
.wyg-card:hover::after { opacity: 1; }

.wyg-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: #115b55; color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.08em; margin-bottom: 1.5rem;
}
.wyg-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.6rem;
}
.wyg-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ── HOW IT WORKS ── */
.how-section { padding: 6rem 0; border-bottom: 1px solid var(--border); }

.sol-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin-top: 3.5rem;
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  background: var(--border);
}
.sol-step {
  background: var(--white);
  padding: 2rem 1.5rem;
  transition: all 0.25s;
  position: relative;
}
.sol-step:hover { background: var(--bg); }
.sol-step.final { background: #115b55; }
.sol-step.final:hover { background: #41464b; }

.sol-num {
  width: 30px; height: 30px; border-radius: 6px;
  background: #115b55; color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.sol-step.final .sol-num { background: white; color: #115b55; }

.sol-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.5rem;
}
.sol-step.final .sol-title { color: white; }
.sol-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
.sol-step.final .sol-desc { color: rgba(255,255,255,0.6); }

/* ── PREVIEW ── */
.preview-section {
  padding: 6rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.preview-section .section-sub { max-width: 480px; }
.preview-img {
  max-width: 50%; border-radius: 12px;
  margin-top: 2.5rem;
  box-shadow: 0 24px 56px rgba(0,0,0,0.1);
  display: block;
}
.preview-checks {
  display: flex; align-items: center;
  gap: 2rem; margin-top: 1.5rem;
  flex-wrap: wrap;
}
.preview-check {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 500; color: var(--muted);
}
.preview-check svg { flex-shrink: 0; }

/* ── TRUST ── */
.trust-section {
  background: var(--bg);
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.trust-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; background: var(--border);
}
.trust-item {
  background: var(--white);
  padding: 2.5rem 2rem;
}
.trust-item-icon { margin-bottom: 1rem; }
.trust-item-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.5rem;
}
.trust-item-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ── PRICING ── */
.pricing-section { padding: 6rem 0; border-bottom: 1px solid var(--border); }

.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-top: 3rem;
  max-width: 680px;
}
.price-card {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 2.25rem;
  transition: all 0.25s;
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
}
.price-card.featured {
  border-color: #115b55;
  background: #115b55;
}
.price-badge {
  display: inline-block; background: var(--teal); color: var(--black);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.22rem 0.7rem;
  border-radius: 3px; margin-bottom: 1.25rem;
}
.price-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--light-muted); margin-bottom: 0.6rem;
}
.price-card.featured .price-label { color: rgba(255,255,255,0.4); }
.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--black); letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 0.3rem;
}
.price-card.featured .price-amount { color: white; }
.price-currency { font-size: 0.95rem; font-weight: 400; color: var(--light-muted); }
.price-card.featured .price-currency { color: rgba(255,255,255,0.4); }
.price-features {
  list-style: none; margin: 1.5rem 0; 
  display: flex; flex-direction: column; gap: 0.7rem;
}
.price-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: var(--muted); line-height: 1.5;
}
.price-card.featured .price-features li { color: rgba(255,255,255,0.65); }
.price-features li::before {
  content: '✓'; color: var(--teal);
  font-weight: 700; font-size: 0.78rem;
  flex-shrink: 0; margin-top: 0.1rem;
}
.price-btn {
  display: block; text-align: center;
  padding: 0.85rem; border-radius: 7px;
  font-size: 0.85rem; font-weight: 600;
  transition: all 0.2s; letter-spacing: 0.01em;
}
.price-btn-outline {
  border: 1.5px solid var(--border); color: var(--text);
}
.price-btn-outline:hover { border-color: var(--black); color: var(--black); }
.price-btn-solid {
  background: var(--teal); color: var(--black);
}
.price-btn-solid:hover { background: var(--teal-dark); transform: translateY(-1px); }
.price-card.featured .price-badge {
  background: white; color: #115b55;
}
.price-card.featured .price-features li::before {
  color: white;
}
.price-card.featured .price-btn-solid {
  background: white; color: #115b55;
}
.price-card.featured .price-btn-solid:hover {
  background: #d2d3d4; transform: translateY(-1px);
}

/* ── OBJECTIONS ── */
.obj-section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.obj-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin-top: 3rem;
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; background: var(--border);
}
.obj-card {
  background: white;
  padding: 1.75rem;
}
.obj-card-q {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.6rem;
  line-height: 1.4;
}
.obj-card-a { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }
.obj-card-a a { color: var(--teal); }

/* ── FINAL CTA ── */
.cta-section {
  padding: 7rem 0;
  background: var(--white);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; top: 60%;
  background: linear-gradient(to top, rgba(46,196,182,0.04), transparent);
  pointer-events: none;
}
.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.05; margin-bottom: 1rem;
  color: var(--black);
}
.cta-sub {
  font-size: 0.92rem; color: var(--muted);
  margin-bottom: 2.5rem;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── FOOTER ── */
.footer {
  text-align: center; padding: 2.5rem 0;
  color: var(--light-muted); font-size: 0.8rem;
  border-top: 1px solid var(--border);
}
.footer a { color: var(--light-muted); transition: color 0.2s; }
.footer a:hover { color: var(--teal); }
.footer-links { margin-top: 0.5rem; font-size: 0.75rem; }
.footer-social {
  display: flex; justify-content: center; align-items: center;
  gap: 1rem; margin-top: 1rem;
}
.footer .social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  color: var(--light-muted); transition: color 0.2s;
}
.footer .social-icon:hover { color: var(--teal); }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 50px; height: 50px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  z-index: 999; transition: all 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 24px; height: 24px; fill: white; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge  { animation: fadeUp 0.5s ease 0.1s both; }
.hero-title  { animation: fadeUp 0.55s ease 0.2s both; }
.hero-body   { animation: fadeUp 0.55s ease 0.3s both; }
.hero-cta-group { animation: fadeUp 0.55s ease 0.38s both; }
.hero-right  { animation: fadeUp 0.6s ease 0.3s both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links a:not(.btn-nav) { display: none; }
  .hamburger { display: flex; }
  .btn-nav { display: none !important; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { order: -1; }
  .hero-img-wrap { max-width: 100%; margin: 0 auto; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3rem); }
  .sol-grid { grid-template-columns: 1fr 1fr; }
  .wyg-grid { grid-template-columns: 1fr; }
  .contrast-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .obj-grid { grid-template-columns: 1fr; }
  .preview-img { max-width: 90%; }
}
@media (max-width: 480px) {
  .sol-grid { grid-template-columns: 1fr; border-radius: 0; }
  .hero-title { font-size: 2.2rem; }
}
