/* Design System & Visual Style for KahaniPuranoKi */

:root {
    /* Color Palette */
    --color-bg-dark: #0A0806;
    --color-bg-card: #15110E;
    --color-bg-card-hover: #1E1914;
    --color-border: #2C231B;
    --color-border-glow: #8C6A3C;
    
    --color-text-primary: #FDFBF7;
    --color-text-muted: #A89F95;
    --color-text-dark: #15110E;

    /* Saffron & Vermilion Gradient */
    --grad-saffron: linear-gradient(135deg, #FF6F3C 0%, #E03E00 100%);
    --color-saffron: #FF6F3C;

    /* Gold Gradient */
    --grad-gold: linear-gradient(135deg, #FFF0CA 0%, #D4AF37 50%, #A37C1E 100%);
    --color-gold: #D4AF37;
    --color-gold-glow: rgba(212, 175, 55, 0.15);

    /* Red (Distraction) */
    --color-red: #E03E3E;
    --color-red-glow: rgba(224, 62, 62, 0.1);

    /* Green (Calm) */
    --color-green: #3EE090;
    --color-green-glow: rgba(62, 224, 144, 0.1);

    /* Font Families */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-story: 'Lora', serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Core Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Texture Details */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 15%, rgba(255, 111, 60, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(212, 175, 55, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
    font-weight: 700;
}

.gold-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #FF6F3C 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.w-100 {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--grad-saffron);
    color: var(--color-text-primary);
    box-shadow: 0 4px 15px rgba(255, 111, 60, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 60, 0.4);
}

.btn-secondary {
    background: var(--grad-gold);
    color: var(--color-text-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-border-glow);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--color-gold);
    color: var(--color-text-primary);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 8, 6, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-normal);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--color-text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: var(--transition-normal);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-bg-card);
    border-left: 1px solid var(--color-border);
    padding: 100px 2rem 2rem 2rem;
    z-index: 95;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-link {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--color-text-muted);
}

.mobile-nav-link:hover {
    color: var(--color-gold);
}

.mobile-cta {
    margin-top: 1.5rem;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 111, 60, 0.1);
    border: 1px solid rgba(255, 111, 60, 0.3);
    color: var(--color-saffron);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-form-wrapper {
    margin-bottom: 3rem;
    max-width: 550px;
}

.hero-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(25, 21, 18, 0.6);
    border: 1px solid var(--color-border);
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
}

.hero-form:focus-within {
    border-color: var(--color-border-glow);
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.hero-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-text-primary);
    padding: 0 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
}

.hero-input::placeholder {
    color: #6a5e53;
}

.form-caption {
    font-size: 0.8rem;
    color: #6a5e53;
    margin-top: 0.5rem;
    padding-left: 0.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

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

/* Phone Mockup */
.phone-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup-wrapper {
    position: relative;
    width: 320px;
    margin: 0 auto;
}

.glowing-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    filter: blur(20px);
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: #000;
    border: 8px solid #201a15;
    border-radius: 40px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.8),
        0 0 0 1px var(--color-border-glow);
    overflow: hidden;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.phone-header {
    height: 30px;
    background-color: #000;
    position: relative;
    z-index: 10;
}

