:root {
  --primary: #12c7b8;
  --primary-dark: #0f8f86;
  --primary-light: #e8fffc;
  --accent: #2ec4b6;
  --coral: #d94f70;
  --coral-dark: #c23a5c;
  --coral-light: #fff1f5;
  --gold: #d6a84f;
  --gold-light: #fdf6e7;
  --rose-light: #fff1f5;
  --rose-soft: #fde8ef;
  --navy: #0f172a;
  --bg: #f5f8fa;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --dark: #1a1a2e;
  --placeholder: #2d2d3a;
  --shadow: 0 16px 48px rgba(15, 143, 134, 0.14);
  --shadow-soft: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 20px 50px rgba(15, 143, 134, 0.18);
  --radius: 18px;
  --radius-sm: 14px;
  --max-width: 1140px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-duration: 0.65s;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--surface);
}

.section-bg-hero,
.section-bg-white {
  background: var(--surface);
}

.section-bg-teal {
  background: linear-gradient(180deg, #f0fffd 0%, var(--primary-light) 100%);
}

.section-bg-rose {
  background: linear-gradient(180deg, var(--rose-light) 0%, #fff 100%);
}

.section-bg-gradient {
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(18, 199, 184, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(217, 79, 112, 0.08), transparent),
    var(--bg);
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--navy);
}

.section-lead {
  margin: 0 auto 40px;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  text-align: center;
}

.section-lead--flush {
  margin-bottom: 0;
}

.text-center {
  text-align: center;
}

/* Color highlights */
.text-teal {
  color: var(--primary-dark);
}

.text-coral {
  color: var(--coral);
}

.text-gradient {
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 55%, var(--coral) 115%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.highlight-soft {
  background: linear-gradient(180deg, transparent 58%, rgba(18, 199, 184, 0.28) 58%);
  padding: 0 3px;
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid rgba(27, 184, 176, 0.45);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 60%, var(--coral) 140%);
  color: #fff;
  box-shadow:
    0 10px 28px rgba(15, 143, 134, 0.3),
    0 4px 14px rgba(217, 79, 112, 0.12);
}

.btn-primary:hover {
  box-shadow:
    0 14px 34px rgba(15, 143, 134, 0.38),
    0 6px 18px rgba(217, 79, 112, 0.18);
}

.btn-outline {
  background: #fff;
  color: var(--primary-dark);
  border-color: rgba(18, 199, 184, 0.55);
}

.btn-outline:hover {
  background: var(--primary-light);
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.btn-light {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.btn-light:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(220px, 42vw);
  border-radius: 8px;
}

.logo-img--footer {
  height: 44px;
  margin-bottom: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  padding: 8px 12px;
  border-radius: 999px;
}

.site-nav a:hover {
  color: var(--primary-dark);
  background: rgba(221, 245, 242, 0.7);
}

.site-nav a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 104px;
  background:
    radial-gradient(ellipse 90% 70% at 20% -20%, rgba(18, 199, 184, 0.22), transparent),
    radial-gradient(ellipse 70% 50% at 100% 20%, rgba(217, 79, 112, 0.1), transparent),
    linear-gradient(180deg, #f3fdfc 0%, var(--bg) 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.55;
}

.hero-blob--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(46, 196, 182, 0.28);
}

.hero-blob--2 {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -60px;
  background: rgba(217, 79, 112, 0.18);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(120deg, var(--primary) 0%, var(--coral) 100%) border-box;
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow:
    0 4px 16px rgba(15, 143, 134, 0.1),
    0 2px 8px rgba(217, 79, 112, 0.08);
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.1rem, 5.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--navy);
}

.hero-subtitle {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  max-width: 540px;
  line-height: 1.7;
}

.hero-preview-frame {
  position: relative;
  padding: 12px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(221, 245, 242, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 60px rgba(15, 143, 134, 0.18),
    0 0 0 1px rgba(27, 184, 176, 0.08);
}

.hero-preview-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.45), rgba(255, 255, 255, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.placeholder-image {
  aspect-ratio: 16 / 10;
  background: var(--placeholder);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.seo-image,
.hero-preview {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Pain cards */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0 24px;
  padding: 0;
  list-style: none;
}

.pain-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  font-size: 0.95rem;
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(27, 184, 176, 0.25);
}

.pain-card::before {
  content: '“';
  display: block;
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 4px;
}

/* How helps */
.blocks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.help-block {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
  height: 100%;
}

.help-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
}

