:root {
    --bg-dark: #03151D;
    --bg-darker: #010c11;
    --teal: #00A3AD;
    --teal-glow: rgba(0, 163, 173, 0.4);
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-text: #A0AEC0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-accent: 'Dancing Script', cursive;
}

.script-font {
    font-family: var(--font-accent);
    color: var(--teal);
    font-size: 1.2em;
    font-weight: 700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.center {
    text-align: center;
}

.section-header.center, .solution-content.center {
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.header {
    background: rgba(3, 21, 29, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
}

.logo img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

/* Buttons */
.btn {
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--teal);
    border-radius: 50px;
}

.btn-primary:hover {
    background: var(--teal);
    box-shadow: 0 0 15px var(--teal-glow);
}

.btn-teal {
    background: var(--teal);
    color: var(--white);
    border: none;
    box-shadow: 0 8px 15px rgba(0, 163, 173, 0.2);
}

.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px var(--teal-glow);
}

.btn-rounded {
    border-radius: 50px;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-pill-special {
    background-color: #195863;
    color: #ffffff;
    border-radius: 50px;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    font-weight: 400;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    box-shadow: none;
    letter-spacing: normal;
}

.btn-pill-special:hover {
    background-color: #1e6b78;
    color: #ffffff;
}

.btn-pill-special .arrow-icon {
    margin-left: 1.5rem;
    width: 28px;
    height: 28px;
}

/* Hero Section */
.hero {
    padding: 200px 0 100px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 800px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.hero-glow {
    position: absolute;
    top: 0;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.badge {
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: block;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.hero-title .highlight {
    color: var(--teal);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin: 0 auto 3rem auto;
    max-width: 600px;
}

.icon-teal {
    color: var(--teal);
    width: 24px;
    height: 24px;
}

.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tech-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--teal);
    opacity: 0.3;
    animation: drift 10s infinite linear alternate;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(30px, 30px); }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(0, 163, 173, 0.25);
    box-shadow: 0 0 80px rgba(0, 163, 173, 0.15);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: float 7s ease-in-out infinite;
}

.hero-img-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 80px rgba(0, 163, 173, 0.25);
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.03) translateY(-12px); }
}

.btn-glow {
    box-shadow: 0 0 20px var(--teal-glow);
    animation: glow-pulse 2s infinite ease-in-out;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px var(--teal-glow); }
    50% { box-shadow: 0 0 40px var(--teal); }
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--glass-border);
}

/* Visual Mockup/Abstract */
.tech-abstract {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orb {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 80%);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 4s infinite ease-in-out;
}

.ring {
    position: absolute;
    border: 1px solid var(--teal-glow);
    border-radius: 50%;
    animation: rotate 10s infinite linear;
}

.ring:nth-child(2) { width: 300px; height: 300px; border-style: dashed; }
.ring:nth-child(3) { width: 350px; height: 350px; animation-duration: 15s; animation-direction: reverse; }
.ring:nth-child(4) { width: 400px; height: 400px; border-style: dotted; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.9; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: var(--bg-darker);
}

.section-header.center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.section-description {
    color: var(--gray-text);
    font-size: 1.1rem;
}

/* Solution Two-Column */
.solution-two-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.solution-image {
    display: flex;
    justify-content: center;
}

.solution-img-wrapper-float {
    position: relative;
    width: 600px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rocket-particles-container {
    position: relative;
}

#neon-dust-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.neon-dust-particle {
    position: absolute;
    top: 50%;
    left: 30%;
    border-radius: 50%;
    background: #00e5ff;
    box-shadow: 0 0 15px 5px rgba(0, 229, 255, 0.8), 0 0 30px 10px rgba(0, 163, 173, 0.6);
    filter: blur(2px);
    opacity: 0;
    will-change: transform, opacity;
}

@keyframes crumble {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { opacity: 0.8; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

.solution-img-float {
    width: 110%;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 163, 173, 0.4));
    z-index: 2;
    position: relative;
}



.steps-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    max-width: 400px;
}