.phone-speaker {
    width: 60px;
    height: 5px;
    background-color: #333;
    border-radius: 10px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.phone-screen {
    height: calc(100% - 30px);
    background-color: #120e0b;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Scrollbar styling inside mockup */
.phone-screen::-webkit-scrollbar {
    width: 3px;
}
.phone-screen::-webkit-scrollbar-thumb {
    background-color: var(--color-border);
}

.mock-email-header {
    background-color: rgba(25, 21, 18, 0.8);
    border: 1px solid var(--color-border);
    padding: 0.8rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mock-sender-avatar {
    width: 32px;
    height: 32px;
    background: var(--grad-saffron);
    color: var(--color-text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.mock-sender-info {
    display: flex;
    flex-direction: column;
    flex-1: 1;
}

.mock-sender-name {
    font-size: 0.8rem;
    font-weight: 600;
}

.mock-email-subject {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.mock-email-time {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-left: auto;
}

.mock-email-body {
    background-color: #1a1512;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mock-email-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.mock-email-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mock-email-content h3 {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
}

.mock-email-content p {
    font-size: 0.78rem;
    font-family: var(--font-story);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.mock-read-more {
    font-size: 0.75rem;
    color: var(--color-saffron);
    font-weight: 600;
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid var(--color-border);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Sections Global Structure */
section {
    padding: 100px 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

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

.section-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.comparison-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    transition: var(--transition-normal);
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.card-bad:hover {
    border-color: rgba(224, 62, 62, 0.4);
    box-shadow: 0 15px 30px var(--color-red-glow);
}

.card-good:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 30px var(--color-gold-glow);
}

.card-status-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-bad {
    background-color: rgba(224, 62, 62, 0.1);
    color: var(--color-red);
    border: 1px solid rgba(224, 62, 62, 0.2);
}

.status-good {
    background-color: rgba(62, 224, 144, 0.1);
    color: var(--color-green);
    border: 1px solid rgba(62, 224, 144, 0.2);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-bad .card-icon-wrapper {
    background: rgba(224, 62, 62, 0.1);
    color: var(--color-red);
}

.card-good .card-icon-wrapper {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
}

.card-icon {
    width: 28px;
    height: 28px;
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.comparison-intro {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.98rem;
}

.list-check-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.icon-bad {
    color: var(--color-red);
}

.icon-good {
    color: var(--color-green);
}

/* Story Preview Section */
.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    background: rgba(21, 17, 14, 0.5);
    padding: 0.5rem;
    border-radius: 100px;
    border: 1px solid var(--color-border);
    margin-bottom: 3.5rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.tab-num {
    font-size: 0.75rem;
    color: var(--color-gold);
    opacity: 0.6;
}

.tab-btn:hover {
    color: var(--color-text-primary);
}

.tab-btn.active {
    background: var(--color-bg-card);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-glow);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.tab-contents {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn var(--transition-normal);
}

.tab-content.active {
    display: block;
}

.preview-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
}

.preview-img-wrapper {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 60%, var(--color-bg-card) 100%);
}

.preview-text-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preview-meta {
    font-size: 0.8rem;
    color: var(--color-saffron);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.preview-story-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.preview-story-text {
    font-family: var(--font-story);
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.preview-wisdom-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 111, 60, 0.04);
    border-left: 3px solid var(--color-saffron);
    border-radius: 0 8px 8px 0;
}

.preview-wisdom-box h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.preview-wisdom-box p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Pricing Section */
.pricing-section {
    position: relative;
}

.billing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.label-active {
    color: var(--color-text-primary);
    font-weight: 600;
}

.discount-badge {
    background: var(--grad-saffron);
    color: var(--color-text-primary);
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    font-weight: 600;
    margin-left: 0.25rem;
}

.billing-toggle {
    width: 50px;
    height: 28px;
    background-color: var(--color-border);
    border: 1px solid var(--color-border-glow);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    padding: 3px;
    transition: var(--transition-normal);
}

.toggle-circle {
    display: block;
    width: 20px;
    height: 20px;
    background: var(--grad-gold);
    border-radius: 50%;
    position: absolute;
    left: 4px;
    transition: var(--transition-slow);
}

.billing-toggle.active .toggle-circle {
    left: 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-top: 2rem;
}

.pricing-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-glow);
}

.plan-recommended {
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px var(--color-gold-glow);
    transform: scale(1.03);
}

.plan-recommended:hover {
    transform: scale(1.03) translateY(-8px);
    border-color: var(--color-gold);
}

.popular-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--grad-gold);
    color: var(--color-text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.card-plan-header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.25rem;
}

.currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.price-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    transition: var(--transition-fast);
}

.duration {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.price-billing-desc {
    font-size: 0.78rem;
    color: #6a5e53;
    display: block;
}

.card-plan-features {
    flex: 1;
    margin-bottom: 2.5rem;
}

.card-plan-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.feat-check {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.feat-x {
    width: 18px;
    height: 18px;
    color: #4a3e35;
    flex-shrink: 0;
}

.feat-muted {
    color: #5c4f44;
}

.card-plan-action {
    margin-top: auto;
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--color-gold);
    transition: var(--transition-normal);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
    padding: 0 2rem;
}

.faq-panel p {
    padding-bottom: 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--color-border-glow);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Bottom CTA Box */
.bottom-cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(30, 24, 20, 0.9) 0%, rgba(15, 12, 10, 0.9) 100%);
    border: 1px solid var(--color-border-glow);
    border-radius: 24px;
    padding: 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-box-decor {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 111, 60, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

/* Footer Styles */
.footer {
    background-color: #060504;
    border-top: 1px solid var(--color-border);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1rem;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.social-icon {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.social-icon:hover {
    color: var(--color-saffron);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #5c4f44;
}

/* Responsive Breakpoints */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr 1.1fr 1fr;
        gap: 1rem;
    }
    
    .plan-recommended {
        transform: scale(1.02);
    }
    .plan-recommended:hover {
        transform: scale(1.02) translateY(-8px);
    }
}

@media (max-width: 900px) {
    .preview-card {
        grid-template-columns: 1fr;
    }
    
    .preview-img-wrapper {
        min-height: 250px;
    }
    
    .preview-img-overlay {
        background: linear-gradient(to bottom, transparent 60%, var(--color-bg-card) 100%);
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-form-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone-mockup-wrapper {
        margin-top: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-card {
        padding: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 450px;
        margin: 3rem auto 0 auto;
    }
    
    .plan-recommended {
        transform: scale(1);
    }
    .plan-recommended:hover {
        transform: scale(1) translateY(-8px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .hero-input {
        background: rgba(25, 21, 18, 0.6);
        border: 1px solid var(--color-border);
        padding: 0.9rem 1.2rem;
        border-radius: 8px;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-form .btn {
        width: 100%;
        padding: 1rem;
    }
    
    .tabs-list {
        flex-direction: column;
        border-radius: 12px;
        padding: 0.5rem;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .preview-text-content {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .faq-trigger {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-panel {
        padding: 0 1.5rem;
    }
    
    .cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
