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

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.fixed-bg {
    position: fixed;
    inset: 0;
    opacity: 0.3;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
}

.bg-circle-1 {
    top: 80px;
    left: 40px;
    width: 128px;
    height: 128px;
    background: #8b5cf6;
}

.bg-circle-2 {
    top: 160px;
    right: 80px;
    width: 96px;
    height: 96px;
    background: #3b82f6;
    animation-delay: 1s;
}

.bg-circle-3 {
    bottom: 160px;
    left: 33.333333%;
    width: 160px;
    height: 160px;
    background: #a855f7;
    animation-delay: 2s;
}

.bg-circle-4 {
    top: 240px;
    left: 50%;
    width: 80px;
    height: 80px;
    background: #22d3ee;
    animation-delay: 0.5s;
}

.bg-circle-5 {
    bottom: 80px;
    right: 40px;
    width: 112px;
    height: 112px;
    background: #7c3aed;
    animation-delay: 1.5s;
}

.particles {
    position: fixed;
    inset: 0;
    opacity: 0.2;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #8b5cf6;
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.main-content {
    position: relative;
    z-index: 10;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 32px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Typography */
.main-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.1;
    padding: 0 8px;
}

@media (min-width: 640px) {
    .main-title {
        font-size: 3rem;
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) {
    .main-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .main-title {
        font-size: 6rem;
    }
}

@media (min-width: 1280px) {
    .main-title {
        font-size: 8rem;
    }
}

.subtitle {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    padding: 0 8px;
}

@media (min-width: 640px) {
    .subtitle {
        font-size: 1.25rem;
        margin-bottom: 32px;
    }
}

@media (min-width: 768px) {
    .subtitle {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .subtitle {
        font-size: 2.25rem;
    }
}

@media (min-width: 1280px) {
    .subtitle {
        font-size: 3rem;
    }
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding: 0 8px;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1280px) {
    .section-title {
        font-size: 3rem;
    }
}

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

.gradient-text {
    background: linear-gradient(to right, #a78bfa, #c4b5fd, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text-alt {
    background: linear-gradient(to right, #a78bfa, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.white-text {
    color: #fff;
}

.highlight-violet {
    color: #a78bfa;
    font-weight: 600;
}

.highlight-cyan {
    color: #22d3ee;
    font-weight: 600;
}

.highlight-purple {
    color: #c084fc;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
}

@media (min-width: 640px) {
    .hero-section {
        padding: 32px;
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 16px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://i.postimg.cc/43cpjY9y/freepik-rosesoares-futuristic-scifi-photoshoot-of-a-confid-64551.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent, rgba(0,0,0,0.8));
}

.hero-content {
    max-width: 1536px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
    transform: translateY(0);
    opacity: 1;
    transition: all 1s ease;
    padding: 8px;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 16px;
    }
}

.hero-text {
    margin-bottom: 32px;
}

.hero-description {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.6;
    max-width: 1280px;
    margin: 0 auto 32px;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1rem;
        margin-bottom: 48px;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

/* Buttons */
.cta-button {
    display: inline-block;
    width: 100%;
    max-width: 512px;
    margin: 0 16px;
    background: linear-gradient(to right, #16a34a, #059669);
    color: white;
    font-weight: 700;
    padding: 24px 16px;
    border-radius: 16px;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

@media (min-width: 640px) {
    .cta-button {
        margin: 0 auto;
        padding: 32px 24px;
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .cta-button {
        padding: 32px 32px;
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-button {
        font-size: 1.5rem;
    }
}

.cta-button:hover {
    background: linear-gradient(to right, #15803d, #047857);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.5);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Sections */
.benefits-section,
.results-section {
    padding: 48px 24px;
    background: linear-gradient(to right, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    backdrop-filter: blur(4px);
}

@media (min-width: 640px) {
    .benefits-section,
    .results-section {
        padding: 64px 32px;
    }
}

@media (min-width: 768px) {
    .benefits-section,
    .results-section {
        padding: 80px 16px;
    }
}

.technical-section,
.expert-section {
    padding: 48px 24px;
    position: relative;
}

@media (min-width: 640px) {
    .technical-section,
    .expert-section {
        padding: 64px 32px;
    }
}

@media (min-width: 768px) {
    .technical-section,
    .expert-section {
        padding: 80px 16px;
    }
}

.technical-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.1), rgba(139, 92, 246, 0.1));
}

.offer-section {
    padding: 48px 24px;
    background: linear-gradient(to right, rgba(139, 92, 246, 0.3), rgba(147, 51, 234, 0.3));
    backdrop-filter: blur(4px);
}

@media (min-width: 640px) {
    .offer-section {
        padding: 64px 32px;
    }
}

@media (min-width: 768px) {
    .offer-section {
        padding: 80px 16px;
    }
}

.guarantee-section {
    padding: 48px 24px;
    background: linear-gradient(to right, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
    backdrop-filter: blur(4px);
}

@media (min-width: 640px) {
    .guarantee-section {
        padding: 64px 32px;
    }
}

@media (min-width: 768px) {
    .guarantee-section {
        padding: 80px 16px;
    }
}

/* Grids */
.benefits-grid,
.results-grid,
.expert-grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

@media (min-width: 640px) {
    .benefits-grid,
    .results-grid,
    .expert-grid {
        gap: 48px;
    }
}

@media (min-width: 768px) {
    .benefits-grid,
    .results-grid,
    .expert-grid {
        gap: 64px;
    }
}

@media (min-width: 1024px) {
    .benefits-grid,
    .results-grid,
    .expert-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.technical-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .technical-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.steps-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bonuses-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Benefits */
.benefits-list,
.results-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item,
.result-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease;
}

.benefit-item:hover,
.result-item:hover {
    transform: scale(1.05);
}

.benefit-icon,
.result-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(to right, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.result-icon {
    background: linear-gradient(to right, #22d3ee, #8b5cf6);
}

.benefit-item p,
.result-item p {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .benefit-item p,
    .result-item p {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .benefit-item p,
    .result-item p {
        font-size: 1.125rem;
    }
}

/* Images */
.benefits-image,
.results-image,
.expert-image,
.brain-image {
    position: relative;
}

.benefits-image img,
.results-image img,
.expert-image img,
.brain-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139, 92, 246, 0.2), transparent);
    border-radius: 24px;
}

.image-overlay-cyan {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(34, 211, 238, 0.2), transparent);
    border-radius: 24px;
}

/* Technical Section */
.brain-cycles {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    backdrop-filter: blur(4px);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

@media (min-width: 640px) {
    .brain-cycles {
        padding: 32px;
    }
}

.subsection-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #a78bfa;
}

@media (min-width: 640px) {
    .subsection-title {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) {
    .subsection-title {
        font-size: 1.5rem;
    }
}

.cycles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .cycles-list {
        gap: 16px;
    }
}

.cycles-list p {
    font-size: 0.75rem;
    color: #d1d5db;
}

@media (min-width: 640px) {
    .cycles-list p {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .cycles-list p {
        font-size: 1rem;
    }
}

.cycle-name {
    color: #a78bfa;
    font-weight: 600;
}

/* Step Cards */
.step-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(147, 51, 234, 0.2));
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .step-card {
        padding: 32px;
    }
}

.step-card.step-3 {
    grid-column: span 2;
}

@media (min-width: 1024px) {
    .step-card.step-3 {
        grid-column: span 1;
    }
}

.step-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #a78bfa, #c084fc);
}

.step-card.step-2 .step-border {
    background: linear-gradient(to right, #c084fc, #3b82f6);
}

.step-card.step-3 .step-border {
    background: linear-gradient(to right, #3b82f6, #22d3ee);
}

.step-number {
    color: #a78bfa;
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .step-number {
        font-size: 2.25rem;
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) {
    .step-number {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .step-number {
        font-size: 3.75rem;
    }
}

.step-card.step-2 .step-number {
    color: #c084fc;
}

.step-card.step-3 .step-number {
    color: #3b82f6;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

@media (min-width: 640px) {
    .step-title {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
}

@media (min-width: 768px) {
    .step-title {
        font-size: 1.5rem;
    }
}

.step-description {
    font-size: 0.75rem;
    color: #d1d5db;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .step-description {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .step-description {
        font-size: 1rem;
    }
}

.step-duration {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 12px;
}

@media (min-width: 640px) {
    .step-duration {
        padding: 8px 16px;
        margin-top: 16px;
    }
}

.step-duration span {
    color: #a78bfa;
    font-weight: 600;
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .step-duration span {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .step-duration span {
        font-size: 1rem;
    }
}

.step-card.step-2 .step-duration {
    background: rgba(192, 132, 252, 0.2);
}

.step-card.step-2 .step-duration span {
    color: #c084fc;
}

.step-card.step-3 .step-duration {
    background: rgba(59, 130, 246, 0.2);
}

.step-card.step-3 .step-duration span {
    color: #3b82f6;
}

/* Bonus Items */
.bonus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

@media (min-width: 640px) {
    .bonus-item {
        gap: 16px;
        padding: 24px;
    }
}

.bonus-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #22c55e;
}

@media (min-width: 640px) {
    .bonus-check {
        width: 24px;
        height: 24px;
    }
}

.bonus-item span {
    font-size: 0.875rem;
    color: #7c3aed;
    font-weight: 600;
}

@media (min-width: 640px) {
    .bonus-item span {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .bonus-item span {
        font-size: 1.125rem;
    }
}

/* Price Card */
.price-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(147, 51, 234, 0.5));
    backdrop-filter: blur(4px);
    border-radius: 24px;
    padding: 24px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 8px;
}

@media (min-width: 640px) {
    .price-card {
        padding: 32px;
        margin: 0;
    }
}

@media (min-width: 768px) {
    .price-card {
        padding: 48px;
    }
}

.price-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(139, 92, 246, 0.1), rgba(147, 51, 234, 0.1));
    animation: pulse 3s ease-in-out infinite;
}

.price-content {
    position: relative;
    z-index: 10;
}

.price-breakdown {
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .price-breakdown {
        margin-bottom: 32px;
    }
}

.price-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #d1d5db;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .price-line {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .price-line {
        font-size: 1.25rem;
    }
}

.price-value {
    font-size: 1rem;
    font-weight: 700;
    color: #a78bfa;
}

@media (min-width: 640px) {
    .price-value {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .price-value {
        font-size: 1.5rem;
    }
}

.price-total {
    font-size: 1.125rem;
    color: #d1d5db;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding-top: 16px;
    margin-top: 16px;
}

@media (min-width: 640px) {
    .price-total {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .price-total {
        font-size: 1.5rem;
    }
}

.price-crossed {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ef4444;
    text-decoration: line-through;
    margin-left: 8px;
}

@media (min-width: 640px) {
    .price-crossed {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .price-crossed {
        font-size: 1.875rem;
    }
}

.special-offer {
    background: linear-gradient(to right, #7c3aed, #a855f7);
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .special-offer {
        padding: 16px 32px;
        margin-bottom: 32px;
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .special-offer {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .special-offer {
        font-size: 1.5rem;
    }
}

.today-text {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .today-text {
        font-size: 1.125rem;
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) {
    .today-text {
        font-size: 1.25rem;
    }
}

.final-price {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .final-price {
        font-size: 3rem;
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) {
    .final-price {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .final-price {
        font-size: 4.5rem;
    }
}

@media (min-width: 1280px) {
    .final-price {
        font-size: 6rem;
    }
}

.price-main {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-cents {
    font-size: 1.125rem;
    color: #d1d5db;
}

@media (min-width: 640px) {
    .price-cents {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .price-cents {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .price-cents {
        font-size: 1.875rem;
    }
}

/* Expert Section */
.expert-description {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .expert-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) {
    .expert-description {
        font-size: 1.125rem;
    }
}

.expert-credential {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a78bfa;
}

@media (min-width: 640px) {
    .expert-credential {
        gap: 16px;
    }
}

.expert-credential span {
    font-size: 0.875rem;
    font-weight: 600;
}

@media (min-width: 640px) {
    .expert-credential span {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .expert-credential span {
        font-size: 1.125rem;
    }
}

/* Guarantee Section */
.guarantee-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(16, 185, 129, 0.3));
    backdrop-filter: blur(4px);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    text-align: center;
    margin: 8px;
}

@media (min-width: 640px) {
    .guarantee-card {
        padding: 32px;
        margin: 0;
    }
}

@media (min-width: 768px) {
    .guarantee-card {
        padding: 48px;
    }
}

.guarantee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #22c55e;
}

@media (min-width: 640px) {
    .guarantee-icon {
        margin-bottom: 32px;
    }
}

.guarantee-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #22c55e;
    padding: 0 8px;
}

@media (min-width: 640px) {
    .guarantee-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) {
    .guarantee-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .guarantee-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1280px) {
    .guarantee-title {
        font-size: 3rem;
    }
}

.guarantee-description {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 8px;
}

@media (min-width: 640px) {
    .guarantee-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }
}

@media (min-width: 768px) {
    .guarantee-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .guarantee-description {
        font-size: 1.25rem;
    }
}

.guarantee-highlight {
    color: #22c55e;
    font-weight: 600;
    display: block;
    margin-top: 16px;
}

/* Footer */
.footer {
    padding: 32px 24px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
    .footer {
        padding: 48px 32px;
    }
}

@media (min-width: 768px) {
    .footer {
        padding: 48px 16px;
    }
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #a78bfa;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

@media (min-width: 640px) {
    .footer-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 1.5rem;
    }
}

.footer-subtitle {
    color: #9ca3af;
    margin-bottom: 16px;
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .footer-subtitle {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .footer-subtitle {
        font-size: 1rem;
    }
}

.footer-legal {
    text-align: center;
    color: #9ca3af;
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .footer-legal {
        font-size: 0.875rem;
    }
}

.footer-legal p {
    margin-bottom: 8px;
    padding: 0 16px;
}

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