.blocks-grid .help-block:nth-child(2)::before {
  background: linear-gradient(90deg, var(--coral), #ec7d97);
}

.blocks-grid .help-block:nth-child(3)::before {
  background: linear-gradient(90deg, var(--gold), #e8c47c);
}

.help-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(18, 199, 184, 0.3);
}

.blocks-grid .help-block:nth-child(2):hover {
  border-color: rgba(217, 79, 112, 0.3);
}

.blocks-grid .help-block:nth-child(3):hover {
  border-color: rgba(214, 168, 79, 0.4);
}

.help-block .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(15, 143, 134, 0.12);
}

.blocks-grid .help-block:nth-child(2) .icon {
  background: linear-gradient(135deg, var(--coral-light), #fff);
  box-shadow: 0 6px 18px rgba(217, 79, 112, 0.14);
}

.blocks-grid .help-block:nth-child(3) .icon {
  background: linear-gradient(135deg, var(--gold-light), #fff);
  box-shadow: 0 6px 18px rgba(214, 168, 79, 0.18);
}

.help-block h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.help-block p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.help-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.help-block li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.9rem;
}

.help-block li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
}

.features-grid .feature-card:nth-child(3n + 2)::before {
  background: linear-gradient(90deg, var(--coral), #ec7d97);
}

.features-grid .feature-card:nth-child(3n)::before {
  background: linear-gradient(90deg, var(--gold), #e8c47c);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(18, 199, 184, 0.35);
}

.features-grid .feature-card:nth-child(3n + 2):hover {
  border-color: rgba(217, 79, 112, 0.35);
}

.features-grid .feature-card:nth-child(3n):hover {
  border-color: rgba(214, 168, 79, 0.45);
}

.feature-card h3 {
  margin: 0 0 12px;
  color: var(--primary-dark);
}

.features-grid .feature-card:nth-child(3n + 2) h3 {
  color: var(--coral);
}

.feature-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-card li {
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-card li::before {
  content: '• ';
  color: var(--accent);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  margin: 0;
}

.gallery-item {
  transition: transform 0.3s var(--ease-out);
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item .seo-image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s var(--ease-out);
}

.gallery-item:hover .seo-image {
  box-shadow: var(--shadow-hover);
}

.gallery-item figcaption {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* Differentials */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.diff-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.diff-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.diff-card .emoji {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-light), #fff);
}

.diff-grid .diff-card:nth-child(even) .emoji {
  background: linear-gradient(135deg, var(--coral-light), #fff);
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), var(--primary-light));
  border: 1px solid rgba(27, 184, 176, 0.12);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.benefit-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.benefits-grid .benefit-card:nth-child(even) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), var(--coral-light));
  border-color: rgba(217, 79, 112, 0.12);
}

.benefits-grid .benefit-card:nth-child(even) strong {
  color: var(--coral);
}

/* Pricing — base layout (premium overrides in pricing-premium.css) */
.pricing-section .section-lead {
  margin-bottom: 28px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-bottom: 40px;
}

.pricing-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 26px 26px;
  box-shadow: var(--shadow-soft);
}

.pricing-plan-header {
  margin-bottom: 18px;
  text-align: center;
}

.pricing-plan-name {
  margin: 8px 0 10px;
  font-size: 1.35rem;
  color: var(--primary-dark);
}

