:root {
    /* CookieDad Blue Palette (from generate.png) */
    --primary-color: #6AA2D9;
    /* Medium Blue - Brand Color */
    --primary-hover: #5A8CBF;
    /* Darker shade for hover */
    --secondary-color: #A7D2F2;
    /* Light Blue */
    --accent-color: #D1E7FF;
    /* Very Light Blue */

    --text-color: #1F2937;
    /* Dark Gray - Keep for readability */
    --text-light: #6B7280;
    /* Medium Gray */

    --bg-color: #FFFFFF;
    --bg-alt: #F3F8FD;
    /* Very light blue tint for sections */
    --bg-dark: #1E293B;
    /* Slate Dark for footer/CTA */

    --white: #FFFFFF;
    --border-color: #E2E8F0;

    --font-family: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --container-width: 1200px;
    --border-radius: 16px;
    --shadow-sm: 0 1px 2px 0 rgba(30, 41, 59, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -1px rgba(30, 41, 59, 0.06);
    --shadow-lg: 0 20px 40px -15px rgba(30, 41, 59, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(106, 162, 217, 0.35);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for sticky header when clicking anchor links */
}

body.admin-bar {
    scroll-padding-top: 112px;
    /* Offset + WP Admin Bar */
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--bg-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography (Refined Sizing) */
h1 {
    font-size: 2.75rem;
    /* Reduced from 3.5rem */
    font-weight: 800;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.25rem;
    /* Reduced from 1.5rem */
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    font-size: 0.95rem;
    /* Slightly refined body text */
}

.small-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(106, 162, 217, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 162, 217, 0.4);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--text-color);
    background-color: var(--bg-alt);
}

.btn-outline {
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Header - Blue Redesign */
.site-header {
    background-color: rgba(106, 162, 217, 0.85);
    /* Translucent Blue */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Fix for WordPress Admin Bar overlapping the sticky header */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--white);
    /* White Logo Text/Icon */
}

.logo svg {
    height: 30px;
    width: auto;
    fill: #FFFFFF !important;
}

.logo svg path {
    fill: #FFFFFF !important;
}

.logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.main-nav a:not(.btn) {
    font-weight: 500;
    color: var(--white);
    /* White Nav Links */
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.main-nav a:not(.btn):hover {
    color: #d1e7ff;
    opacity: 1;
}

/* Initial Sign Up Button in Header - Make White for Contrast */
.site-header .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.site-header .btn-primary:hover {
    background-color: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Language Selector */
.language-selector {
    margin-left: 0.5rem;
}

.language-selector select {
    padding: 0.4rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius);
    background-color: transparent;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    color: var(--white);
}

.language-selector select:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.language-selector select option {
    color: var(--text-color);
    background-color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    /* White Hamburger */
    position: absolute;
    left: 0;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 9px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 18px;
}


/* Hero Section */
.hero-section {
    padding: var(--spacing-xl) 0;
    background: radial-gradient(circle at 15% 50%, rgba(106, 162, 217, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(167, 210, 242, 0.15), transparent 25%),
        linear-gradient(180deg, var(--bg-alt) 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-subtitle {
    font-size: 1.15rem;
    /* Slightly reduced */
    margin-bottom: var(--spacing-md);
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.trust-micro {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.8rem;
    color: var(--text-light);
}

.trust-micro .stars {
    color: #FBBF24;
    /* Gold stars */
    letter-spacing: 2px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Layered Hero Artwork */
.hero-artwork-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    z-index: 0;
    /* Add local stacking context if parent doesn't provide */
    /* Ensure container has enough space for background if it spills out */
}

.hero-back-artwork {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    /* Reduced size (approx 75% of previous 1.3) */
    width: 100%;
    height: auto;
    z-index: -1;
    /* Lowest priority, behind text */
    opacity: 0.8;
    pointer-events: none;
}

.hero-dashboard-base {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
    /* Above background */
}

.hero-options-overlay {
    position: absolute;
    bottom: -15%;
    /* Hang off the bottom slightly */
    right: -10%;
    /* Hang off the right slightly */
    width: 60%;
    /* Smaller than base */
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* Deeper shadow */
    border: 1px solid var(--border-color);
    z-index: 2;
    /* On top */
    transition: transform 0.3s ease;
}

.hero-artwork-container:hover .hero-options-overlay {
    transform: translateY(-5px) scale(1.02);
    /* Pop effect on hover */
}

/* Specific Responsive Adjustments for Artwork */
@media (max-width: 768px) {
    .hero-artwork-container {
        max-width: 100%;
        margin-bottom: var(--spacing-lg);
        /* Add space below for the hanging overlay */
    }

    .hero-options-overlay {
        position: relative;
        /* Stack on mobile usually better, or keep absolute with adjustments */
        width: 80%;
        bottom: -20px;
        right: -10px;
        margin-top: -10%;
        /* Negative margin to pull it up if stacking */
        display: block;
        /* Ensure it renders */
        margin-left: auto;
        /* Align right if stacking */
    }
}

/* Trust Strip */
.trust-strip {
    background-color: var(--white);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.trust-strip p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.trust-badge {
    color: var(--text-light);
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: var(--bg-alt);
    border-radius: 4px;
    font-size: 0.9rem;
}

/* How It Works (Steps) */
.how-it-works-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.how-it-works-section .section-header {
    margin-bottom: 40px;
    /* Reduced specific spacing as requested */
}

/* How It Works Banner Image */
.how-banner-image-container {
    text-align: center;
    margin-bottom: var(--spacing-md);
    width: 100%;
    margin-top: var(--spacing-md);
    position: relative;
    /* Context for absolute positioning */
    z-index: 1;
    /* Stacking context */
}

.how-banner-image-container img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.how-banner-image-container .main-banner {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    position: relative;
    z-index: 2;
    /* Ensure main banner is on top */
}

.banner-deco {
    position: absolute;
    z-index: -1;
    /* Behind main banner */
    pointer-events: none;
}

.banner-deco-right {
    top: -60px;
    right: 15%;
    /* Moved further left from 5% */
    width: auto;
}

.banner-deco-left {
    bottom: -10px;
    left: 20%;
    /* Moved further right from 5% */
    width: auto;
}

/* Tablet/Mobile Adjustments for Deco */
@media (max-width: 992px) {
    .how-banner-image-container {
        margin-top: 50px;
    }

    .banner-deco-right {
        top: -40px;
        max-width: 25%;
    }

    .banner-deco-left {
        bottom: -10px;
        max-width: 25%;
    }
}

@media (max-width: 768px) {
    .how-it-works-section .section-header {
        margin-bottom: 60px;
    }

    .how-banner-image-container {
        margin-top: 50px;
    }

    .banner-deco-right {
        top: -30px;
        max-width: 20%;
    }

    .banner-deco-left {
        bottom: -5px;
        max-width: 20%;
    }
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    counter-reset: step-counter;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: var(--bg-alt);
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    border: 2px solid var(--border-color);
}

/* Features Section */
.features-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-alt);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
}

@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.feature-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 64px;
    border-radius: 50%;
    background-color: var(--bg-alt);
    color: var(--primary-color);
}

.icon-svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
}

.feature-card:hover .icon-svg {
    fill: var(--white);
    transition: var(--transition);
}

.feature-card:hover .icon {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-size: 1rem !important;
    /* Force 1rem */
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.75rem !important;
    /* Force 0.75rem */
    line-height: 1.5;
}

/* Advanced Capabilities Section */
.advanced-section {
    margin-top: 80px;
    margin-bottom: 40px;
}

.tech-separator {
    border: none;
    height: 1px;
    background-color: var(--border-color);
    margin: 20px auto;
    width: 100%;
    max-width: 800px;
}

.advanced-section h2 {
    text-align: center;
    /* Center align */
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    /* Matched to standard h2 spacing */
}

/* More Features Section */
.more-features-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.more-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

@media (min-width: 900px) {
    .more-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mf-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.6);
    text-align: left;
}

.mf-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    background-color: var(--white);
}

.mf-card h4 {
    font-size: 1rem;
    /* Set title to 1rem */
    margin-bottom: var(--spacing-sm);
    color: var(--bg-dark);
}

.mf-card p {
    font-size: 0.75rem;
    /* Set description to 0.75rem */
    margin-bottom: 0;
    color: var(--text-light);
    line-height: 1.5;
}

/* Pricing Section */
/* Pricing Section */
.pricing-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

/* Toggles & Controls */
.pricing-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.control-label {
    font-weight: 700;
    color: var(--text-color);
}

/* Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.billing-toggle-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.billing-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s;
}

.billing-label.active {
    color: var(--text-color);
    font-weight: 700;
}

.save-badge {
    background-color: #DEF7EC;
    color: #03543F;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 5px;
    font-weight: 600;
}

/* Pricing Grid/Container */
.pricing-container {
    display: flex;
    flex-wrap: nowrap;
    /* Keep on one row as requested */
    justify-content: center;
    gap: 10px;
    /* Tighter gap */
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 10px;
    /* Add vertical padding for hover effects */
    /* Removed overflow-x: auto to prevent scrollbars */
}

/* Individual Card */
.pricing-card {
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    flex: 1;
    min-width: 190px;
    max-width: 260px;
    position: relative;
    padding: 0;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.08);
}