.step-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0, 163, 173, 0.1);
    border: 1px solid rgba(0, 163, 173, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.step-item p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.section-title.left, .section-description.left {
    text-align: left;
}

/* Target Section */
.target {
    padding: 100px 0;
}

.target-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.target-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 1rem 2.5rem;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.target-item:hover {
    border-color: var(--teal);
    background: rgba(0, 163, 173, 0.08);
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: radial-gradient(circle at bottom, #002d33, var(--bg-dark) 50%);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--teal);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.pricing-value {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
}

.amount {
    font-size: 5rem;
    font-weight: 800;
    color: var(--teal);
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    font-weight: 300;
    font-size: 1.1rem;
    color: #e2e8f0;
    padding: 0.5rem 0;
}

.faq-answer {
    padding-top: 1rem;
    color: var(--gray-text);
    display: none;
}

/* Footer */
.footer {
    padding: 100px 0 60px;
    background: #000000;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 200px;
    width: auto;
    opacity: 1;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.company-details {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-bottom: 0.5rem;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: #cbd5e0;
    font-weight: 400;
}

.developer {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 0.5rem;
}

.payment-methods-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    opacity: 0.95;
}

.pagamentos-img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.payment-methods span {
    font-size: 0.8rem;
    color: var(--gray-text);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-visual, .solution-image { display: none; }
    .section-title.left, .section-description.left { text-align: center; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .header-container { padding: 0.5rem 1rem; }
    .logo img { height: 70px; }
    .nav .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero { padding: 160px 0 60px; min-height: auto; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 2rem; }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        padding: 1.2rem;
        border-radius: 25px;
    }
    .stat-divider { display: none; }
    
    .problem, .solution, .target, .pricing, .faq { padding: 60px 0; }
    .section-title { font-size: 2rem; }
    .section-description { font-size: 1rem; }
    
    .pricing-card { padding: 2.5rem 1.5rem; }
    .amount { font-size: 4rem; }
    .btn-pill-special {
        font-size: 1.2rem;
        padding: 1.2rem;
        width: 100%;
    }
    .btn-pill-special .arrow-icon { width: 24px; height: 24px; margin-left: 1rem; }
    
    .target-grid { gap: 1rem; }
    .target-item { padding: 0.8rem 1.2rem; font-size: 0.95rem; }
    
    .footer { padding: 60px 0 40px; }
    .footer-logo { height: 120px; }
}

/* Visual refresh */
:root {
    --bg-dark: #071b24;
    --bg-darker: #041117;
    --teal: #00aab4;
    --teal-bright: #32d5d8;
    --navy-soft: #102a35;
    --gray-text: #a9bdc5;
    --glass: rgba(255, 255, 255, 0.045);
    --glass-border: rgba(194, 232, 235, 0.14);
}

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

body {
    background:
        radial-gradient(circle at 8% 5%, rgba(0, 170, 180, 0.08), transparent 23rem),
        var(--bg-dark);
}

.container {
    max-width: 1180px;
}

.header {
    background: rgba(4, 17, 23, 0.78);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-container {
    min-height: 84px;
    padding-top: 0;
    padding-bottom: 0;
}

.logo img {
    height: 92px;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.16) 48%, transparent 70%);
    transform: translateX(-120%);
    transition: transform .55s ease;
}

.btn:hover::after {
    transform: translateX(120%);
}

.hero {
    min-height: 760px;
    padding: 170px 0 92px;
    background:
        linear-gradient(180deg, rgba(4,17,23,.1), rgba(4,17,23,.76)),
        radial-gradient(circle at 50% 38%, rgba(0,170,180,.15), transparent 32rem);
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(0,170,180,.12);
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    width: 680px;
    height: 680px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
}

.hero::after {
    width: 540px;
    height: 540px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
}

.hero-glow {
    right: 50%;
    top: 45%;
    transform: translate(50%, -50%);
    opacity: .48;
}

.hero-content {
    max-width: 940px;
}

.badge {
    display: inline-flex;
    padding: .55rem 1rem;
    border: 1px solid rgba(50,213,216,.28);
    border-radius: 999px;
    background: rgba(0,170,180,.08);
    color: var(--teal-bright);
    letter-spacing: 1.6px;
}

.hero-title {
    max-width: 930px;
    font-size: clamp(3.2rem, 5vw, 4.5rem);
    letter-spacing: -.045em;
    line-height: 1.02;
    margin-bottom: 1.6rem;
}

.script-font {
    color: var(--teal-bright);
    text-shadow: 0 0 28px rgba(50,213,216,.2);
}

.hero-subtitle {
    max-width: 700px;
    margin-bottom: 2rem;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem 1rem;
    width: min(100%, 720px);
    margin-bottom: 2.2rem;
}

.benefit-item {
    justify-content: flex-start;
    padding: .82rem 1rem;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    text-align: left;
}

.benefit-item svg {
    flex: 0 0 auto;
}

.btn-large {
    padding: 1.18rem 2.3rem;
    border-radius: 999px;
}

.hero-stats {
    background: rgba(4,17,23,.62);
    border-color: rgba(50,213,216,.17);
}

.problem {
    padding: 92px 0;
    background: #f4f8f9;
    color: #15323d;
}

.problem .section-title {
    color: #15323d;
    letter-spacing: -.035em;
}

.problem .text-white {
    color: var(--teal);
}

.problem .section-description {
    max-width: 760px;
    margin: 0 auto;
    color: #58727c;
}

.solution {
    padding: 105px 0 86px;
    position: relative;
    background:
        radial-gradient(circle at 50% 0, rgba(0,170,180,.13), transparent 30rem),
        var(--bg-dark);
}

.solution-content {
    width: 100%;
}

.solution .section-description {
    max-width: 650px;
    margin: 0 auto;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.15rem;
    margin-top: 3.2rem;
}

.deliverables-grid .step-item {
    max-width: none;
    min-height: 230px;
    padding: 2rem 1.35rem;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    box-shadow: 0 18px 46px rgba(0,0,0,.14);
    transition: transform .25s ease, border-color .25s ease;
}

.deliverables-grid .step-item:hover {
    transform: translateY(-5px);
    border-color: rgba(50,213,216,.42);
}

.deliverables-grid .step-icon {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    box-shadow: 0 0 0 8px rgba(0,170,180,.045);
}

.bonus-section {
    position: relative;
    overflow: hidden;
    padding: 68px 0;
    background: linear-gradient(135deg, #008e98, #006771);
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.bonus-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    right: -140px;
    top: -270px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.2), transparent 68%);
}

