/* Premium Pricing Page - High Conversion Design */

:root {
    --navy: #061842;
    --navy-2: #0a2661;
    --blue: #075fff;
    --blue-2: #0797ff;
    --green: #00df78;
    --red: #ff4757;
    --ink: #07183b;
    --muted: #66738c;
    --paper: #f5f8ff;
    --white: #fff;
    --line: #dfe7f5;
    --shadow: 0 28px 80px rgba(5, 31, 88, .13);
}

/* As seções desta página são full-bleed; o sales.css limita o main por padrão. */
body > main {
    width: 100%;
    max-width: none;
}

/* ===== HERO SECTION ===== */
.hero-premium {
    min-height: 760px;
    padding: 96px max(24px, calc((100% - 1220px) / 2)) 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #041536 0%, #07317d 50%, #0a2661 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: blob-float 8s infinite ease-in-out;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: #00df78;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: #0797ff;
    bottom: -100px;
    left: 10%;
    animation-delay: 2s;
}

.hero-blob-3 {
    width: 500px;
    height: 500px;
    background: #00df78;
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-premium-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 223, 120, 0.15);
    border: 1px solid rgba(0, 223, 120, 0.3);
    color: #00df78;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    animation: fade-in-up 0.8s ease-out;
}

.hero-title {
    font: 800 clamp(34px, 4.8vw, 58px) / 1.1 "Manrope", sans-serif;
    margin: 0 0 24px;
    letter-spacing: -0.045em;
    animation: fade-in-up 0.8s ease-out 0.1s both;
}

.highlight-green {
    color: #00df78;
    position: relative;
}

.highlight-green::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00df78, transparent);
    border-radius: 2px;
}

.highlight-red {
    color: #ff4757;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 48px;
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

.hero-subtitle strong {
    color: #00df78;
    font-weight: 700;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: fade-in-up 0.8s ease-out 0.3s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font: 800 32px "Manrope", sans-serif;
    color: #00df78;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero CTA */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    animation: fade-in-up 0.8s ease-out 0.4s both;
}

.cta-large {
    min-height: 60px;
    padding: 0 36px;
    font-size: 16px;
    box-shadow: 0 20px 50px rgba(7, 95, 255, .24);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 60px;
    padding: 0 32px;
    border: 2px solid rgba(0, 223, 120, 0.8);
    border-radius: 15px;
    color: white;
    background: rgba(0, 223, 120, 0.13);
    box-shadow: 0 22px 45px rgba(0, 223, 120, 0.18);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 223, 120, 1);
    background: rgba(0, 223, 120, 0.22);
    box-shadow: 0 26px 55px rgba(0, 223, 120, 0.24);
}