/* Hover Effects */
.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    transform: translateY(-8px);
    z-index: 5;
}

/* Highlight / Recommended Card */
.pricing-card.highlight {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
    margin-top: -10px;
    margin-bottom: -10px;
    box-shadow: var(--shadow-xl);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pricing-card.highlight:hover {
    transform: scale(1.05) translateY(-8px);
}

.badge-recommended {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.7em;
    /* Matched to pricing.css */
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    /* Matched shadow */
}

/* Card Header */
.pricing-card .card-header {
    padding: 24px 16px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    background: #fafbfc;
    border-radius: 19px 19px 0 0;
}

.plan-title {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    /* Matched */
    color: #1a1a2e;
    /* Matched color */
    font-weight: 600;
    /* Matched weight */
    letter-spacing: -0.01em;
}

.plan-price .currency-symbol {
    font-size: 0.95em;
    /* Matched */
    vertical-align: top;
    position: relative;
    top: 5px;
    color: #475569;
}

.plan-price .amount {
    font-size: 2em;
    /* Matched */
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
}

.plan-price .period {
    color: #94a3b8;
    font-size: 0.8em;
    /* Matched */
    margin-left: 2px;
}

.billing-note {
    font-size: 0.85em;
    /* Matched */
    color: #94a3b8;
    margin-top: 5px;
    height: 1.2em;
}

/* Card Body */
.pricing-card .card-body {
    padding: 20px 15px;
    flex-grow: 1;
    /* Pushes footer down */
}

.features-list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.features-list li {
    margin-bottom: 10px;
    font-size: 12px;
    color: #64748b;
    /* Matched color */
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.features-list li .dashicons {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 16px;
    /* Matched */
    min-width: 16px;
    font-weight: bold;
}

/* Dashicons Fallback (Checkmark) */
.features-list li .dashicons::before {
    content: "✓";
}

/* Card Footer */
.pricing-card .card-footer {
    padding: 20px 15px;
    text-align: center;
    border-top: 1px solid #f1f5f9;
    background: #fff;
    border-radius: 0 0 19px 19px;
}

/* Buttons in Footer */
.card-footer .button {
    width: 100%;
    display: inline-block;
    padding: 10px 0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9em;
    /* Matched to pricing.css */
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.card-footer .button.primary {
    background-color: var(--primary-color);
    color: white;
}

.card-footer .button.primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(106, 162, 217, 0.4);
}

.card-footer .button.secondary {
    background-color: #f1f5f9;
    color: var(--primary-color);
    border: 1px solid #e2e8f0;
}

.card-footer .button.secondary:hover {
    background-color: var(--bg-alt);
    border-color: var(--primary-color);
}

.card-footer .button-disabled {
    background-color: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    border: 1px solid #e2e8f0;
}

/* Responsive */
@media (max-width: 1100px) {
    .pricing-container {
        justify-content: center;
    }

    .pricing-card {
        max-width: 300px;
        flex: 1 1 280px;
    }

    .pricing-card.highlight {
        transform: scale(1);
        margin: 0;
    }

    .pricing-card.highlight:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 600px) {
    .pricing-controls {
        flex-direction: column;
        gap: 15px;
    }

    .pricing-card {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* Payment Methods (keep existing or adjust) */
.payment-methods-row img {
    opacity: 1;
    transition: transform 0.3s ease;
}

.payment-methods-row img:hover {
    transform: scale(1.05);
}

/* --- Pricing Comparison Table --- */
.comparison-section {
    max-width: var(--container-width);
    margin: var(--spacing-xl) auto;
    padding: 0 var(--spacing-sm);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    min-width: 800px;
    /* Forces scroll on mobile */
    border-collapse: collapse;
    text-align: center;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--bg-alt);
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.comparison-table th.feature-col,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-color);
    background-color: var(--white);
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 2px 0 5px -2px rgba(0, 0, 0, 0.1);
    /* Subtle shadow right */
}

.comparison-table th.feature-col {
    background-color: var(--bg-alt);
    z-index: 3;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover td {
    background-color: #F8FAFC;
}

.comparison-table tbody tr:hover td:first-child {
    background-color: var(--white);
}

.comparison-table .dashicons-yes {
    color: #80b0df;
    font-weight: bold;
    font-size: 1.2rem;
}

.comparison-table .dashicons-yes::before {
    content: "✓";
}

.comparison-table .dashicons-no {
    color: #db4c4d;
    font-weight: bold;
    font-size: 0.8rem;
    font-style: normal;
}

.comparison-table .dashicons-no::before {
    content: "✕";
    /* Straight, non-cursive X */
}

/* Keep Footer & CTA Styles Below */
/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
    color: var(--white);
    text-align: center;
    background-image: radial-gradient(circle at center, #334155 0%, #1E293B 100%);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: #94A3B8;
    margin-bottom: var(--spacing-md);
}

.cta-section .btn-large {
    margin-bottom: 1.5rem;
}

.cta-section .small-text {
    margin-top: 1.5rem;
    display: block;
    color: #94A3B8;
}

/* Footer */
.site-footer {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.link-group h4 {
    margin-bottom: var(--spacing-sm);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.link-group ul li {
    margin-bottom: 0.75rem;
}

.link-group a {
    color: var(--text-color);
    font-size: 0.9rem;
}

.link-group a:hover {
    color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 900px) {
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .hero-subtitle {
        margin: 0 auto var(--spacing-md);
    }

    .hero-cta {
        justify-content: center;
    }

    /* Mobile Menu fix */
    .main-nav ul {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

/* Mobile Pricing Horizontal Scroll */
@media (max-width: 900px) {
    .pricing-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 40px;
        /* Space for scrollbar/shadows */
        gap: 15px;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .pricing-container::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    .pricing-container {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .pricing-card {
        flex: 0 0 85vw;
        /* Show one card plus a peek of the next */
        width: 85vw;
        max-width: 85vw;
        scroll-snap-align: center;
        margin-right: 0;
    }

    /* Center the first card */
    .pricing-container::before,
    .pricing-container::after {
        content: '';
        flex: 0 0 7.5vw;
        /* (100vw - 85vw) / 2 */
    }

    /* Ensure highlight card doesn't break layout */
    .pricing-card.highlight {
        transform: none;
        margin: 0;
    }

    .pricing-card.highlight:hover {
        transform: none;
    }
}

/* --- Scroll Animations --- */
.reveal,
.reveal-stagger>* {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Default state before JS kicks in (hidden below) */
.reveal:not(.scrolling-up):not(.scrolling-down),
.reveal-stagger:not(.scrolling-up):not(.scrolling-down)>* {
    transform: translateY(30px);
}

/* Hidden state when scrolling DOWN (element is below viewport) */
.scrolling-down.reveal:not(.active),
.scrolling-down.reveal-stagger:not(.active)>* {
    transform: translateY(40px);
}

/* Hidden state when scrolling UP (element is above viewport) */
.scrolling-up.reveal:not(.active),
.scrolling-up.reveal-stagger:not(.active)>* {
    transform: translateY(-40px);
}

/* Active state (visible, centered) */
.reveal.active,
.reveal-stagger.active>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger.active>*:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-stagger.active>*:nth-child(6) {
    transition-delay: 0.6s;
}

.reveal-stagger.active>*:nth-child(7) {
    transition-delay: 0.7s;
}

.reveal-stagger.active>*:nth-child(8) {
    transition-delay: 0.8s;
}

.reveal-stagger.active>*:nth-child(9) {
    transition-delay: 0.9s;
}

.reveal-stagger.active>*:nth-child(10) {
    transition-delay: 1.0s;
}

/* --- FAQ SECTION --- */
.faq-section {
    margin: 40px auto;
    max-width: 800px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.3em;
    color: var(--bg-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.faq-container details {
    background: var(--white);
    margin-bottom: 8px;
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-container details:hover {
    box-shadow: var(--shadow-md);
}

.faq-container summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    outline: none;
    color: var(--bg-dark);
    font-size: 0.9em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-container summary::-webkit-details-marker {
    display: none;
}

.faq-container summary::after {
    content: '+';
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1em;
}

.faq-container details[open] summary::after {
    content: '−';
}

.faq-container details[open] summary {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 4px;
}

.faq-container p {
    margin: 12px 0 0 0;
    font-size: 0.9em;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-container details {
        border-radius: 10px;
    }
}