:root {
    --primary: #0f172a;
    /* Slate 900 */
    --primary-offset: #1e293b;
    --accent: #6366f1;
    /* Indigo 500 */
    --accent-hover: #4f46e5;
    --secondary: #f59e0b;
    /* Amber 500 */
    --light: #ffffff;
    --gray: #f8fafc;
    --dark-gray: #475569;
    /* Slate 600 */
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --card-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--primary);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1214px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--glass-border);
}

header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    padding: 12px 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    color: var(--light);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--light);
    font-weight: 500;
    position: relative;
    opacity: 0.85;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #4f46e5 100%);
    color: var(--light);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
    filter: brightness(1.1);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--light);
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: none;
    /* Hidden by default, shown in media query */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.4);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Base Sections */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 800;
}

.section-title p {
    font-size: 1.15rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--light);
    padding: 100px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 20px;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--light);
    transform: translateX(8px);
}

.footer-links i {
    color: var(--accent);
    font-size: 0.8rem;
}

.footer-newsletter p {
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    font-size: 0.95rem;
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: var(--accent);
    color: var(--light);
    border: none;
    border-radius: 50px;
    padding: 0 24px;
    font-weight: 600;
    cursor: pointer;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-4px);
    border-color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.15), transparent 40%),
        linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    min-height: 100vh;
    color: var(--light);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 5;
}

.hero-content {
    max-width: 640px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 48px;
    line-height: 1.6;
    opacity: 0.8;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #4f46e5 100%);
    color: var(--light);
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--light);
}

.phone-mockup {
    width: 540px;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.blob {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(245, 158, 11, 0.05) 50%, transparent 70%);
    z-index: 1;
    top: -200px;
    right: -200px;
    filter: blur(60px);
    animation: pulse 15s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1) opacity(0.3);
    }

    100% {
        transform: scale(1.2) opacity(0.5);
    }
}

/* Features */
.features {
    padding: 120px 0;
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--light);
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--card-shadow);
    border-color: var(--accent);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: var(--accent);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: var(--light);
    transform: scale(1.1) rotate(5deg);
}

/* Screenshots */
.screenshots {
    padding: 100px 0;
    background: #f8fafc;
    overflow: hidden;
}

.screenshots-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.screenshot-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.screenshot-track:hover {
    animation-play-state: paused;
}

.screenshot-item {
    width: 280px;
    height: 560px;
    border-radius: 30px;
    overflow: hidden;
    border: 8px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-280px * 7 - 30px * 7));
    }
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--light);
}

.testimonials-slider {
    margin-top: 40px;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--light);
    border: 1px solid #eef2f6;
    padding: 50px 40px;
    border-radius: 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.testimonial-quote {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

@media (max-width: 992px) {
    .testimonial-container {
        grid-template-columns: 1fr;
    }
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: var(--gray);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4);
}

.step h3 {
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.step p {
    color: var(--dark-gray);
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.15rem;
    margin-bottom: 0;
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-question.active {
    background: var(--light);
    border-bottom: 1px solid #f1f5f9;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 24px 32px;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--accent-hover);
}

/* Blog Detail Pages - Premium Modernization */
.post-header {
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--light);
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.95));
    z-index: 1;
}

.post-header .container {
    position: relative;
    z-index: 2;
}

.post-header h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.post-meta-premium {
    display: flex;
    gap: 24px;
    font-weight: 500;
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 40px;
}

.post-meta-premium span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta-premium i {
    color: var(--secondary);
}

/* Glass Content Wrapper */
.glass-content-v2 {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 60px;
    margin-top: -100px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-content-section {
    background: #0f172a;
    padding-bottom: 120px;
    position: relative;
}

.blog-post-content-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: radial-gradient(circle at 100% 100%, rgba(99, 102, 241, 0.05), transparent 70%);
    pointer-events: none;
}

.blog-content-premium {
    color: #e2e8f0;
    font-size: 1.15rem;
    line-height: 1.8;
}