.cta-hero-free {
    min-width: 260px;
    justify-content: center;
    border: 2px solid rgba(0, 223, 120, 0.95);
    color: #041536;
    background: linear-gradient(135deg, var(--green), #00c96d);
    box-shadow: 0 22px 55px rgba(0, 223, 120, 0.28);
}

.cta-hero-free:hover {
    border-color: #ffffff;
    box-shadow: 0 28px 65px rgba(0, 223, 120, 0.36);
}

.cta-hero-free b {
    color: #041536;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PAIN SECTION ===== */
.pain-section {
    padding: 88px max(24px, calc((100% - 1220px) / 2));
    background: var(--paper);
}

.pain-container {
    max-width: 1220px;
    margin: 0 auto;
}

.pain-section h2 {
    text-align: center;
    margin: 0 0 40px;
    font: 800 clamp(32px, 5vw, 48px) / 1.1 "Manrope", sans-serif;
    color: var(--ink);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.pain-card {
    padding: 32px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(6, 32, 85, 0.04);
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pain-card.animate-in {
    animation: fade-in-up 0.6s ease-out forwards;
    opacity: 1;
}

.pain-card:nth-child(1).animate-in { animation-delay: 0.1s; }
.pain-card:nth-child(2).animate-in { animation-delay: 0.2s; }
.pain-card:nth-child(3).animate-in { animation-delay: 0.3s; }
.pain-card:nth-child(4).animate-in { animation-delay: 0.4s; }

.pain-card:hover {
    transform: translateY(-8px);
    border-color: #ff4757;
    box-shadow: 0 20px 50px rgba(255, 71, 87, 0.15);
}

.pain-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.pain-card h3 {
    margin: 0 0 12px;
    font: 700 18px "Manrope", sans-serif;
    color: var(--ink);
}

.pain-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.pain-highlight {
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(255, 71, 87, 0.05));
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: 12px;
    text-align: center;
    color: #ff4757;
    font-weight: 700;
    font-size: 14px;
}

/* ===== SELLER AUTHORITY SECTION ===== */
.seller-authority-section {
    padding: 96px max(24px, calc((100% - 1220px) / 2));
    background: linear-gradient(135deg, #ffffff 0%, #f5f8ff 58%, #edfff6 100%);
}

.seller-authority-container {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
    gap: 36px;
    align-items: stretch;
}

.seller-authority-copy {
    padding: 8px 0;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.section-kicker::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: var(--green);
}

.seller-authority-copy h2 {
    max-width: 780px;
    margin: 18px 0 22px;
    font: 800 clamp(32px, 4.7vw, 52px) / 1.08 "Manrope", sans-serif;
    color: var(--ink);
    letter-spacing: -0.045em;
}

.seller-authority-copy p {
    max-width: 760px;
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.authority-callout {
    max-width: 790px;
    margin: 28px 0 26px;
    padding: 24px 26px;
    border: 1px solid rgba(7, 95, 255, 0.14);
    border-left: 5px solid var(--green);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 45px rgba(6, 32, 85, 0.06);
}

.authority-callout strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font: 800 18px "Manrope", sans-serif;
}

.authority-callout span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.marketplace-cost-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 840px;
}

.marketplace-cost-grid div {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    box-shadow: 0 12px 34px rgba(6, 32, 85, 0.045);
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.marketplace-cost-grid div.animate-in {
    animation: fade-in-up 0.6s ease-out forwards;
}

.marketplace-cost-grid div:hover {
    transform: translateY(-5px);
    border-color: rgba(7, 95, 255, 0.28);
    box-shadow: 0 18px 45px rgba(7, 95, 255, 0.1);
}

.marketplace-cost-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font: 800 14px "Manrope", sans-serif;
}

.marketplace-cost-grid span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.seller-authority-panel {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    color: white;
    background: linear-gradient(145deg, #041536, #07317d 62%, #0a2661);
    box-shadow: 0 28px 70px rgba(5, 31, 88, 0.22);
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
}

.seller-authority-panel.animate-in {
    animation: fade-in-up 0.6s ease-out forwards;
}

.seller-authority-panel > span {
    color: #8eb8ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.seller-authority-panel > strong {
    display: block;
    margin: 10px 0 16px;
    color: var(--green);
    font: 800 clamp(44px, 6vw, 68px) / 1 "Manrope", sans-serif;
    letter-spacing: -0.04em;
}

.seller-authority-panel p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.75;
}

.seller-authority-panel ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 13px;
}

.seller-authority-panel li {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.seller-authority-panel li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 7px;
    color: #003c20;
    background: var(--green);
    font-weight: 900;
    font-size: 12px;
}

.cta-authority {
    width: 100%;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--green), #00c96d);
    box-shadow: 0 18px 38px rgba(0, 223, 120, 0.22);
}

.cta-authority b {
    color: white;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    padding: 88px max(24px, calc((100% - 1220px) / 2));
    background: white;
}

.solution-container {
    max-width: 1220px;
    margin: 0 auto;
}

.solution-section h2 {
    text-align: center;
    margin: 0 0 16px;
    font: 800 clamp(32px, 5vw, 48px) / 1.1 "Manrope", sans-serif;
    color: var(--ink);
}

.solution-intro {
    text-align: center;
    font-size: 16px;
    color: var(--muted);
    margin: 0 0 40px;
}

.solution-demo {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    padding: 32px;
    background: linear-gradient(135deg, #f5f8ff, #edfff6);
    border: 2px solid var(--line);
    border-radius: 16px;
    margin-bottom: 32px;
}

.demo-label {
    font: 700 14px "Manrope", sans-serif;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.demo-item {
    padding: 12px 0;
    color: var(--muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-arrow {
    font-size: 32px;
    color: var(--blue);
    font-weight: 800;
}

.demo-output .demo-item {
    color: var(--ink);
    font-weight: 600;
}

.solution-highlight {
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 223, 120, 0.1), rgba(0, 223, 120, 0.05));
    border: 1px solid rgba(0, 223, 120, 0.2);
    border-radius: 12px;
    text-align: center;
    color: #00df78;
    font-weight: 700;
    font-size: 14px;
}

/* ===== BEFORE/AFTER SECTION ===== */
.before-after-section {
    padding: 88px max(24px, calc((100% - 1220px) / 2));
    background: var(--paper);
}

.before-after-section h2 {
    text-align: center;
    margin: 0 0 40px;
    font: 800 clamp(32px, 5vw, 48px) / 1.1 "Manrope", sans-serif;
    color: var(--ink);
}

.before-after-container {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
}

.before-after-card {
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--line);
}

.before-after-card h3 {
    margin: 0 0 24px;
    font: 700 20px "Manrope", sans-serif;
}

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

.before-after-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.before-after-card li:last-child {
    border-bottom: none;
}

.before h3 {
    color: #ff4757;
}

.before {
    background: rgba(255, 71, 87, 0.05);
    border-color: rgba(255, 71, 87, 0.2);
}

.after h3 {
    color: #00df78;
}

.after {
    background: rgba(0, 223, 120, 0.05);
    border-color: rgba(0, 223, 120, 0.2);
}

.before-after-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--blue);
    font-size: 24px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 88px max(24px, calc((100% - 1220px) / 2));
    background: white;
}

