/* CSS Variables */
:root {
    /* Colors - Distinctive palette */
    --primary: #0c4a6e;
    --primary-light: #0284c7;
    --primary-dark: #082f49;

    --secondary: #059669;
    --accent: #ea580c;
    --accent-light: #fb923c;

    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --gray-dark: #334155;

    --text-color: #334155;
    --heading-color: #0f172a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0c4a6e 0%, #0284c7 100%);
    --gradient-accent: linear-gradient(135deg, #ea580c 0%, #fb923c 100%);
    --gradient-success: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --gradient-hero: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Optimize animations */
.hover-lift,
.float-animation,

.hero-screenshots {
    will-change: transform;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.text-primary {
    color: var(--primary);
}

.text-success {
    color: var(--secondary);
}

.text-accent {
    color: var(--accent);
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

.text-gray {
    color: var(--gray);
}

.text-sm {
    font-size: 0.875rem;
}

.bg-light {
    background-color: var(--light);
}

.bg-dark {
    background-color: var(--dark);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.text-gradient {
    background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 50%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(12, 74, 110, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px 0 rgba(12, 74, 110, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-gradient {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    font-weight: 700;
}

.btn-gradient:hover {
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.4);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-2px);
}

/* Animations */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(12, 74, 110, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(12, 74, 110, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(12, 74, 110, 0);
    }
}

.shine-animation {
    position: relative;
    overflow: hidden;
}

.shine-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.hero-feature-item svg {
    width: 20px;
    height: 20px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.social-proof-text {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--gray);
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
}

.hero-author-note {
    margin-top: 24px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    max-width: 450px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gray-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.author-link {
    color: var(--primary);
    font-weight: 700;
    transition: color 0.2s;
}

.author-link:hover {
    color: var(--accent);
}

/* Hero Window Mockups (Windows 11 Style) */
.hero-screenshots {
    position: relative;
    padding: 20px;
    height: 100%;
    min-height: 700px;
    /* Increased height significantly to allow vertical spreading */
    display: block;
    /* Changed from flex to block for absolute positioning context */
}

.window-mockup {
    background: var(--white);
    border-radius: 12px;
    /* Win11 uses 8-12px rounded corners */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    /* Deeper shadow for elevation */
    border: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    position: absolute;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

/* Main Window - Top Left */
.main-window {
    width: 100%;
    /* Increased from 75% */
    z-index: 2;
    top: 20px;
    /* Pull up */
    left: -20px;
    /* Shift slightly left to make room */
}

/* Secondary Window - Bottom Right but more visible */
.secondary-window {
    width: 90%;
    /* Increased from 75% */
    z-index: 1;
    bottom: 60px;
    /* Push down */
    right: -30px;
    /* More to the right */
    /* Added glass effect for the background window */
    background: rgba(255, 255, 255, 0.95);
}

.window-header {
    background: #f3f4f6;
    /* Light gray Win11 header */
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 32px;
}

.window-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-dark);
}

.window-icon {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.window-controls {
    display: flex;
    gap: 0;
}

.control-btn {
    width: 32px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    color: var(--text-color);
}

.control-btn svg {
    width: 12px;
    height: 12px;
}

.control-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.control-btn.close:hover {
    background: #c42b1c;
    color: white;
}

.window-content {
    display: block;
    width: 100%;
    height: auto;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
    z-index: 3;
}

.float-animation {
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .hero-screenshots {
        min-height: 450px;
    }

    .main-window,
    .secondary-window {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .hero-screenshots {
        min-height: auto;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .window-mockup {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        margin-bottom: 20px;
    }

    .main-window {
        z-index: 2;
    }

    .secondary-window {
        z-index: 1;
        margin-top: 20px;
        /* Removed overlap for better visibility */
        margin-left: 0;
    }
}

/* Section General */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--gray-dark);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 60px;
}



/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-arrow:hover {
    gap: 10px;
}

/* Color backgrounds for feature icons */
.bg-blue-100 {
    background: #dbeafe;
}

.bg-green-100 {
    background: #d1fae5;
}

.bg-orange-100 {
    background: #fed7aa;
}

.bg-purple-100 {
    background: #e9d5ff;
}

.bg-yellow-100 {
    background: #fef3c7;
}

.bg-red-100 {
    background: #fee2e2;
}

.bg-indigo-100 {
    background: #e0e7ff;
}

.bg-teal-100 {
    background: #ccfbf1;
}

.text-blue {
    color: #1e40af;
}

.text-purple {
    color: #7c3aed;
}

.text-yellow {
    color: #ca8a04;
}

.text-red {
    color: #dc2626;
}

.text-indigo {
    color: #4f46e5;
}

.text-teal {
    color: #0d9488;
}

/* Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(12, 74, 110, 0.3);
}

.step-item h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.text-gray-300 {
    color: #cbd5e1;
}

/* Pricing */
/* Pricing Grid adjustments */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

.pricing-card {
    background: var(--white);
    padding: 35px;
    /* Reduced padding to fit more content */
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-light);
    text-align: center;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(12, 74, 110, 0.2);
    transform: scale(1.02);
    /* Reduced scale to prevent layout breakage */
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(12, 74, 110, 0.3);
    width: max-content;
}

.plan-name {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--dark);
}

.plan-price {
    margin: 20px 0;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    color: var(--dark);
}

.plan-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.plan-desc {
    color: var(--gray-dark);
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.95rem;
}

.plan-sub-desc {
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 25px;
    font-weight: 500;
}

.plan-features {
    text-align: left;
    margin: 30px 0;
}

.plan-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.plan-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Lifetime Special Card */
.pricing-card.lifetime-special {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 3px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.pricing-card.lifetime-special::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lifetime-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-accent);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 auto 24px;
    width: fit-content;
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
    letter-spacing: 0.5px;
}

.lifetime-badge svg {
    width: 22px;
    height: 22px;
}

.period-lifetime {
    display: block;
    font-size: 0.95rem;
    color: #92400e;
    margin-top: 8px;
    font-weight: 600;
}

.lifetime-savings {
    background: rgba(255, 255, 255, 0.8);
    padding: 16px;
    border-radius: 12px;
    margin: 24px 0;
    font-size: 0.95rem;
    color: #92400e;
    border-left: 4px solid var(--accent);
    font-weight: 600;
}

.lifetime-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    font-size: 0.9rem;
    color: #92400e;
    font-weight: 600;
}

.lifetime-guarantee svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.pricing-footer {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

/* Mobile Add-on Section */
.bg-gradient-subtle {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
}

.mobile-addon-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 70px;
    align-items: center;
}

.badge-new {
    display: inline-block;
    background: var(--gradient-success);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.mobile-addon-title {
    font-size: 2.75rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.mobile-addon-description {
    font-size: 1.15rem;
    color: var(--gray-dark);
    margin-bottom: 45px;
    line-height: 1.8;
}

.mobile-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.mobile-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon-small {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.mobile-pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.mobile-price-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-light);
    position: relative;
    transition: all 0.3s;
}

.mobile-price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.mobile-price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(234, 88, 12, 0.2);
    transform: scale(1.03);
}

.best-value-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.4);
    letter-spacing: 0.5px;
}

.mobile-price-header h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.mobile-price-amount {
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.mobile-price-amount .price {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--dark);
}

.mobile-price-amount .currency {
    font-size: 1.6rem;
    font-weight: 600;
    margin-right: 6px;
}

.mobile-price-amount .period {
    font-size: 1.1rem;
    color: var(--gray);
    margin-left: 6px;
}

.period-once {
    font-size: 0.95rem;
    color: var(--gray);
    display: block;
    text-align: center;
    margin-top: 8px;
    font-weight: 500;
}

.savings-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 20px 0 28px;
    border-left: 4px solid var(--accent);
}