.bonus-container {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.7rem;
}

.bonus-icon {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background: rgba(4,17,23,.28);
    border: 1px solid rgba(255,255,255,.26);
    box-shadow: 0 15px 38px rgba(0,0,0,.2), 0 0 0 9px rgba(255,255,255,.06);
}

.bonus-icon svg {
    width: 40px;
    height: 40px;
}

.bonus-copy h3 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -.055em;
    margin-bottom: .7rem;
}

.bonus-copy p {
    color: rgba(255,255,255,.82);
    font-size: 1.1rem;
}

.bonus-visual {
    position: relative;
    display: flex;
    gap: 2.1rem;
    padding: 0 .5rem;
}

.bonus-visual::before {
    content: '';
    position: absolute;
    left: 17px;
    right: 17px;
    top: 50%;
    border-top: 2px dashed rgba(255,255,255,.45);
}

.bonus-visual span {
    position: relative;
    width: 34px;
    height: 34px;
    border: 7px solid rgba(255,255,255,.2);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(4,17,23,.2);
}

.target {
    padding: 100px 0;
    background: #f4f8f9;
    color: #15323d;
}

.target .section-title {
    color: #15323d;
}

.target .section-header p {
    color: #58727c;
}

.target-item {
    color: #15323d;
    background: #fff;
    border-color: #dce8eb;
    box-shadow: 0 8px 24px rgba(21,50,61,.06);
}

.pricing {
    padding: 110px 0;
    background:
        radial-gradient(circle at 50% 100%, rgba(0,170,180,.18), transparent 35rem),
        var(--bg-darker);
}