.features-section h2 {
    text-align: center;
    margin: 0 0 40px;
    font: 800 clamp(32px, 5vw, 48px) / 1.1 "Manrope", sans-serif;
    color: var(--ink);
}

.features-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card.animate-in {
    animation: fade-in-up 0.6s ease-out forwards;
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 20px 50px rgba(7, 95, 255, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h4 {
    margin: 0 0 12px;
    font: 700 18px "Manrope", sans-serif;
    color: var(--ink);
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
.pricing-premium {
    padding: 96px max(24px, calc((100% - 1220px) / 2));
    background: var(--paper);
}

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

.pricing-header h2 {
    margin: 0 0 12px;
    font: 800 clamp(32px, 5vw, 48px) / 1.1 "Manrope", sans-serif;
    color: var(--ink);
}

.pricing-header p {
    margin: 0;
    font-size: 18px;
    color: var(--muted);
}

.pricing-container-premium {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.pricing-card-premium {
    padding: 48px 32px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(6, 32, 85, 0.06);
    display: flex;
    flex-direction: column;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.pricing-card-premium:hover {
    transform: translateY(-8px);
    border-color: #b9cdf6;
    box-shadow: 0 25px 60px rgba(6, 32, 85, 0.12);
}

.pricing-card-featured-premium {
    border: 2px solid var(--blue);
    box-shadow: 0 25px 60px rgba(7, 95, 255, 0.15);
    transform: scale(1.02);
}

.pricing-card-featured-premium:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-badge-premium {
    position: absolute;
    top: -12px;
    left: 32px;
    background: linear-gradient(135deg, var(--blue), #0649d8);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 20px rgba(7, 95, 255, 0.3);
}

.pricing-header-card {
    margin-bottom: 24px;
}

.pricing-header-card h3 {
    margin: 0 0 8px;
    font: 700 24px "Manrope", sans-serif;
    color: var(--ink);
}

.pricing-header-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.pricing-value-premium {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.pricing-value-premium .currency {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
}

.pricing-value-premium .amount {
    font: 800 48px "Manrope", sans-serif;
    color: var(--ink);
}

.pricing-value-premium .period {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
}

.pricing-value-premium .savings {
    width: 100%;
    margin-top: 8px;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.pricing-features-premium {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-features-premium ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features-premium li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.pricing-features-premium .check {
    color: var(--green);
    font-weight: 800;
    flex-shrink: 0;
}

.cta-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
    width: 100%;
    min-height: 56px;
}

.cta-primary-premium {
    background: linear-gradient(135deg, var(--green), #00c96d) !important;
    box-shadow: 0 18px 38px rgba(0, 223, 120, 0.25) !important;
}

.cta-primary-premium:hover {
    box-shadow: 0 22px 45px rgba(0, 223, 120, 0.32) !important;
}

.billing-note {
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--muted);
}

.pricing-note {
    max-width: 1220px;
    margin: 0 auto;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 223, 120, 0.1), rgba(7, 95, 255, 0.05));
    border: 1px solid rgba(0, 223, 120, 0.2);
    border-radius: 12px;
    text-align: center;
    color: var(--ink);
    font-size: 13px;
}

.affiliate-banner {
    max-width: 1220px;
    margin: 24px auto 0;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, #071f4f 0%, #0d4bff 50%, #1ecf8f 100%);
    box-shadow: 0 22px 60px rgba(6, 32, 85, 0.18);
    color: white;
}

.affiliate-banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.affiliate-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.affiliate-banner h3 {
    margin: 0;
    font: 800 28px/1.2 "Manrope", sans-serif;
}

.affiliate-banner p {
    margin: 0;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.affiliate-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    margin-top: 8px;
    border-radius: 999px;
    background: white;
    color: #071f4f;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.affiliate-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 88px max(24px, calc((100% - 1220px) / 2));
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    margin: 0 0 40px;
    font: 800 clamp(32px, 5vw, 48px) / 1.1 "Manrope", sans-serif;
    color: var(--ink);
}

.testimonials-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    padding: 32px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card.animate-in {
    animation: fade-in-up 0.6s ease-out forwards;
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 20px 50px rgba(7, 95, 255, 0.15);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-text {
    margin: 0 0 20px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--ink);
    font-size: 14px;
}

.testimonial-author span {
    color: var(--muted);
    font-size: 12px;
}

/* ===== FAQ SECTION ===== */
.faq-premium {
    padding: 88px max(24px, calc((100% - 1220px) / 2));
    background: var(--paper);
}

.faq-premium h2 {
    text-align: center;
    margin: 0 0 40px;
    font: 800 clamp(32px, 5vw, 48px) / 1.1 "Manrope", sans-serif;
    color: var(--ink);
}

.faq-grid-premium {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.faq-item-premium {
    padding: 24px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(6, 32, 85, 0.04);
    opacity: 1;
    display: block;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faq-item-premium.animate-in {
    animation: fade-in-up 0.6s ease-out forwards;
    opacity: 1;
}

.faq-item-premium h4 {
    margin: 0 0 12px;
    font: 700 16px "Manrope", sans-serif;
    color: var(--ink);
}

.faq-item-premium p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-premium {
    padding: 96px max(24px, calc((100% - 1220px) / 2));
    background: linear-gradient(135deg, #041536, #07317d);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-premium::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 223, 120, 0.1), transparent 70%);
    left: -200px;
    bottom: -200px;
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-premium h2 {
    font: 800 clamp(36px, 5vw, 56px) / 1.1 "Manrope", sans-serif;
    margin: 0 0 16px;
    letter-spacing: -0.045em;
}

.final-cta-premium p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 40px;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 24px;
}

.final-cta-buttons .cta {
    min-width: 280px;
}

.final-cta-note {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.final-cta-note a {
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.final-cta-note a:hover {
    text-decoration: underline;
}

/* ===== TRUST SECTION ===== */
.trust-final {
    padding: 60px max(20px, calc((100% - 1220px) / 2));
    background: white;
    text-align: center;
    border-top: 1px solid var(--line);
}

.trust-final h3 {
    margin: 0 0 24px;
    font: 700 16px "Manrope", sans-serif;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-badges-final {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.trust-badges-final span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.trust-badges-final span::first-letter {
    color: var(--green);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-premium {
        min-height: auto;
        padding: 60px max(20px, calc((100% - 1220px) / 2)) 40px;
    }

    .solution-demo {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .demo-arrow {
        transform: rotate(90deg);
    }

    .before-after-container {
        grid-template-columns: 1fr;
    }

    .seller-authority-container {
        grid-template-columns: 1fr;
    }

    .marketplace-cost-grid {
        grid-template-columns: 1fr;
    }

    .before-after-divider {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .pricing-container-premium {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured-premium {
        transform: scale(1);
    }

    .pricing-card-featured-premium:hover {
        transform: translateY(-8px);
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .final-cta-buttons .cta {
        width: 100%;
    }
}

@media (max-width: 580px) {
    .hero-premium {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.12;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .cta-large {
        width: 100%;
    }

    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .pain-section,
    .seller-authority-section,
    .solution-section,
    .before-after-section,
    .features-section,
    .pricing-premium,
    .testimonials-section,
    .faq-premium,
    .final-cta-premium,
    .trust-final {
        padding: 40px 20px;
    }

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

    .seller-authority-panel,
    .authority-callout {
        padding: 24px;
    }

    .solution-demo {
        padding: 24px;
    }

    .pricing-card-premium {
        padding: 24px 16px;
    }

    .pricing-badge-premium {
        left: 20px;
    }

    .pricing-value-premium .amount {
        font-size: 36px;
    }

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

    .faq-grid-premium {
        grid-template-columns: 1fr;
    }

    .trust-badges-final {
        flex-direction: column;
        gap: 12px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Highlight classes */
.highlight-green {
    color: #00df78;
}

.highlight-red {
    color: #ff4757;
}