.mobile-price-features {
    margin: 28px 0;
    text-align: left;
}

.mobile-price-features li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.mobile-price-features svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}

.mobile-addon-note {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

.mobile-addon-note svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--primary);
    margin-top: 2px;
}

/* iOS (iPhone 16 Pro) Style Mockup */
.phone-mockup {
    width: 310px;
    height: 640px;
    background: #2c2c2e;
    /* Dark Titanium frame */
    border-radius: 48px;
    /* Deep iOS curves */
    padding: 12px;
    /* Uniform bezel */
    box-shadow:
        0 0 0 2px #444,
        /* Outer edge definition */
        0 0 0 4px #1c1c1e,
        /* Inner frame depth */
        0 30px 60px -15px rgba(0, 0, 0, 0.6),
        /* Deep shadow */
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    /* Inner highlight */
    position: relative;
    margin: 0 auto;
    border: none;
    /* Reset Samsung border */
}

/* Volume Buttons (Left) */
.volume-buttons::before,
.volume-buttons::after {
    content: '';
    position: absolute;
    left: -4px;
    width: 4px;
    background: #1c1c1e;
    border-radius: 4px 0 0 4px;
}

.volume-buttons::before {
    top: 120px;
    height: 50px;
}

.volume-buttons::after {
    top: 180px;
    height: 50px;
}