.pricing-card {
    position: relative;
    max-width: 650px;
    padding: 4rem;
    border-color: rgba(50,213,216,.62);
    background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
    box-shadow: 0 30px 90px rgba(0,0,0,.35), 0 0 0 8px rgba(0,170,180,.035);
}

.pricing-header h3 {
    font-size: 1.7rem;
}

.pricing-header p {
    color: var(--gray-text);
}

.pricing-value {
    flex-wrap: wrap;
}

.pricing-value .period {
    flex-basis: 100%;
    color: var(--gray-text);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.pricing-features li svg {
    flex: 0 0 auto;
    color: var(--teal-bright);
}

.btn-pill-special {
    background: var(--teal);
    box-shadow: 0 12px 30px rgba(0,170,180,.25);
}

.faq {
    padding: 100px 0;
    background: #f4f8f9;
    color: #15323d;
}

.faq .section-title {
    color: #15323d;
}

.faq-list {
    display: grid;
    gap: .75rem;
}

.faq-item {
    padding: 1.15rem 1.35rem;
    background: #fff;
    border: 1px solid #dce8eb;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(21,50,61,.045);
}

.faq-question {
    color: #24434f;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer {
    color: #58727c;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-question svg {
    flex: 0 0 auto;
    transition: transform .2s ease;
}

.faq-item.is-open .faq-question svg {
    transform: rotate(180deg);
}

.footer {
    background: #020a0d;
}

@media (max-width: 900px) {
    .deliverables-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .deliverables-grid .step-item {
        min-height: 0;
    }

    .bonus-container {
        grid-template-columns: auto 1fr;
    }

    .bonus-visual {
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: .8rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        min-height: 68px;
    }

    .logo img {
        height: 68px;
    }

    .hero {
        min-height: auto;
        padding-top: 135px;
    }

    .hero::before {
        width: 510px;
        height: 510px;
    }

    .hero::after {
        width: 390px;
        height: 390px;
    }

    .hero-title {
        font-size: clamp(2.25rem, 9vw, 3.2rem);
    }

    .problem,
    .solution,
    .target,
    .pricing,
    .faq {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .bonus-section {
        padding: 58px 0;
    }

    .pricing-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 560px) {
    .container {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .header-container {
        padding-left: .8rem;
        padding-right: .8rem;
    }

    .nav .btn-primary {
        max-width: 170px;
        line-height: 1.2;
        text-align: center;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        gap: .7rem;
        padding: .9rem .6rem;
    }

    .hero-stats .stat-divider {
        display: block;
        width: 1px;
        height: 30px;
    }

    .stat-val {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: .62rem;
    }

    .bonus-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bonus-icon,
    .bonus-visual {
        justify-self: center;
    }

    .bonus-copy h3 {
        font-size: 2.55rem;
    }

    .amount {
        font-size: 3.6rem;
    }

    .currency {
        font-size: .9rem;
    }

    .copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo img { height: 50px; }
    .nav .btn-primary {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .hero { padding: 130px 0 50px; }
    .hero-title { font-size: 1.8rem; }
    .badge { font-size: 0.7rem; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 1rem; }
    
    .btn-large { padding: 1rem; font-size: 1rem; width: 100%; text-align: center; }
    
    .hero-stats { gap: 1rem; flex-direction: column; width: 100%; align-items: center; }
    .stat-divider { display: block; width: 100%; height: 1px; }
    
    .section-title { font-size: 1.7rem; }
    
    .step-item h3 { font-size: 1.1rem; }
    .step-item p { font-size: 0.9rem; }
    
    .amount { font-size: 3rem; }
    .pricing-card { padding: 1.5rem; }
    
    .btn-pill-special { font-size: 1.1rem; padding: 1rem; }
    .btn-pill-special .arrow-icon { margin-left: 0.5rem; }
    
    .faq-question { font-size: 1rem; align-items: center; }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 340px;
    background: rgba(3, 21, 29, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 163, 173, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    z-index: 9999;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    width: 100%;
}

.cookie-content p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: var(--teal);
    text-decoration: underline;
}

.cookie-content button {
    width: 100%;
    padding: 0.8rem;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }
}
