:root {
  --teal: #2a9d8f;
  --teal-dark: #228478;
  --teal-light: #34b8a8;
  --teal-100: #d4efec;
  --teal-50: #edf8f7;
  --teal-bg: #e8f5f0;
  --teal-bg-light: #f0faf6;
  --yellow: #ffd600;
  --yellow-light: #ffe033;
  --yellow-100: #fff9db;
  --yellow-bg: #fffce8;
  --navy: #1a2b3c;
  --navy-dark: #0f1c2a;
  --navy-light: #2d4356;
  --text-primary: #1a2b3c;
  --text-secondary: #4a5d72;
  --text-muted: #7b8e9e;
  --text-on-dark: #e0e8f0;
  --text-on-dark-muted: #8fa3b8;
  --bg-page: #ffffff;
  --bg-light: #f7f9fb;
  --bg-hero: linear-gradient(170deg, #e8f5f0 0%, #f0faf6 40%, #fef9ed 100%);
  --border: #dde4eb;
  --border-light: #eaeff4;
  --shadow-sm: 0 1px 3px rgba(26,43,60,0.05);
  --shadow-md: 0 4px 16px rgba(26,43,60,0.08);
  --shadow-lg: 0 8px 32px rgba(26,43,60,0.1);
  --shadow-card: 0 2px 12px rgba(26,43,60,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1180px;
  --section-pad: 88px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 70px; }
body { font-family: var(--font-body); color: var(--text-primary); background: var(--bg-page); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.anim-up { animation: fadeUp 0.6s ease-out both; }
.anim-d1 { animation: fadeUp 0.6s ease-out 0.08s both; }
.anim-d2 { animation: fadeUp 0.6s ease-out 0.16s both; }
.anim-d3 { animation: fadeUp 0.6s ease-out 0.24s both; }

/* Header/nav: shared in marketing.css (same trigger + hamburger on all vnext pages). */

.section-eyebrow { font-family: var(--font-heading); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--teal); margin-bottom: 10px; display: inline-block; background: linear-gradient(135deg, rgba(42,157,143,0.08), rgba(42,157,143,0.04)); padding: 5px 16px; border-radius: 20px; border: 1px solid rgba(42,157,143,0.12); }
.section-title { font-family: var(--font-heading); font-size: 36px; letter-spacing: -0.8px; line-height: 1.2; margin-bottom: 14px; color: var(--text-primary); font-weight: 800; }
.section-subtitle { font-size: 16px; color: var(--text-secondary); max-width: 550px; line-height: 1.7; margin-bottom: 48px; }
.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }
.pricing-hero { position: relative; background: linear-gradient(170deg, #e4f2ed 0%, #edf8f5 30%, #fef9ed 70%, #fff7db 100%); padding: 48px 0 48px; overflow: hidden; text-align: center; }
.pricing-hero::before { content: ''; position: absolute; top: -60px; right: -40px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(42,157,143,0.08) 0%, transparent 70%); pointer-events: none; }
.pricing-hero::after { content: ''; position: absolute; bottom: -80px; left: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(255,214,0,0.1) 0%, transparent 70%); pointer-events: none; }
.pricing-hero h1 { font-family: var(--font-heading); font-size: 48px; line-height: 1.12; color: var(--text-primary); letter-spacing: -1.8px; margin-bottom: 16px; font-weight: 800; }
.pricing-hero h1 .highlight { color: var(--teal); }
.pricing-hero-sub { font-size: 17px; line-height: 1.75; color: var(--text-secondary); max-width: 560px; margin: 0 auto 24px; }
.url-banner { display: inline-flex; align-items: center; gap: 10px; background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: 100px; padding: 10px 24px; font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
.url-banner svg { color: var(--teal); flex-shrink: 0; }
.url-banner strong { color: var(--teal-dark); font-weight: 700; }
.plans-include { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 20px; flex-wrap: wrap; }
.include-pill { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.include-pill svg { color: var(--teal); flex-shrink: 0; }
/* Social proof counter */
.social-proof { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 28px; }
.social-proof-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: socialPulse 2s ease-in-out infinite; }
@keyframes socialPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.social-proof-text { font-size: 14px; color: var(--text-secondary); font-weight: 500; }
.social-proof-text strong { color: var(--text-primary); font-weight: 700; }
.social-proof-avatars { display: flex; margin-right: 4px; }
.social-proof-avatars .sp-avatar { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; font-family: var(--font-heading); color: #fff; margin-right: -8px; opacity: 0; animation: avatarPop 0.4s ease-out forwards; }
.social-proof-avatars .sp-avatar:nth-child(1) { background: var(--teal); z-index: 5; animation-delay: 0.3s; }
.social-proof-avatars .sp-avatar:nth-child(2) { background: #5b8def; z-index: 4; animation-delay: 0.45s; }
.social-proof-avatars .sp-avatar:nth-child(3) { background: #e8a838; z-index: 3; animation-delay: 0.6s; }
.social-proof-avatars .sp-avatar:nth-child(4) { background: #7c6bbf; z-index: 2; animation-delay: 0.75s; }
.social-proof-avatars .sp-avatar:nth-child(5) { background: #e05a6d; z-index: 1; animation-delay: 0.9s; }
@keyframes avatarPop { 0% { opacity: 0; transform: scale(0.3) translateX(-8px); } 70% { transform: scale(1.1) translateX(0); } 100% { opacity: 1; transform: scale(1) translateX(0); } }
/* Guarantee badge */
.guarantee-badge { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 28px; padding: 14px 24px; background: linear-gradient(135deg, rgba(42,157,143,0.06), rgba(42,157,143,0.02)); border: 1px solid var(--teal-100); border-radius: 100px; max-width: 480px; margin-left: auto; margin-right: auto; }
.guarantee-icon { width: 32px; height: 32px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; box-shadow: 0 3px 8px rgba(42,157,143,0.2); }
.guarantee-text { font-size: 14px; color: var(--text-secondary); line-height: 1.4; }
.guarantee-text strong { color: var(--text-primary); font-weight: 700; }
.pricing-section { padding: 48px 0 var(--section-pad); background: var(--bg-page); }
/* Active promo message (matches membership / legacy alert intent) */
.pricing-promo-alert {
  margin: 0 0 28px;
  padding: 14px 22px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: #c92a2a;
  background: var(--yellow-100);
  border: 1px solid #e6cf6a;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
/* Fixed-width cards, centered when a row is not full (e.g. promo tiers) */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}
.pricing-card {
  flex: 0 0 var(--pricing-card-width, 204px);
  max-width: var(--pricing-card-width, 204px);
  width: 100%;
  box-sizing: border-box;
  background: var(--bg-page);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.popular { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), 0 8px 32px rgba(42,157,143,0.15); transform: scale(1.03); z-index: 2; }
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; font-family: var(--font-heading); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; padding: 5px 16px; border-radius: 100px; white-space: nowrap; box-shadow: 0 3px 10px rgba(42,157,143,0.25); }
.value-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--yellow), #ffe033); color: var(--text-primary); font-family: var(--font-heading); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; padding: 5px 16px; border-radius: 100px; white-space: nowrap; box-shadow: 0 3px 10px rgba(255,214,0,0.3); }
.pricing-card-name { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; letter-spacing: -0.3px; }
.pricing-card-price { margin-bottom: 18px; }
.price-amount { font-family: var(--font-heading); font-size: 40px; font-weight: 800; color: var(--text-primary); line-height: 1; letter-spacing: -1.5px; }
.price-currency { font-size: 20px; font-weight: 700; vertical-align: super; letter-spacing: 0; }
.price-period { font-size: 14px; font-weight: 500; color: var(--text-muted); margin-left: 2px; }
.old-price { font-size: 24px; color: var(--text-muted); text-decoration: line-through; margin-right: 8px; display: block; margin-bottom: 4px; }
.pricing-card-details { display: flex; flex-direction: column; gap: 10px; padding: 18px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); margin-bottom: 18px; flex: 1; }
.card-detail { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-secondary); }
.card-detail svg { flex-shrink: 0; }
.card-detail strong { color: var(--text-primary); font-weight: 600; }
.card-savings { font-size: 12px; font-weight: 600; color: #fff; background: linear-gradient(135deg, var(--teal), var(--teal-light)); padding: 5px 10px; border-radius: 6px; text-align: center; margin-bottom: 14px; }
.btn-card { display: block; text-align: center; font-family: var(--font-heading); font-size: 14px; font-weight: 700; padding: 12px 16px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.3px; width: 100%; }
.btn-card-primary { background: linear-gradient(135deg, var(--yellow), #ffe033); color: var(--text-primary); box-shadow: 0 3px 10px rgba(255,214,0,0.2); }
.btn-card-primary:hover,
.btn-card-primary:focus,
.btn-card-primary:active,
a.btn-card-primary:hover,
a.btn-card-primary:focus,
a.btn-card-primary:active {
  background: linear-gradient(135deg, #ffe033, var(--yellow));
  box-shadow: 0 4px 14px rgba(255,214,0,0.35);
  color: var(--text-primary) !important;
}
.btn-card-outline { background: var(--bg-page); color: var(--text-primary); border: 1.5px solid var(--border); }
.btn-card-outline:hover { border-color: var(--teal); color: var(--teal); }
.onetime-section { padding: 72px 0; background: linear-gradient(175deg, #f6faf8 0%, #f7f9fb 50%, #faf8f3 100%); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.onetime-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.onetime-inner h2 { font-family: var(--font-heading); font-size: 30px; font-weight: 800; color: var(--text-primary); margin-bottom: 10px; letter-spacing: -0.6px; }
.onetime-inner > p { font-size: 16px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.7; }
.onetime-card { background: var(--bg-page); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px 40px; box-shadow: var(--shadow-md); max-width: 520px; margin: 0 auto; }
.onetime-form { display: flex; gap: 10px; margin-bottom: 14px; }
.onetime-select { flex: 1; padding: 14px 16px; font-size: 15px; font-family: var(--font-body); border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-page); color: var(--text-primary); cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237b8e9e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.onetime-select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,157,143,0.12); }
.btn-onetime { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--text-primary); background: linear-gradient(135deg, var(--yellow), #ffe033); padding: 14px 28px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: all 0.25s; text-transform: uppercase; letter-spacing: 0.3px; white-space: nowrap; box-shadow: 0 3px 10px rgba(255,214,0,0.2); }
.btn-onetime:hover,
.btn-onetime:focus,
.btn-onetime:active {
  background: linear-gradient(135deg, #ffe033, var(--yellow));
  box-shadow: 0 4px 14px rgba(255,214,0,0.35);
  color: var(--text-primary) !important;
}
.onetime-note { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.free-trial-section { padding: var(--section-pad) 0; background: var(--bg-page); }
.trial-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 960px; margin: 0 auto; }
.trial-content h2 { font-family: var(--font-heading); font-size: 32px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.8px; margin-bottom: 14px; line-height: 1.2; }
.trial-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }
.trial-perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.trial-perk { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.trial-perk svg { flex-shrink: 0; color: var(--teal); }
.trial-perk strong { color: var(--text-primary); font-weight: 600; }
.btn-trial { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--text-primary); background: linear-gradient(135deg, var(--yellow), #ffe033); padding: 14px 32px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: all 0.25s; text-transform: uppercase; letter-spacing: 0.3px; box-shadow: 0 4px 14px rgba(255,214,0,0.3); }
.btn-trial:hover,
.btn-trial:focus,
.btn-trial:active,
a.btn-trial:hover,
a.btn-trial:focus,
a.btn-trial:active {
  background: linear-gradient(135deg, #ffe033, var(--yellow));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,214,0,0.4);
  color: var(--text-primary) !important;
}
.trial-card { background: var(--bg-page); border: 2px solid var(--teal); border-radius: var(--radius-xl); padding: 36px 32px; text-align: center; box-shadow: 0 0 0 4px rgba(42,157,143,0.08), 0 8px 32px rgba(42,157,143,0.12); position: relative; }
.trial-card-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; font-family: var(--font-heading); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 20px; border-radius: 100px; box-shadow: 0 3px 10px rgba(42,157,143,0.25); }
.trial-card h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: var(--text-primary); margin: 20px 0 8px; letter-spacing: -0.5px; }
.trial-card-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.trial-price-row { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 8px; }
.trial-price { font-family: var(--font-heading); font-size: 64px; font-weight: 800; color: var(--teal); line-height: 1; letter-spacing: -2px; }
.trial-price-currency { font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: var(--teal); vertical-align: super; }
.trial-price-label { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.trial-card-divider { height: 1px; background: var(--border-light); margin: 0 -8px 20px; }
.trial-card-features { display: flex; flex-direction: column; gap: 10px; text-align: left; margin-bottom: 24px; }
.trial-card-feature { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); }
.trial-card-feature svg { flex-shrink: 0; color: var(--teal); }
.btn-trial-card { display: block; width: 100%; text-align: center; font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--text-primary); background: linear-gradient(135deg, var(--yellow), #ffe033); padding: 14px 24px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: all 0.25s; text-transform: uppercase; letter-spacing: 0.3px; box-shadow: 0 4px 14px rgba(255,214,0,0.3); }
.btn-trial-card:hover,
.btn-trial-card:focus,
.btn-trial-card:active,
a.btn-trial-card:hover,
a.btn-trial-card:focus,
a.btn-trial-card:active {
  background: linear-gradient(135deg, #ffe033, var(--yellow));
  box-shadow: 0 6px 20px rgba(255,214,0,0.4);
  color: var(--text-primary) !important;
}

/* Button-like links should never show underline */
a.btn-card, a.btn-card:hover, a.btn-card:focus, a.btn-card:active,
a.btn-onetime, a.btn-onetime:hover, a.btn-onetime:focus, a.btn-onetime:active,
a.btn-trial, a.btn-trial:hover, a.btn-trial:focus, a.btn-trial:active,
a.btn-trial-card, a.btn-trial-card:hover, a.btn-trial-card:focus, a.btn-trial-card:active {
  text-decoration: none !important;
}
.features-section { padding: var(--section-pad) 0; background: linear-gradient(175deg, #f6faf8 0%, #f7f9fb 50%, #faf8f3 100%); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.feature-card { background: var(--bg-page); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.3s; border-top: 3px solid transparent; }
.feature-card:nth-child(1) { border-top-color: #2a9d8f; }
.feature-card:nth-child(2) { border-top-color: #4a90d9; }
.feature-card:nth-child(3) { border-top-color: #e6a817; }
.feature-card:nth-child(4) { border-top-color: #d4694a; }
.feature-card:nth-child(5) { border-top-color: #7c5cbf; }
.feature-card:nth-child(6) { border-top-color: #5bb033; }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: #fff; }
.feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, #2a9d8f, #34b8a8); }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, #4a90d9, #5da3e6); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, #e6a817, #f0b830); }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, #d4694a, #e07a5c); }
.feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg, #7c5cbf, #9070d0); }
.feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, #5bb033, #6cc344); }
.feature-card h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; letter-spacing: -0.2px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.testimonials-section { padding: var(--section-pad) 0; background: var(--teal-bg-light); border-top: 1px solid var(--border-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.testimonial-card { background: var(--bg-page); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; display: flex; flex-direction: column; transition: all 0.3s; position: relative; overflow: hidden; }
.testimonial-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--yellow), #ffd600); opacity: 0; transition: opacity 0.3s; }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-card:hover::before { opacity: 1; }
.testimonial-stars { color: var(--yellow); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; line-height: 1.7; color: var(--text-secondary); flex: 1; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--teal-100); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--teal-dark); font-family: var(--font-heading); }
.testimonial-name { font-size: 13px; font-weight: 700; font-family: var(--font-heading); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }
.carousel-wrapper { position: relative; }
.carousel-track { overflow: hidden; }
.carousel-page { display: none; animation: carouselFadeIn 0.4s ease; }
.carousel-page.active { display: block; }
@keyframes carouselFadeIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.carousel-arrow { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-page); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-secondary); transition: all 0.2s; }
.carousel-arrow:hover { border-color: var(--teal); color: var(--teal); box-shadow: var(--shadow-sm); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all 0.2s; padding: 0; }
.carousel-dot.active { background: var(--teal); transform: scale(1.2); }
.credits-section { padding: var(--section-pad) 0; background: var(--bg-page); }
.credits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.credits-content h2 { font-family: var(--font-heading); font-size: 32px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.8px; margin-bottom: 14px; line-height: 1.2; }
.credits-content > p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }
.credits-tiers { display: flex; flex-direction: column; gap: 12px; }
.credit-tier-row { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.credit-tier-badge { font-family: var(--font-heading); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 6px; min-width: 120px; text-align: center; }
.credit-tier-badge.all-country { background: var(--teal-50); color: var(--teal-dark); border: 1px solid var(--teal-100); }
.credit-tier-badge.individual { background: var(--yellow-100); color: #8a7300; border: 1px solid #f0e5a0; }
.credit-tier-cost { color: var(--text-secondary); }
.credit-tier-cost strong { color: var(--text-primary); font-weight: 600; }
.credits-visual { background: var(--bg-page); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-md); }
.credits-visual h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; text-align: center; background: linear-gradient(135deg, rgba(42,157,143,0.06), rgba(42,157,143,0.02)); padding: 10px 16px; border-radius: var(--radius-sm); border: 1px solid rgba(42,157,143,0.08); }
.credits-example-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }
.credits-example-box { text-align: center; padding: 14px 12px; border-radius: var(--radius-sm); flex: 1; }
.credits-example-box.input { background: var(--teal-50); border: 1px solid var(--teal-100); }
.credits-example-box.output { background: var(--yellow-100); border: 1px solid #f0e5a0; }
.credits-example-box .val { font-family: var(--font-heading); font-size: 24px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.credits-example-box.input .val { color: var(--teal); }
.credits-example-box.output .val { color: #8a7300; }
.credits-example-box .label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.credits-arrow { color: var(--text-muted); flex-shrink: 0; }
.credits-conversion-table { margin-top: 20px; border-top: 1px solid var(--border-light); padding-top: 16px; }
.credits-conversion-table table { width: 100%; border-collapse: collapse; }
.credits-conversion-table th { font-family: var(--font-heading); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); padding: 6px 8px; text-align: left; }
.credits-conversion-table td { font-size: 13px; color: var(--text-secondary); padding: 6px 8px; border-top: 1px solid var(--border-light); }
.credits-conversion-table td strong { color: var(--text-primary); font-weight: 600; }
.faq-section { padding: var(--section-pad) 0; background: linear-gradient(175deg, #f6faf8 0%, #f7f9fb 50%, #faf8f3 100%); border-top: 1px solid var(--border-light); }
.faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
.faq-left h2 { font-family: var(--font-heading); font-size: 30px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.8px; margin-bottom: 12px; line-height: 1.2; }
.faq-left p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.faq-left a { font-size: 14px; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.faq-left a:hover { gap: 9px; }
.faq-item { border-bottom: 1px solid var(--border); transition: all 0.3s; border-left: 3px solid transparent; padding-left: 0; }
.faq-item.open { border-left-color: var(--teal); padding-left: 16px; background: rgba(42,157,143,0.02); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.faq-question { width: 100%; background: none; border: none; padding: 20px 0; font-size: 15px; font-weight: 600; font-family: var(--font-heading); color: var(--text-primary); text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: color 0.2s; }
.faq-question:hover { color: var(--teal); }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s; color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 600px; }
.final-cta { padding: 76px 0; background: linear-gradient(135deg, #e4f2ed 0%, #edf8f5 40%, #fef9ed 80%, #fff7db 100%); text-align: center; border-top: 1px solid var(--teal-100); position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -60px; right: -40px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(42,157,143,0.08) 0%, transparent 70%); pointer-events: none; }
.final-cta::after { content: ''; position: absolute; bottom: -80px; left: -60px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(255,214,0,0.1) 0%, transparent 70%); pointer-events: none; }
.final-cta h2 { font-family: var(--font-heading); font-size: 34px; color: var(--text-primary); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 10px; }
.final-cta p { font-size: 16px; color: var(--text-secondary); margin-bottom: 28px; max-width: 460px; margin-left: auto; margin-right: auto; }
.final-cta-buttons { display: flex; align-items: center; justify-content: center; gap: 14px; }
.btn-teal-lg { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--text-primary); background: linear-gradient(135deg, var(--yellow), #ffe033); padding: 14px 32px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: all 0.25s; text-transform: uppercase; letter-spacing: 0.3px; box-shadow: 0 4px 14px rgba(255,214,0,0.3); }
.btn-teal-lg:hover,
.btn-teal-lg:focus,
.btn-teal-lg:active,
a.btn-teal-lg:hover,
a.btn-teal-lg:focus,
a.btn-teal-lg:active {
  background: linear-gradient(135deg, #ffe033, var(--yellow));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,214,0,0.4);
  color: var(--text-primary) !important;
}
.btn-outline { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--text-primary); border: 2px solid var(--border); background: var(--bg-page); padding: 12px 28px; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
@media (max-width: 1100px) {
  :root { --pricing-card-width: 200px; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-4px); }
}
@media (max-width: 1024px) { :root { --section-pad: 68px; } .pricing-hero h1 { font-size: 40px; } .trial-wrapper { grid-template-columns: 1fr; } .credits-grid { grid-template-columns: 1fr; } .faq-layout { grid-template-columns: 1fr; gap: 32px; } .features-grid { grid-template-columns: 1fr 1fr; } .testimonials-grid { grid-template-columns: 1fr 1fr; } .final-cta h2 { font-size: 24px; } .final-cta-buttons { flex-direction: column; } .onetime-form { flex-direction: column; } .onetime-card { padding: 24px 20px; } .trial-card { padding: 28px 20px; } .url-banner { font-size: 13px; padding: 8px 16px; } }
@media (max-width: 768px) {
  :root { --section-pad: 52px; }
  main .container { padding: 0 20px; }
  body.pricing main.flex-shrink-0 { padding-top: 60px !important; }

  .pricing-hero { padding: 116px 0 40px; }
  .pricing-hero h1 { font-size: 32px; }
  .pricing-hero-sub { font-size: 15px; }
  .section-title { font-size: 26px; }
  .plans-include { gap: 12px; }
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  .pricing-card {
    flex: 0 1 auto;
    max-width: min(400px, 100%);
    width: 100%;
  }
  .pricing-card.popular { transform: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .final-cta h2 { font-size: 24px; }
  .final-cta-buttons { flex-direction: column; }
  .onetime-form { flex-direction: column; }
  .onetime-card { padding: 24px 20px; }
  .trial-card { padding: 28px 20px; }
  .url-banner { font-size: 13px; padding: 8px 16px; }
}
@media (max-width: 480px) { main .container { padding: 0 16px; } .pricing-hero { padding: 106px 0 36px; } .pricing-hero h1 { font-size: 28px; } .pricing-hero { padding: 106px 0 36px; } .section-title { font-size: 22px; } .credits-visual { padding: 20px 16px; } .credits-example-row { flex-direction: column; gap: 8px; } .credits-arrow { transform: rotate(90deg); } .btn-teal-lg, .btn-outline { width: 100%; text-align: center; } }