/* Power Button (Right) */
.power-button {
    position: absolute;
    right: -4px;
    top: 140px;
    width: 4px;
    height: 80px;
    background: #1c1c1e;
    border-radius: 0 4px 4px 0;
}

/* Cleaned up phone-screen rule */
.phone-screen {
    width: 100%;
    height: 100%;
    background: black;
    border-radius: 38px;
    /* Matching inner radius */
    overflow: hidden;
    position: relative;
    border: 1px solid #000;
}

.phone-app-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.mock-data-row {
    height: 70px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 10px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stars {
    display: flex;
    gap: 4px;
}

.stars svg {
    width: 18px;
    height: 18px;
}

.fill-accent {
    fill: var(--accent);
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* FAQ */
.faq-accordion {
    max-width: 850px;
    margin: 60px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-light);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--heading-color);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 0 24px 0;
}

.faq-answer p {
    color: var(--gray-dark);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badge-item svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray-light);
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Resize Navbar Button for Tablet & Mobile */
    .header-actions .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    /* Hero Images Stacking for Tablet (iPad Pro/Air, etc.) */
    .hero-screenshots {
        min-height: auto;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .window-mockup {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        margin-bottom: 0;
    }

    .main-window {
        z-index: 2;
    }

    .secondary-window {
        z-index: 1;
        margin-top: 20px;
        /* Stepped layout: Shift right */
        margin-left: 10% !important;
        width: 90%;
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .mobile-pricing-options {
        grid-template-columns: 1fr;
    }

    .mobile-price-card.featured {
        transform: scale(1);
    }

    .mobile-features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular,
    .pricing-card.lifetime-special {
        transform: scale(1);
    }

    .dashboard-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .mobile-addon-title {
        font-size: 2rem;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

/* About Text Section - Enhanced */
.section-about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}

.section-about::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-about::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-text-wrapper {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 1;
}

/* Decorative Quote Mark */
.about-text-wrapper::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-family: serif;
    font-size: 160px;
    line-height: 1;
    color: var(--primary-light);
    opacity: 0.1;
    pointer-events: none;
    font-weight: 700;
}

.about-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--heading-color);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.about-text .text-primary {
    position: relative;
    display: inline-block;
}

.about-text .text-primary::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-light);
    opacity: 0.15;
    z-index: -1;
    border-radius: 4px;
}

.font-bold {
    font-weight: 800;
}

@media (max-width: 768px) {
    .section-about {
        padding: 60px 0;
    }

    .about-text-wrapper {
        padding: 40px 24px;
        margin: 0 16px;
    }

    .about-text {
        font-size: 1.15rem;
        line-height: 1.7;
    }

    .about-text-wrapper::before {
        font-size: 100px;
        top: -10px;
        left: 20px;
    }
}