.blog-content-premium h2 {
    color: var(--light);
    font-size: 2.2rem;
    margin: 60px 0 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.blog-content-premium p {
    margin-bottom: 30px;
}

.blog-content-premium ul,
.blog-content-premium ol {
    margin-bottom: 40px;
    padding-left: 20px;
}

.blog-content-premium li {
    margin-bottom: 16px;
}

/* Premium Component Cards */
.key-takeaways-v2 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 40px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.key-takeaways-v2::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    filter: blur(40px);
}

.key-takeaways-v2 h4 {
    color: var(--light);
    font-size: 1.4rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pro-tip-v2 {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--secondary);
    padding: 30px 40px;
    border-radius: 0 20px 20px 0;
    margin: 50px 0;
    font-style: italic;
    color: var(--light);
}

.quote-box-premium {
    padding: 60px;
    margin: 80px 0;
    text-align: center;
    position: relative;
}

.quote-box-premium blockquote {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    line-height: 1.4;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.quote-box-premium::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12rem;
    color: var(--accent);
    opacity: 0.1;
    font-family: serif;
}

.faq-schema-section-premium {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.faq-item-premium:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item-premium p {
    margin-bottom: 0;
}

/* Blog Main Page Premium */
.blog-section {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-post-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.post-card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post-card:hover .post-card-image img {
    transform: scale(1.1);
}

.post-card-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.post-card-title a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card:hover .post-card-title a {
    color: var(--accent);
}

.post-card-excerpt {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    color: var(--secondary);
    gap: 12px;
}

.btn-read-more:hover i {
    transform: translateX(4px);
}

/* Pricing */
.pricing {
    padding: 120px 0;
    background: var(--gray);
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    align-items: stretch;
}

.pricing-card {
    background: var(--light);
    border-radius: 32px;
    padding: 60px 40px;
    width: 380px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border: 2px solid var(--accent);
    box-shadow: var(--card-shadow);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.price {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin: 30px 0 10px;
    letter-spacing: -2px;
}

.price span {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
    letter-spacing: 0;
}

.pricing-features {
    margin: 40px 0;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.pricing-features li {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: #10b981;
    /* Success Green */
    font-size: 1.1rem;
    width: 20px;
}

.btn-primary-form {
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: auto;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-form:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

/* Download Section */
.download {
    padding: 120px 0;
    background: var(--primary);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.download-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.download-content {
    max-width: 600px;
}

.download h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.download h2 span {
    color: var(--secondary);
}

.download p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.store-buttons {
    display: flex;
    gap: 20px;
}

.store-btn {
    background: #000;
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.store-btn:hover {
    background: #111;
    transform: translateY(-3px);
    border-color: var(--secondary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.store-btn i {
    font-size: 2.2rem;
}

.btn-text span {
    font-size: 0.7rem;
    display: block;
    opacity: 0.7;
    margin-bottom: -2px;
}

.btn-text p {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
    opacity: 1;
    white-space: nowrap;
}

.download-image img {
    width: 480px;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .features-grid,
    .blog-grid,
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .download-content {
        max-width: 100%;
    }

    .download h2 {
        font-size: 2.8rem;
    }

    .store-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .post-header {
        padding: 140px 0 80px;
    }

    .post-header h1 {
        font-size: 2.2rem;
    }

    .post-meta-premium {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 0.9rem;
    }

    .glass-content-v2 {
        padding: 30px 20px;
        margin-top: -60px;
        border-radius: 24px;
    }

    .blog-content-premium h2 {
        font-size: 1.8rem;
        margin: 40px 0 20px;
    }

    .key-takeaways-v2,
    .quote-box-premium {
        padding: 24px;
        margin: 40px 0;
    }

    .quote-box-premium blockquote {
        font-size: 1.4rem;
    }

    .quote-box-premium::before {
        font-size: 8rem;
        top: 0;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .features-grid,
    .blog-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .download h2 {
        font-size: 2.2rem;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}