.pricing-prices {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-price {
  margin: 0;
}

.pricing-price-value {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.pricing-price-period {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.pricing-price--consult {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.pricing-features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
}

.pricing-check {
  flex-shrink: 0;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.4;
}

.pricing-plan-cta {
  width: 100%;
  margin-top: auto;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.pricing-trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.pricing-trust-list span {
  color: var(--primary);
  font-weight: 700;
}

.pricing-help {
  text-align: center;
}

.pricing-help-text {
  margin: 0 auto 18px;
  max-width: 560px;
  color: var(--muted);
  font-size: 1rem;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    border-color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.faq-item:hover {
  border-color: rgba(27, 184, 176, 0.25);
}

.faq-item.open {
  border-color: rgba(27, 184, 176, 0.35);
  box-shadow: var(--shadow-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  transition: color 0.2s, background 0.2s;
}

.faq-question:hover {
  color: var(--primary-dark);
  background: rgba(221, 245, 242, 0.35);
}

.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.faq-question::after {
  content: '+';
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 700;
  flex-shrink: 0;
  transition:
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}

.faq-question:hover::after {
  transform: scale(1.08);
}

.faq-item.open .faq-question::after {
  content: '−';
  background: var(--coral-light);
  color: var(--coral);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  transition:
    max-height 0.35s var(--ease-out),
    padding 0.35s var(--ease-out),
    opacity 0.25s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 480px;
  padding: 0 20px 18px;
  opacity: 1;
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #0a6b64 0%, var(--primary-dark) 40%, #19b3a6 75%, var(--coral) 160%);
  color: #fff;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(255, 255, 255, 0.12), transparent),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-section .section-title,
.cta-section .section-lead {
  color: #fff;
}

.cta-section .section-lead {
  opacity: 0.92;
}

.cta-section .btn-light {
  animation: cta-pulse 3s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }
  50% {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  }
}

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #161628 0%, var(--dark) 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 24px;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary) 50%, var(--coral));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-grid--legal {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-col h4 {
  margin: 0 0 12px;
  padding-bottom: 6px;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--coral));
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom__link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer-bottom__link:hover {
  color: var(--accent);
}

/* Legal / Privacy page */
.legal-page {
  background: var(--bg);
}

.legal-hero {
  padding: 56px 0 48px;
}

.legal-hero__inner {
  max-width: 820px;
}

.legal-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.legal-hero__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.legal-hero__lead {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.legal-hero__updated {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
}

.legal-content {
  padding-top: 0;
  padding-bottom: 80px;
}

.legal-content__inner {
  max-width: 820px;
  display: grid;
  gap: 20px;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 28px);
  box-shadow: var(--shadow-soft);
}

.legal-card--highlight {
  background: linear-gradient(180deg, #fff 0%, var(--primary-light) 100%);
  border-color: rgba(18, 199, 184, 0.25);
}

.legal-card--contact {
  border-color: rgba(18, 199, 184, 0.35);
}

.legal-card h2 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--navy);
}

.legal-card p {
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.65;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  margin: 0 0 14px;
  padding-left: 1.25rem;
  color: var(--text);
  line-height: 1.65;
}

.legal-card li + li {
  margin-top: 6px;
}

.legal-card a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card a:hover {
  color: var(--primary);
}

.legal-list--compact {
  columns: 1;
}

.legal-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-contact-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.legal-contact-list li:last-child {
  border-bottom: none;
}

.legal-contact-list a {
  color: var(--primary-dark);
  font-weight: 500;
}

@media (min-width: 640px) {
  .legal-list--compact {
    columns: 2;
    column-gap: 24px;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .blocks-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: min(100%, 440px);
    margin-inline: auto;
    gap: 28px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 64px 16px auto;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav.open {
    display: flex;
    animation: nav-slide 0.25s var(--ease-out);
  }

  @keyframes nav-slide {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .header-cta .btn-outline {
    display: none;
  }

  .hero {
    padding: 64px 0 72px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }

  .diff-grid,
  .benefits-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .pricing-trust-list {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Scroll reveal animations */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
[data-reveal] {
  opacity: 0;
  transition:
    opacity var(--reveal-duration) var(--ease-out),
    transform var(--reveal-duration) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal,
.reveal-up,
[data-reveal='reveal-up'] {
  transform: translateY(28px);
}

.reveal-left,
[data-reveal='reveal-left'] {
  transform: translateX(-28px);
}

.reveal-right,
[data-reveal='reveal-right'] {
  transform: translateX(28px);
}

.reveal-scale {
  transform: scale(0.96);
}

.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.reduced-motion .reveal,
.reduced-motion .reveal-up,
.reduced-motion .reveal-left,
.reduced-motion .reveal-right,
.reduced-motion .reveal-scale,
.reduced-motion [data-reveal],
.reduced-motion .reveal.is-visible,
.reduced-motion .reveal-up.is-visible,
.reduced-motion .reveal-left.is-visible,
.reduced-motion .reveal-right.is-visible,
.reduced-motion .reveal-scale.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .cta-section .btn-light {
    animation: none;
  }

  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Contact modal */
body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contact-modal.open {
  display: flex;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.contact-modal__panel {
  position: relative;
  width: min(100%, 520px);
  max-height: 90vh;
  overflow: auto;
  background: var(--surface);
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow);
}

#contact-form input:focus-visible,
#contact-form select:focus-visible,
#contact-form textarea:focus-visible,
.contact-modal__close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.contact-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.contact-modal h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.contact-modal__lead {
  margin: 0 0 20px;
  color: var(--muted);
}

#contact-form {
  display: grid;
  gap: 14px;
}

#contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-captcha {
  min-height: 0;
}

.contact-captcha.is-active {
  min-height: 65px;
}

.contact-feedback {
  min-height: 1.25rem;
  font-size: 0.92rem;
}

.contact-feedback.success {
  color: #15803d;
}

.contact-feedback.error {
  color: #b91c1c;
}

/* Checkout modal (Mercado Pago Bricks) */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.checkout-modal.open {
  display: flex;
}

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.checkout-modal__panel {
  position: relative;
  width: min(100%, 560px);
  max-height: 92vh;
  overflow: auto;
  background: var(--surface);
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow);
}

.checkout-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.checkout-modal h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.checkout-modal__lead {
  margin: 0 0 16px;
  color: var(--muted);
}

.checkout-plan-summary {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fafc;
  font-size: 0.95rem;
}

.checkout-plan-summary p {
  margin: 0 0 4px;
}

.checkout-plan-summary p:last-child {
  margin-bottom: 0;
}

#checkout-form {
  display: grid;
  gap: 14px;
}

#checkout-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

#checkout-form input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.checkout-brick-section {
  margin-top: 8px;
}

#payment-brick-container {
  min-height: 320px;
}

.checkout-feedback {
  min-height: 1.25rem;
  margin-top: 12px;
  font-size: 0.92rem;
}

.checkout-feedback.success {
  color: #15803d;
}

.checkout-feedback.pending {
  color: #0369a1;
}

.checkout-feedback.error {
  color: #b91c1c;
}

.trial-modal__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.trial-modal__checks li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f766e;
}

.trial-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.btn-block {
  width: 100%;
  margin-top: 8px;
}

.checkout-success-section {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  background: #f0fdf4;
  text-align: center;
}

.checkout-success-section h3 {
  margin: 0 0 8px;
  color: #15803d;
}

.checkout-success-section p {
  margin: 0 0 8px;
}

.checkout-success-sub {
  color: #166534;
  font-size: 0.92rem;
}

.checkout-success-section .btn {
  margin-top: 12px;
}

.checkout-success-section .checkout-access-btn {
  display: inline-block;
  margin-right: 8px;
  text-decoration: none;
}

.checkout-success-whatsapp {
  color: #166534;
  font-size: 0.88rem;
  margin-top: 8px;
}

.checkout-pix-section {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fafc;
}

.checkout-pix-section h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.checkout-pix-instructions {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkout-pix-qr {
  display: block;
  width: min(100%, 220px);
  height: auto;
  margin: 0 auto 16px;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
}

.checkout-pix-code-label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.checkout-pix-code {
  width: 100%;
  min-height: 88px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-size: 0.82rem;
  resize: vertical;
  background: #fff;
}

.checkout-pix-copy-btn {
  margin-top: 10px;
}

.checkout-pix-copy-feedback {
  margin-top: 8px;
  font-size: 0.88rem;
  color: #15803d;
}

.checkout-pix-ticket-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.9rem;
}