/* Enhanced About Section Styles */
.about-text-wrapper {
    background: rgba(255, 255, 255, 0.95);
    /* More opaque for better readability */
    box-shadow: 0 25px 50px -12px rgba(12, 74, 110, 0.15);
    /* Stronger, tinted shadow */
    border: 1px solid rgba(226, 232, 240, 1);
    /* Visible border */
}

/* Decorative Quote Mark */
.about-text-wrapper::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 40px;
    font-family: serif;
    font-size: 160px;
    line-height: 1;
    color: var(--primary);
    opacity: 0.3;
    /* Increased opacity for more visible blue */
    pointer-events: none;
    font-weight: 700;
}

/* Typography Update - Montserrat */
.about-text {
    font-family: 'Montserrat', sans-serif;
    /* Modern Geometric Font */
    font-size: 1.25rem;
    /* Readable text size */
    color: var(--heading-color);
    font-weight: 500;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.about-text .font-bold {
    font-weight: 700;
    /* Distinct bold for Montserrat */
    font-style: normal;
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(2, 132, 199, 0.4);
    text-underline-offset: 4px;
}

/* Mobile Responsiveness Updates */
@media (max-width: 768px) {

    /* Header Button Fix */
    .header-actions .btn {
        padding: 10px 16px;
        /* Smaller padding */
        font-size: 0.9rem;
        /* Smaller font */
        white-space: nowrap;
        /* Prevent wrapping */
        height: 40px;
        /* Fixed height */
    }

    /* About Section Fixes */
    .section-about {
        padding: 40px 0;
        /* Reduced vertical padding */
    }

    .about-text-wrapper {
        padding: 30px 20px;
        margin: 0 10px;
        border-width: 0;
        /* Remove border on mobile for cleaner look */
        box-shadow: 0 10px 30px -5px rgba(12, 74, 110, 0.1);
    }

    .about-text-wrapper::before {
        font-size: 80px;
        /* Smaller quote mark */
        top: -20px;
        left: 10px;
    }

    .about-text {
        font-size: 0.95rem;
        /* Significantly smaller font for mobile */
        line-height: 1.6;
    }
}

/* Footer Contact & Map Styles */
.contact-column .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-column .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.5;
}


.contact-column .contact-list li i,
.contact-column .contact-list li img {
    color: var(--primary-light);
    min-width: 24px;
    height: 24px;
    margin-top: 3px;
    object-fit: contain;
}

.contact-column .contact-list li span,
.contact-column .contact-list li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-column .contact-list li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.map-column .map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--gray-dark);
}

.map-column .map-container iframe {
    display: block;
    width: 100%;
    height: 200px;
    /* Reduced height for balance */
}

/* Ensure footer grid responsiveness */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-column {
        margin-top: 20px;
    }
}

/* Mobile App Section Redesign */
.mobile-addon-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-addon-content {
    order: 1;
    /* Content on the LEFT on desktop */
}

/* Ensure visual is on the right/second column */
.mobile-addon-visual {
    order: 2;
    /* Visual on the RIGHT on desktop */
    display: flex;
    justify-content: center;
}

.mobile-addon-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-addon-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.mobile-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--gray-dark);
}

.mobile-feature i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    background: rgba(2, 132, 199, 0.1);
    padding: 4px;
    border-radius: 6px;
}

.badge-new {
    display: inline-block;
    padding: 6px 12px;
    background: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 30px;
    position: relative;
    border: 2px solid #444;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.phone-mockup.ios-style {
    border-color: #222;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.phone-app-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile App Slider */
.mobile-slider-track {
    display: flex;
    width: 400%;
    /* 4 images */
    height: 100%;
    animation: mobileFlowSlide 20s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-slide {
    width: 25%;
    /* 100% / 4 */
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

@keyframes mobileFlowSlide {

    0%,
    20% {
        transform: translateX(0);
    }

    25%,
    45% {
        transform: translateX(-25%);
    }

    50%,
    70% {
        transform: translateX(-50%);
    }

    75%,
    95% {
        transform: translateX(-75%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Responsive adjustments for Mobile App Section */
@media (max-width: 992px) {
    .mobile-addon-container {
        grid-template-columns: 1fr;
        /* Switch to 1 column on mobile/tablet */
        text-align: center;
        gap: 40px;
    }

    .mobile-addon-visual {
        order: -1;
        /* Visualize phone FIRST (top) on mobile/tablet */
    }

    .mobile-addon-content {
        order: 2;
        /* Content SECOND (bottom) on mobile/tablet */
    }

    .mobile-features-grid {
        text-align: left;
        max-width: 500px;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 576px) {
    .mobile-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mobile-cta-group .btn {
        width: 100%;
        padding: 16px 20px;
        white-space: normal;
        height: auto;
        text-align: center;
        line-height: 1.3;
    }

    .mobile-cta-group .btn i {
        display: none;
        /* Hide icon on very small screens to save space if needed, or keep it */
    }
}

/* Hero Showcase (Single Window with Slide) */
.hero-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: start;
    /* Align to top of grid */
    margin-top: 20px;
    /* Slight offset from top edge */
    width: 100%;
    overflow: visible;
}

.window-mockup.single-window {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/10;
    background: #fff;
    border-radius: 12px;
    /* Stronger 3D Effect */
    box-shadow:
        25px 35px 60px rgba(0, 0, 0, 0.35),
        /* Deep far shadow */
        10px 10px 30px rgba(0, 0, 0, 0.15);
    /* Closer ambient shadow */

    /* Simulate Thickness on visible edges (Right and Bottom) */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Base border */
    border-right: 6px solid #e2e8f0;
    /* Right edge thickness */
    border-bottom: 6px solid #cbd5e1;
    /* Bottom edge thickness */

    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    /* Calculated 3D Tilt for readability */
    transform-style: preserve-3d;
    /* Increased perspective (2500px) reduces distortion/blur */
    /* Reduced angles (Y: -2.5deg, X: 1.5deg) keeps 3D feel but clearer text */
    transform: perspective(2500px) rotateY(-2.5deg) rotateX(1.5deg);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Improve Image Rendering in 3D */
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
}

.window-mockup.single-window.primary-window {
    transform: perspective(2500px) rotateY(-2.5deg) rotateX(1.5deg) translateX(40px);
    z-index: 2;
    margin-bottom: 100px;
    /* Increased space between windows */
}

.window-mockup.single-window.secondary-window {
    transform: perspective(2500px) rotateY(-2.5deg) rotateX(1.5deg) translateX(-40px);
    /* Removed negative margin-top to prevent overlap */
    z-index: 1;
}

/* Header with Text */
.window-header {
    height: 32px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center text */
    padding: 0 16px;
}

.window-title {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.window-content {
    flex: 1;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* Sliding Track - Width 200% for 2 images */
/* Sliding Track - Width 500% for 5 images */
.slider-track {
    display: flex;
    width: 500%;
    height: 100%;
    animation: flowSlide 25s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    width: 20%;
    /* Each slide takes 20% of track (100% of window) */
    height: 100%;
    flex-shrink: 0;
    /* Prevent shrinking which causes black gaps */
    position: relative;
    /* Ensure stacking context */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Remove inline spacing */
    /* Force high quality rendering */
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    /* Hardware accel trigger */
}

/* Keyframes for sliding 5 images */
@keyframes flowSlide {

    0%,
    16% {
        transform: translateX(0);
        /* Slide 1 */
    }

    20%,
    36% {
        transform: translateX(-20%);
        /* Slide 2 */
    }

    40%,
    56% {
        transform: translateX(-40%);
        /* Slide 3 */
    }

    60%,
    76% {
        transform: translateX(-60%);
        /* Slide 4 */
    }

    80%,
    96% {
        transform: translateX(-80%);
        /* Slide 5 */
    }

    100% {
        transform: translateX(0);
        /* Snap back to Slide 1 */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .window-mockup.single-window {
        max-width: 90%;
        /* Center with margin */
        margin: 0 auto;
        transform: none !important;
        /* Force disable 3D on mobile */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-right: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .window-mockup.single-window:hover {
        transform: none !important;
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-color);
    line-height: 1.6;
}