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

:root {
    /* Brand Colors */
    --accent-lime: #CCF381;
    /* Bright Lime */
    --accent-lime-hover: #bce36c;
    --dark-green: #0F1C15;
    /* Deep Dark Green used for text and dark cards */
    --primary-purple: #4834d4;
    /* For some accents if needed, keeping similar to original logo gradient but cleaner */

    /* Backgrounds */
    --bg-body-start: #F2F9F2;
    /* Soft Mint */
    --bg-body-end: #FFFFFF;
    --bg-white: #ffffff;
    --bg-card-dark: #0F1C15;

    /* Text */
    --text-dark: #0F1C15;
    --text-secondary: #4A5568;
    --text-muted: #A0AEC0;
    --text-light: #F7FAFC;
    /* Text on dark backgrounds */

    /* UI Elements */
    --border-light: #E2E8F0;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.08);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;

    /* Legacy/Checkout Variables */
    --card-bg: rgba(255, 255, 255, 0.05);
    --primary-gradient: linear-gradient(135deg, var(--dark-green) 0%, #1a2e1a 100%);
    --secondary-gradient: linear-gradient(135deg, var(--accent-lime) 0%, var(--accent-lime-hover) 100%);
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(180deg, var(--bg-body-start) 0%, var(--bg-body-end) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navigation - Floating Glass Island */
.main-nav {
    position: fixed;
    /* Changed to fixed for sticky behavior */
    top: 20px;
    z-index: 1000;
    /* Increased z-index */
    width: 90%;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.hero {
    position: relative;
    padding-top: 200px;
    /* Increased from 140px to prevent overlap */
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-cta {
    background: var(--dark-green);
    color: var(--accent-lime);
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 28, 21, 0.2);
}

/* Hamburger Menu - Hidden on Desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Menu - Hidden by default */
.mobile-nav-menu {
    display: none;
    flex-direction: column;
    padding: 0 24px 20px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-nav-menu.active {
    max-height: 300px;
    padding-bottom: 20px;
}

.mobile-nav-menu a {
    padding: 14px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.2s;
}

.mobile-nav-menu a:last-child {
    border-bottom: none;
}

.mobile-nav-menu a:hover {
    color: var(--dark-green);
}

.mobile-nav-cta {
    background: var(--dark-green) !important;
    color: #fff !important;
    padding: 14px 20px !important;
    border-radius: 10px !important;
    text-align: center;
    margin-top: 10px;
    border-bottom: none !important;
}

/* Mobile Navigation Responsive */
@media (max-width: 768px) {
    .main-nav {
        border-radius: 20px;
        top: 10px;
        width: 94%;
    }

    .nav-container {
        padding: 12px 16px;
    }

    .nav-logo span {
        font-size: 16px;
    }

    .nav-logo img {
        width: 28px;
        height: 28px;
    }

    /* Hide desktop elements */
    .nav-links,
    .nav-cta {
        display: none;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Mobile menu - hidden by default, shown when .active */
    .mobile-nav-menu {
        display: none;
    }

    .mobile-nav-menu.active {
        display: flex;
    }
}

/* Main Content */
.main-content {
    background: var(--bg-cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}


/* Hero Section */
.hero {
    padding: 220px 0 100px;
    /* Increased top padding to clear fixed nav */
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
    /* Explicit White Background */
}

/* Aurora Background Effect - Two distinct spreads */
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(204, 243, 129, 0.35) 0%, transparent 45%),
        /* Lime Spread (Top Right) */
        radial-gradient(circle at 25% 85%, rgba(255, 230, 0, 0.15) 0%, transparent 50%);
    /* Yellow Spread (Bottom Left) */
    z-index: 0;
    filter: blur(60px);
    pointer-events: none;
}

/* Technical Grid Pattern */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 28, 21, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 28, 21, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--dark-green) 0%, #2d4a3e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--accent-lime);
    z-index: -1;
    opacity: 0.5;
    transform: skewX(-10deg);
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 90%;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.2s forwards;
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    margin-bottom: 40px;
}

.hero-feature-item {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.4s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: var(--dark-green);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(15, 28, 21, 0.2);
}

.cta-button.primary:hover {
    background: #000;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 28, 21, 0.25), 0 0 0 4px rgba(204, 243, 129, 0.3);
    /* Glow ring */
}

.cta-button.secondary {
    background: transparent;
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
}

.cta-button.secondary:hover {
    background: var(--dark-green);
    color: #FFFFFF;
    transform: translateY(-4px);
}

.cta-note {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Dashboard Illustration */
.hero-image {
    position: relative;
    perspective: 1200px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotateY(-12deg) rotateX(5deg);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-image:hover .dashboard-container {
    transform: rotateY(-8deg) rotateX(2deg) translateY(-10px);
}

.dashboard-base {
    position: absolute;
    inset: 40px 0 40px 40px;
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow:
        0 40px 80px -20px rgba(15, 28, 21, 0.15),
        0 0 0 1px rgba(15, 28, 21, 0.05),
        /* Thin border */
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    /* Inner highlight */
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.db-header {
    height: 50px;
    border-bottom: 1px solid rgba(15, 28, 21, 0.05);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 12px;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

.db-dots {
    display: flex;
    gap: 6px;
}

.db-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
}

.db-dot:nth-child(1) {
    background: #ff5f57;
}

.db-dot:nth-child(2) {
    background: #ffbd2e;
}

.db-dot:nth-child(3) {
    background: #28c940;
}

.db-body {
    flex: 1;
    padding: 30px;
    background: #FAFCFA;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
}

.db-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.db-sidebar-item {
    height: 12px;
    background: var(--border-light);
    border-radius: 6px;
    width: 60%;
    opacity: 0.6;
}

.db-sidebar-item.active {
    width: 80%;
    background: var(--dark-green);
    opacity: 1;
}

.db-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.db-chart-area {
    height: 160px;
    background: linear-gradient(180deg, rgba(204, 243, 129, 0.2) 0%, transparent 100%);
    border-radius: 12px;
    border: 1px solid rgba(204, 243, 129, 0.4);
    position: relative;
    overflow: hidden;
}

.db-chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 40" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 40 L0 30 Q10 20 20 30 T40 25 T60 35 T80 15 L100 20 L100 40 Z" fill="%23CCF381" opacity="0.4"/></svg>');
    background-size: cover;
}

.db-stats-row {
    display: flex;
    gap: 20px;
}

/* Stat Box Styling */
.db-stat-box {
    flex: 1;
    height: 80px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 16px;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Typing Cursor Effect */
#typing-text {
    color: var(--dark-green);
    position: relative;
    display: inline-block;
}

#typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 1s infinite;
    color: var(--accent-lime);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Floating Elements */
.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 40px rgba(15, 28, 21, 0.12);
    display: flex;
    align-items: center;
    gap: 16px;
    bottom: 60px;
    left: -20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.hero-card-2 {
    bottom: auto;
    top: 60px;
    left: auto;
    right: -20px;
    animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-feature-item svg {
    color: var(--dark-green);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero-card-icon {
    font-size: 24px;
    background: var(--accent-lime);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
}

.hero-card-text {
    display: flex;
    flex-direction: column;
}

.hero-card-text strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-card-text span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Mixed Media Person Element */
.hero-person-img {
    position: absolute;
    bottom: -10px;
    right: -30px;
    height: 420px;
    width: auto;
    z-index: 5;
    filter: grayscale(100%) contrast(1.1);
    /* Use multiply to make white background transparent */
    mix-blend-mode: multiply;
    pointer-events: none;
    transition: transform 0.4s ease-out;
}

.hero-image:hover .hero-person-img {
    transform: translateX(-5px) translateY(-5px) scale(1.02);
}

@media (max-width: 991px) {
    .hero-person-img {
        height: 300px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    .hero-person-img {
        display: none;
    }
}

/* ========== Hero Section Mobile Responsive ========== */
@media (max-width: 1024px) {
    .hero {
        padding: 160px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features-list {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        height: 350px;
        order: 2;
    }

    .dashboard-container {
        transform: rotateY(0) rotateX(0);
    }

    .hero-image:hover .dashboard-container {
        transform: rotateY(0) rotateX(0) translateY(-5px);
    }

    .hero-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 60px;
    }

    .hero-grid {
        gap: 24px;
    }

    .hero-title {
        font-size: 26px;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero-title .highlight::after {
        display: none;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .hero-features-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 24px;
        text-align: left;
        padding: 0 10px;
    }

    .hero-feature-item {
        font-size: 12px;
        gap: 6px;
        justify-content: flex-start;
    }

    .hero-feature-item svg {
        width: 14px;
        height: 14px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 16px 28px;
        font-size: 15px;
        border-radius: 12px;
    }

    .cta-note {
        font-size: 11px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
    }

    /* Hide Dashboard on Mobile - Show simpler content */
    .hero-image {
        display: none;
    }

    /* Mobile Hero Stats Bar */
    .mobile-hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 28px;
        padding: 20px 16px;
        background: var(--dark-green);
        border-radius: 16px;
    }

    .mobile-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mobile-stat .stat-value {
        font-size: 22px;
        font-weight: 800;
        color: var(--accent-lime);
        line-height: 1;
        margin-bottom: 4px;
    }

    .mobile-stat .stat-label {
        font-size: 11px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
}

/* Hide Mobile Stats and Visual on Desktop */
.mobile-hero-stats,
.mobile-hero-visual {
    display: none;
}

/* Mobile Hero Visual Styles */
@media (max-width: 768px) {
    .mobile-hero-visual {
        display: block;
        margin-top: 32px;
    }

    .mobile-hero-img-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .mobile-hero-img-wrapper::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background: linear-gradient(135deg, var(--accent-lime) 0%, rgba(204, 243, 129, 0.4) 100%);
        border-radius: 50%;
        z-index: 0;
        filter: blur(20px);
    }

    .mobile-hero-img-wrapper img {
        position: relative;
        z-index: 1;
        max-width: 180px;
        height: auto;
        filter: drop-shadow(0 20px 40px rgba(15, 28, 21, 0.2));
    }
}

@media (max-width: 480px) {
    .mobile-hero-visual {
        margin-top: 24px;
    }

    .mobile-hero-img-wrapper::before {
        width: 160px;
        height: 160px;
    }

    .mobile-hero-img-wrapper img {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 40px;
    }

    .hero-title {
        font-size: 24px;
        letter-spacing: -0.3px;
    }

    .hero-subtitle {
        font-size: 14px;
        padding: 0 5px;
    }

    .hero-features-list {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 20px;
    }

    .hero-feature-item {
        font-size: 13px;
        justify-content: center;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 14px;
        max-width: 260px;
    }

    .hero-image {
        max-height: 220px;
    }

    .db-chart-area {
        height: 80px;
    }

    .db-stat-box {
        height: 40px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

/* ========== HostAdvice Reviews Section (Mobile First) ========== */
.reviews-section {
    padding: 48px 0;
    background: var(--bg-white);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Decorative background gradient - matches pricing section */
.reviews-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(204, 243, 129, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(60px);
}

.reviews-header {
    text-align: center;
    margin-bottom: 24px;
    padding: 0 16px;
}

.reviews-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hostadvice-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
}

.reviews-rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.reviews-stars {
    display: flex;
    gap: 3px;
}

.reviews-stars svg {
    width: 16px;
    height: 16px;
    color: #FFB800;
}

.reviews-score {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.reviews-count {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
    padding: 0 16px;
    max-width: 100%;
}

.review-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    border-color: rgba(204, 243, 129, 0.5);
    box-shadow: 0 12px 32px rgba(15, 28, 21, 0.08);
    transform: translateY(-2px);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.review-stars svg {
    width: 14px;
    height: 14px;
    color: #FFB800;
}

.review-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.review-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: normal;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    margin-top: auto;
}

.reviews-section .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.reviews-section .author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.reviews-section .author-date {
    font-size: 11px;
    color: var(--text-muted);
}

.reviews-cta {
    text-align: center;
    padding: 0 16px;
}

.reviews-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    color: var(--dark-green);
    text-decoration: none;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reviews-link:hover {
    border-color: var(--dark-green);
    background: transparent;
}

.reviews-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.reviews-link:hover svg {
    transform: translateX(4px);
}

/* Tablet - 768px and up */
@media (min-width: 768px) {
    .reviews-section {
        padding: 80px 0;
    }

    .reviews-section::before {
        width: 500px;
        height: 500px;
    }

    .reviews-header {
        margin-bottom: 40px;
    }

    .reviews-source {
        gap: 20px;
    }

    .hostadvice-logo {
        height: 36px;
    }

    .reviews-rating-summary {
        flex-direction: row;
        gap: 16px;
    }

    .reviews-stars svg {
        width: 20px;
        height: 20px;
    }

    .reviews-score {
        font-size: 28px;
    }

    .reviews-count {
        font-size: 14px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .review-card {
        padding: 28px;
        border-radius: 18px;
    }

    .review-stars svg {
        width: 15px;
        height: 15px;
    }

    .review-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .review-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .review-author {
        padding-top: 16px;
        border-top: 1px solid var(--border-light);
        gap: 12px;
    }

    .reviews-section .author-avatar {
        width: 40px;
        height: 40px;
    }

    .reviews-section .author-name {
        font-size: 14px;
    }

    .reviews-section .author-date {
        font-size: 12px;
    }

    .reviews-header,
    .reviews-grid,
    .reviews-cta {
        padding: 0;
    }

    .reviews-link {
        display: inline-flex;
        width: auto;
        padding: 14px 28px;
        font-size: 15px;
    }

    .reviews-link svg {
        width: 18px;
        height: 18px;
    }
}

/* Desktop - 992px and up */
@media (min-width: 992px) {
    .reviews-section {
        padding: 100px 0;
    }

    .reviews-section::before {
        width: 600px;
        height: 600px;
    }

    .reviews-header {
        margin-bottom: 48px;
    }

    .reviews-source {
        gap: 24px;
    }

    .hostadvice-logo {
        height: 40px;
    }

    .reviews-stars svg {
        width: 22px;
        height: 22px;
    }

    .reviews-score {
        font-size: 32px;
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 48px;
    }

    .review-card {
        padding: 32px;
        border-radius: 20px;
    }

    .review-card:hover {
        box-shadow: 0 20px 40px rgba(15, 28, 21, 0.08);
        transform: translateY(-4px);
    }

    .review-stars {
        margin-bottom: 16px;
    }

    .review-stars svg {
        width: 16px;
        height: 16px;
    }

    .reviews-link {
        padding: 16px 32px;
    }
}

/* Pricing Section */
.pricing {
    padding: 60px 0 100px;
    background: var(--bg-white);
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Ensure blob doesn't spill */
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204, 243, 129, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(60px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
    /* Center vertically to allow pop-out effect */
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    /* Smoother radius */
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    /* Subtle base shadow */
}

.pricing-card:hover {
    border-color: rgba(204, 243, 129, 0.5);
}

/* Dark Mode Popular Card - Restored */
.pricing-card.popular {
    background: var(--bg-card-dark);
    border-color: var(--bg-card-dark);
    color: #ffffff;
    /* transform: scale(1.05); Removed to match other cards */
    box-shadow: 0 25px 50px rgba(15, 28, 21, 0.3);
    /* Kept explicit shadow */
    z-index: 2;
    position: relative;
}

.pricing-card.popular:hover {
    /* Removed scale lock */
    border-color: rgba(204, 243, 129, 0.5);
    /* Match standard hover border */
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #E36642;
    /* User requested Orange */
    color: #ffffff;
    /* User requested White */
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    margin-bottom: 24px;
}

.plan-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.pricing-card.popular .plan-name {
    color: #ffffff;
}

.plan-tagline {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-card.popular .plan-tagline {
    color: var(--text-muted);
}

.pricing-amount {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-card.popular .pricing-amount {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-crossed {
    display: block;
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-card.popular .currency {
    color: #ffffff;
}

.price {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-card.popular .price {
    color: #ffffff;
}

.period {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-card.popular .period {
    color: var(--text-muted);
}

.renews-text {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.pricing-card.popular .renews-text {
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

/* Feature List Items */
.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    /* Increased spacing */
    font-size: 15px;
    color: var(--text-dark);
}

.features-list .check svg {
    width: 20px;
    height: 20px;
    color: var(--dark-green);
    /* Dark Green for White Cards */
    flex-shrink: 0;
}

.pricing-card.popular .features-list .check svg {
    color: var(--accent-lime);
    /* Lime for Dark Card */
}

.pricing-card.popular .features-list li {
    color: var(--text-light);
}

.features-list .check {
    display: flex;
    align-items: center;
}

.plan-button {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    /* Inherit font from body (Outfit) */
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    /* Added spacing below button */
}

.plan-button:not(.primary-btn):hover {
    border-color: var(--dark-green);
    background: transparent;
    cursor: pointer;
}

.plan-button.primary-btn {
    background: var(--accent-lime);
    border-color: var(--accent-lime);
    color: var(--dark-green);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.plan-button.primary-btn:hover {
    cursor: pointer;
    /* Removed all hover effects */
}

/* Features Section */
.features-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    background-color: #FCFAF8;
    /* User requested solid background */
}

/* Pseudo-elements removed as per user request to remove grid and aurora */

/* Ensure content sits above background */
.features-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    /* Added for stacking context */
    z-index: 5;
    /* Lift above background grid */
}

.features-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.features-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.features-hero-image {
    display: flex;
    justify-content: center;
    animation: float 8s ease-in-out infinite;
}

.features-illustration {
    width: 320px;
    height: 280px;
    background: linear-gradient(135deg, #CCF381 0%, #98E82E 100%);
    /* Bright Lime Gradient */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(204, 243, 129, 0.4);
}

.illustration-card {
    background: #ffffff;
    padding: 20px 32px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow-hover);
    display: flex;
    align-items: center;
    gap: 16px;
    transform: rotate(-5deg);
}

.illustration-icon {
    font-size: 32px;
}

/* Spark (Thunder) Icon Styles */
.spark-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.thunder-bolt {
    fill: none;
    stroke: var(--dark-green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
    transform-origin: center;
}

.thunder-glow {
    fill: var(--accent-lime);
    opacity: 0;
    filter: blur(8px);
    transition: all 0.3s ease;
    transform-origin: center;
}

@keyframes strikeThunder {
    0% {
        transform: scale(1) rotate(0deg);
        stroke: #E36642;
    }

    25% {
        transform: scale(1.1) rotate(-5deg);
        stroke: #fff;
    }

    50% {
        transform: scale(1.1) rotate(5deg);
        stroke: #E36642;
    }

    75% {
        transform: scale(1.1) rotate(-5deg);
        stroke: #fff;
    }

    100% {
        transform: scale(1) rotate(0deg);
        stroke: #E36642;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }
}

.pricing-card:hover .thunder-bolt {
    stroke: #E36642;
    fill: #E36642;
    animation: strikeThunder 0.4s infinite;
}

.pricing-card:hover .thunder-glow {
    animation: pulseGlow 0.4s infinite reverse;
}

/* Ignite (Simple Flame) Icon Styles */
.ignite-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ignite-flame-main {
    fill: none;
    stroke: var(--dark-green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
    transform-origin: bottom center;
}

.ignite-flame-inner {
    fill: none;
    stroke: var(--dark-green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.5;
    transition: all 0.3s ease;
    transform-origin: bottom center;
}

@keyframes rageFire {
    0% {
        transform: scale(1) skewX(0deg) translateY(0);
        filter: drop-shadow(0 0 5px rgba(227, 102, 66, 0.4));
    }

    10% {
        transform: scale(1.1, 1.2) skewX(-3deg) translateY(-2px);
        filter: drop-shadow(0 0 15px rgba(227, 102, 66, 0.8));
    }

    20% {
        transform: scale(0.9, 1.1) skewX(3deg) translateY(1px);
    }

    30% {
        transform: scale(1.2, 1.3) skewX(-5deg) translateY(-4px);
        filter: drop-shadow(0 0 20px rgba(227, 102, 66, 0.9));
    }

    40% {
        transform: scale(1.1, 0.9) skewX(2deg) translateY(0);
    }

    50% {
        transform: scale(1.3, 1.4) skewX(-2deg) translateY(-6px);
        filter: drop-shadow(0 0 25px rgba(227, 102, 66, 1));
    }

    60% {
        transform: scale(0.95, 1.1) skewX(4deg) translateY(-1px);
    }

    70% {
        transform: scale(1.1, 1.3) skewX(-4deg) translateY(-3px);
    }

    80% {
        transform: scale(1.2, 1.1) skewX(2deg) translateY(-2px);
    }

    90% {
        transform: scale(1.05, 1.2) skewX(-1deg) translateY(-4px);
    }

    100% {
        transform: scale(1) skewX(0deg) translateY(0);
        filter: drop-shadow(0 0 5px rgba(227, 102, 66, 0.4));
    }
}

@keyframes corePulse {
    0% {
        fill: #fff;
        transform: scale(0.8);
    }

    50% {
        fill: #fffacd;
        transform: scale(1.1);
    }

    100% {
        fill: #fff;
        transform: scale(0.8);
    }
}

.pricing-card:hover .ignite-flame-main {
    fill: #E36642;
    /* Fills with orange */
    stroke: #E36642;
    animation: rageFire 0.4s infinite linear;
    /* Fast, chaotic loop */
}

.pricing-card:hover .ignite-flame-inner {
    stroke: none;
    fill: #fff;
    opacity: 1;
    animation: rageFire 0.4s infinite linear reverse, corePulse 0.2s infinite alternate;
}


/* Plan Icon Styles */
.plan-icon-container {
    width: 45px;
    height: 45px;
    margin: 0 0 16px 0;
    /* Left aligned matching text */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Keeps SVG centered within the 64x64 box */
}

/* Rocket Icon Styles */
.rocket-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.rocket-body {
    fill: #ffffff;
    /* White for dark background */
    stroke: none;
    transform-origin: center;
    transition: transform 0.3s ease;
}

.rocket-window {
    fill: var(--dark-green);
    /* Contrast with white body */
}

.rocket-flame {
    fill: #E36642;
    opacity: 0;
    transform-origin: top center;
    transform: scaleY(0.5);
    transition: all 0.3s ease;
}

.rocket-smoke {
    fill: rgba(255, 255, 255, 0.2);
    /* Lighter smoke for dark background */
    opacity: 0;
    transform-origin: center;
}


/* Hover Animation Definition */
@keyframes rocketShake {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-1px, 1px) rotate(-1deg);
    }

    50% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    75% {
        transform: translate(-1px, -1px) rotate(-1deg);
    }

    100% {
        transform: translate(0, -5px) rotate(0deg);
    }
}

@keyframes flameThrust {
    0% {
        transform: scaleY(1);
        opacity: 0.8;
    }

    50% {
        transform: scaleY(1.5) scaleX(1.2);
        opacity: 1;
    }

    100% {
        transform: scaleY(1.2);
        opacity: 0.9;
    }
}

/* Trigger on Pricing Card Hover */
.pricing-card:hover .rocket-body {
    animation: rocketShake 0.5s infinite;
}

.pricing-card:hover .rocket-flame {
    opacity: 1;
    animation: flameThrust 0.2s infinite alternate;
}

.pricing-card:hover .rocket-icon-svg {
    filter: drop-shadow(0 10px 15px rgba(227, 102, 66, 0.3));
}

/* Features Grid - Bento Style */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 20px 0;
    position: relative;
    z-index: 5;
}

/* Feature Cards - Uniform Grid */
.feature-card {
    background: #ffffff;
    border: 1px solid rgba(15, 28, 21, 0.08);
    /* Darker border for visible separation */
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 24px rgba(15, 28, 21, 0.06);
    /* Stronger base shadow */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--accent-lime);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
    /* No translateY as requested */
}

/* Animated Uptime Icon Styles */
.uptime-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.graph-grid {
    fill: none;
    stroke: var(--dark-green);
    stroke-width: 1.5;
    opacity: 0.1;
}

.graph-line {
    fill: none;
    stroke: var(--dark-green);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawGraph 4s infinite ease-out;
}

.status-dot {
    fill: var(--accent-lime);
    animation: pulseDot 2s infinite;
}

.pulse-ring {
    fill: none;
    stroke: var(--accent-lime);
    stroke-width: 1.5;
    animation: ripple 2s infinite;
    transform-origin: 52px 20px;
}

@keyframes drawGraph {
    0% {
        stroke-dashoffset: 100;
        opacity: 0;
    }

    20% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    80% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: -100;
        opacity: 0;
    }
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
        stroke-width: 1.5;
    }

    100% {
        transform: scale(3);
        opacity: 0;
        stroke-width: 0;
    }
}

.feature-card:hover .graph-line {
    stroke: #E36642;
    /* Line turns orange on hover */
}

.feature-card:hover .status-dot {
    fill: #E36642;
}

.feature-card:hover .pulse-ring {
    stroke: #E36642;
}

/* Animated Support Icon Styles (Redesigned) */
.support-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.chat-bubble-primary {
    fill: #ffffff;
    stroke: var(--dark-green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: floatBubble 4s ease-in-out infinite;
}

.chat-bubble-secondary {
    fill: var(--accent-lime);
    stroke: none;
    opacity: 0.2;
    animation: floatBubbleDelayed 4s ease-in-out infinite;
}

.typing-dot {
    fill: var(--dark-green);
    animation: typing 1.5s infinite;
}

.typing-dot:nth-child(1) {
    animation-delay: 0s;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes floatBubble {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes floatBubbleDelayed {

    0%,
    100% {
        transform: translateY(0) scale(0.9);
    }

    50% {
        transform: translateY(-6px) scale(0.9);
    }
}

@keyframes typing {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

.feature-card:hover .chat-bubble-primary {
    stroke: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .typing-dot {
    fill: #E36642;
    /* Dots turn orange */
}

/* Animated Autoscaling Icon Styles */
.scale-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.scale-bar {
    fill: #ffffff;
    stroke: var(--dark-green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform-origin: bottom;
}

.scale-bar.bar-1 {
    animation: scaleBar1 3s infinite ease-in-out;
}

.scale-bar.bar-2 {
    animation: scaleBar2 4s infinite ease-in-out;
}

.scale-bar.bar-3 {
    animation: scaleBar3 3.5s infinite ease-in-out;
}

.scale-arrow {
    fill: none;
    stroke: var(--accent-lime);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.6;
    animation: floatArrow 3s infinite ease-in-out;
}

@keyframes scaleBar1 {

    0%,
    100% {
        transform: scaleY(0.6);
    }

    50% {
        transform: scaleY(1);
    }
}

@keyframes scaleBar2 {

    0%,
    100% {
        transform: scaleY(0.8);
    }

    50% {
        transform: scaleY(0.4);
    }
}

@keyframes scaleBar3 {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(0.9);
    }
}

@keyframes floatArrow {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

.feature-card:hover .scale-bar {
    stroke: #000;
}

.feature-card:hover .scale-arrow {
    stroke: #E36642;
    /* Arrows turn orange */
    opacity: 1;
}

/* Animated No-Limits Icon Styles */
.nolimits-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.gauge-track {
    fill: none;
    stroke: var(--dark-green);
    stroke-width: 4;
    stroke-linecap: round;
    opacity: 0.1;
}

.gauge-fill {
    fill: none;
    stroke: var(--dark-green);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: fillGauge 4s infinite ease-in-out;
}

.gauge-needle {
    fill: var(--dark-green);
    transform-origin: 32px 42px;
    animation: swingNeedle 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.energy-bolt {
    fill: var(--accent-lime);
    animation: boltPulse 2s infinite ease-out;
    opacity: 0;
    transform-origin: center;
}

.energy-bolt:nth-child(1) {
    animation-delay: 2s;
}

.energy-bolt:nth-child(2) {
    animation-delay: 2.5s;
}

@keyframes fillGauge {

    0%,
    100% {
        stroke-dashoffset: 100;
    }

    50% {
        stroke-dashoffset: 20;
    }
}

@keyframes swingNeedle {

    0%,
    100% {
        transform: rotate(-90deg);
    }

    50% {
        transform: rotate(90deg);
    }
}

@keyframes boltPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.feature-card:hover .gauge-fill {
    stroke: #E36642;
    /* Fill turns orange */
}

.feature-card:hover .energy-bolt {
    fill: #E36642;
}

.feature-card:hover .gauge-needle {
    fill: #E36642;
}

/* Animated Experience Icon Styles */
.award-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.medal-body {
    fill: #ffffff;
    stroke: var(--dark-green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.medal-star {
    fill: var(--accent-lime);
    animation: pulseStar 3s infinite ease-in-out;
    transform-origin: 32px 30px;
}

.ribbon-fold {
    fill: none;
    stroke: var(--dark-green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: ribbonWave 4s ease-in-out infinite;
    transform-origin: top;
}

.ribbon-fold:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes pulseStar {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

@keyframes ribbonWave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }
}

.feature-card:hover .medal-star {
    fill: #E36642;
    /* Star turns orange */
}

.feature-card:hover .ribbon-fold {
    stroke: #000;
}

/* Animated Guarantee Icon Styles */
.guarantee-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.shield-center {
    fill: #ffffff;
    stroke: var(--dark-green);
    stroke-width: 2.5;
    animation: pulseShield 3s infinite ease-in-out;
    transform-origin: center;
}

.refund-arrow {
    fill: none;
    stroke: var(--accent-lime);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform-origin: center;
    animation: rotateRefund 6s linear infinite;
}

.calendar-text {
    fill: var(--dark-green);
    font-size: 14px;
    font-weight: bold;
    font-family: sans-serif;
    text-anchor: middle;
}

@keyframes rotateRefund {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseShield {

    0%,
    100% {
        transform: scale(1);
        stroke: var(--dark-green);
    }

    50% {
        transform: scale(1.05);
        stroke: var(--accent-lime);
    }
}

.feature-card:hover .refund-arrow {
    stroke: #E36642;
    /* Arrows turn orange */
}

.feature-card:hover .shield-center {
    stroke: #000;
}

/* Feature 1: Unlimited Storage (Standard) */
.feature-card:nth-child(1) {
    background: #ffffff;
}

/* Icon override removed */


/* Animated Storage Icon Styles */
.storage-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.disk {
    fill: #ffffff;
    stroke: var(--dark-green);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.disk-accent {
    fill: var(--accent-lime);
    opacity: 0.8;
}

.particle {
    fill: var(--accent-lime);
    opacity: 0;
    animation: floatParticle 3s infinite ease-out;
}

.particle:nth-child(1) {
    animation-delay: 0s;
}

.particle:nth-child(2) {
    animation-delay: 1s;
}

.particle:nth-child(3) {
    animation-delay: 2s;
}

.halo-ring {
    stroke: var(--accent-lime);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 10 5;
    opacity: 0.5;
    animation: rotateRing 10s linear infinite;
    transform-origin: center;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translateY(-20px) scale(0);
        opacity: 0;
    }
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg) scaleX(1.5) scaleY(0.5);
    }

    to {
        transform: rotate(360deg) scaleX(1.5) scaleY(0.5);
    }
}

.feature-card:hover .disk {
    stroke: #000;
}

.feature-card:hover .disk-accent {
    fill: #E36642;
    /* Orange glow on hover */
}

/* Animated Security Icon Styles */
.security-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.shield-path {
    fill: none;
    stroke: var(--dark-green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.shield-inner {
    fill: rgba(204, 243, 129, 0.1);
    stroke: none;
}

.scan-beam {
    fill: var(--accent-lime);
    opacity: 0.5;
    animation: scanShield 3s ease-in-out infinite;
    transform-origin: center;
}

.lock-body {
    fill: #ffffff;
    stroke: var(--dark-green);
    stroke-width: 2;
}

.lock-shackle {
    fill: none;
    stroke: var(--accent-lime);
    stroke-width: 2.5;
    stroke-linecap: round;
    transform-origin: 32px 28px;
    animation: pulseLock 4s infinite;
}

@keyframes scanShield {

    0%,
    100% {
        transform: translateY(-15px) scaleY(0.1);
        opacity: 0;
    }

    50% {
        transform: translateY(15px) scaleY(1);
        opacity: 0.6;
    }
}

@keyframes pulseLock {

    0%,
    100% {
        transform: scale(1);
        stroke: var(--accent-lime);
    }

    50% {
        transform: scale(1.1);
        stroke: #E36642;
    }
}

.feature-card:hover .shield-path {
    stroke: #000;
}

.feature-card:hover .lock-shackle {
    stroke: #E36642;
}

/* Animated SSL Icon Styles */
.ssl-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.cert-body {
    fill: #ffffff;
    stroke: var(--dark-green);
    stroke-width: 2;
    stroke-linejoin: round;
}

.cert-lines {
    fill: none;
    stroke: var(--dark-green);
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.3;
}

.cert-badge {
    fill: var(--accent-lime);
    stroke: none;
    transform-origin: 46px 46px;
    animation: pulseBadge 3s infinite ease-in-out;
}

.check-mark {
    fill: none;
    stroke: var(--dark-green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: drawCheck 3s infinite ease-in-out;
}

@keyframes pulseBadge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

@keyframes drawCheck {

    0%,
    20% {
        stroke-dashoffset: 20;
        opacity: 0;
    }

    40%,
    80% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

.feature-card:hover .cert-body {
    stroke: #000;
}

.feature-card:hover .cert-badge {
    fill: #E36642;
    /* Badge turns orange */
}

.feature-card:hover .check-mark {
    stroke: #ffffff;
    /* Check turns white on orange background */
}

.feature-card:nth-child(1) h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

/* Bento rules removed */

/* Mobile Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reset Spans for tablet/mobile to keep it clean */
    .feature-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .feature-card:nth-child(1) {
        grid-column: auto;
    }
}

/* Hide Mobile Features on Desktop (default) */
.mobile-features {
    display: none;
}

@media (max-width: 768px) {
    .features-section {
        padding: 50px 0;
    }

    /* Hide desktop elements */
    .features-grid {
        display: none;
    }

    .features-hero-image {
        display: none;
    }

    .features-hero {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 32px;
    }

    .features-title {
        font-size: 26px;
        text-align: center;
        margin-bottom: 12px;
    }

    .features-title br {
        display: none;
    }

    .features-subtitle {
        font-size: 14px;
        text-align: center;
        max-width: 100%;
    }

    /* Mobile Features Layout */
    .mobile-features {
        display: block;
    }

    .mobile-features-icons {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin-bottom: 24px;
    }

    .mobile-feature-icon-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .mf-icon {
        width: 52px;
        height: 52px;
        background: var(--dark-green);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mf-icon svg {
        width: 24px;
        height: 24px;
        color: var(--accent-lime);
    }

    .mobile-feature-icon-item span {
        font-size: 12px;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.2;
    }

    /* Checklist */
    .mobile-features-list {
        background: #fff;
        border-radius: 16px;
        padding: 20px;
        border: 1px solid var(--border-light);
    }

    .mf-list-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .mf-list-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .mf-list-item:first-child {
        padding-top: 0;
    }

    .mf-list-item svg {
        width: 18px;
        height: 18px;
        color: var(--dark-green);
        flex-shrink: 0;
    }

    .mf-list-item span {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-dark);
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 0;
    }

    .features-title {
        font-size: 22px;
    }

    .mobile-features-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .mf-icon {
        width: 48px;
        height: 48px;
    }

    .mf-icon svg {
        width: 22px;
        height: 22px;
    }

    .mobile-feature-icon-item span {
        font-size: 12px;
    }

    .mobile-features-list {
        padding: 16px;
    }

    .mf-list-item {
        padding: 10px 0;
        gap: 10px;
    }

    .mf-list-item span {
        font-size: 13px;
    }
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 24px;
    background: rgba(204, 243, 129, 0.2);
    /* Soft Lime Tint */
    color: var(--dark-green);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent-lime);
    color: var(--text-dark);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.benefit-card {
    text-align: left;
    padding: 32px;
    background: var(--bg-body-start);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: #e6f7e6;
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials & Stats */
.testimonials-stats {
    padding: 100px 0;
    background: #ffffff;
}

.ts-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.ts-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-side h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.testimonial-card {
    background: var(--bg-body-start);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 180px;
    color: rgba(15, 28, 21, 0.03);
    font-family: serif;
    line-height: 1;
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-style: normal;
    font-weight: 500;
    position: relative;
}

.author-avatar {
    background: var(--dark-green);
    color: var(--accent-lime);
}

.stat-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 32px;
    text-align: left;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: var(--bg-white);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-image {
    position: relative;
}

.cta-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f5d0 0%, #d4eab8 100%);
    border-radius: 24px;
}

.cta-illustration {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s;
}

.faq-item:hover {
    box-shadow: var(--card-shadow);
    border-color: var(--accent-lime);
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Footer */
.site-footer {
    background: var(--dark-green);
    color: #ffffff;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Footer subtle pattern/gradient */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(204, 243, 129, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 24px;
}

.footer-logo svg path {
    fill: var(--accent-lime);
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 600;
}

.social-link:hover {
    background: var(--accent-lime);
    color: var(--dark-green);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

/* Desktop - hide accordion controls, show content */
.footer-accordion-header {
    display: none;
}

.footer-accordion-content {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 16px;
    font-size: 14px;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--accent-lime);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.parent-company-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.parent-company-link:hover {
    color: var(--accent-lime);
    text-decoration: underline;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-badge-img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.trust-badge-img:hover {
    opacity: 1;
}


/* Utility for Inline SVGs */
.icon-svg {
    width: 1.25em;
    height: 1.25em;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 1024px) {

    .hero-grid,
    .features-hero,
    .ts-grid,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-wrapper {
        height: 300px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-side {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .stats-side {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 16px;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 16px;
    }

    .footer-tagline {
        text-align: center;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .footer-links h4 {
        margin-bottom: 16px;
    }

    .footer-links a {
        margin-bottom: 12px;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-top: 24px;
    }

    .footer-bottom p {
        order: 2;
    }

    .trust-badges {
        order: 1;
        justify-content: center;
    }

    .trust-badge-img {
        height: 32px;
    }

    /* Footer Accordion Styles */
    .footer-accordion {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 !important;
    }

    .footer-accordion:last-of-type {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-accordion-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 12px 0;
        background: none;
        border: none;
        cursor: pointer;
        color: inherit;
    }

    .footer-accordion-header h4 {
        margin: 0;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
    }

    /* Plus/Minus Icon */
    .accordion-icon {
        position: relative;
        width: 16px;
        height: 16px;
    }

    .accordion-icon::before,
    .accordion-icon::after {
        content: '';
        position: absolute;
        background: var(--accent-lime);
        transition: transform 0.3s ease;
    }

    /* Horizontal line (always visible) */
    .accordion-icon::before {
        width: 12px;
        height: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Vertical line (rotates to disappear when open) */
    .accordion-icon::after {
        width: 2px;
        height: 12px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .footer-accordion.open .accordion-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
        opacity: 0;
    }

    .footer-accordion-content {
        display: none;
        padding-bottom: 12px;
    }

    .footer-accordion.open .footer-accordion-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-accordion-content a {
        padding: 8px 0;
        font-size: 14px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(200, 245, 71, 0.4);
    color: var(--text-dark);
}

/* Comparison Section Styles */
.comparison-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border: 1px solid var(--border-light);
    margin-bottom: 80px;
}

.comparison-table {
    width: 100%;
    min-width: 900px;
    /* Ensure legibility on small screens */
    border-collapse: collapse;
    font-family: 'Outfit', sans-serif;
}

.comparison-table th,
.comparison-table td {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
    color: var(--text-dark);
}

.comparison-table th {
    background: #FAFAFA;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Feature Column */
.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    position: sticky;
    left: 0;
    background: inherit;
    z-index: 2;
    border-right: 1px solid var(--border-light);
}

/* Headers */
.comparison-table thead th {
    padding-top: 40px;
    padding-bottom: 40px;
    vertical-align: top;
}

.brand-header h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.brand-header .price {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: normal;
}

/* ServerByt Highlight Column */
.comparison-table .highlight-col {
    background: rgba(204, 243, 129, 0.1);
    /* Light Lime Tint */
    border-left: 1px solid rgba(204, 243, 129, 0.3);
    border-right: 1px solid rgba(204, 243, 129, 0.3);
    position: relative;
}

.comparison-table th.highlight-col {
    background: var(--dark-green);
    /* Dark Green Header */
    border-top: 4px solid var(--accent-lime);
    /* Lime Top Border */
    color: #ffffff;
    border-radius: 20px 20px 0 0;
}

/* Fix rounded corners for the highlight column within a table */
.comparison-table thead th.highlight-col {
    background: var(--dark-green);
    color: #ffffff;
    border-top: none;
    /* Reset if needed */
}

.brand-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.highlight-col .brand-name {
    color: var(--accent-lime);
    /* Lime Text */
}

.highlight-col .price {
    color: rgba(255, 255, 255, 0.8);
    /* White text for dark header */
}

/* Check/Cross Icons */
.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.icon-check {
    color: var(--dark-green);
    /* Brand Green */
}

.icon-cross {
    color: #EF4444;
    /* Red - Keep for semantic danger */
    opacity: 0.6;
}

/* Unlimited Text */
.text-blue {
    color: var(--dark-green);
    font-weight: 700;
}

.text-autoscale {
    color: #E36642;
    /* Orange for autoscale feature */
    font-weight: 700;
}


/* Section Headers inside Table */
.table-section-header {
    background: #F8FAFC;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    padding: 16px 20px;
}

/* Comparison CTA Banner */
.comparison-cta {
    background: var(--dark-green);
    /* Deep Brand Green */
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(15, 28, 21, 0.3);
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle at top right, rgba(204, 243, 129, 0.1) 0%, transparent 40%);
}


.comparison-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.comparison-cta p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 2;
}

.btn-white-cta {
    background: var(--accent-lime);
    color: var(--dark-green);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.btn-white-cta:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========== Comparison Section Mobile Responsive ========== */
@media (max-width: 1024px) {
    .comparison-section {
        padding: 60px 0;
    }

    .comparison-table {
        min-width: 700px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 16px 12px;
        font-size: 13px;
    }

    .comparison-table thead th {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-header h4 {
        font-size: 14px;
    }

    .brand-header .price {
        font-size: 12px;
    }

    .comparison-cta {
        padding: 40px 24px;
    }

    .comparison-cta h2 {
        font-size: 28px;
    }

    .comparison-cta p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 50px 0;
    }

    .comparison-section .section-header {
        margin-bottom: 24px;
    }

    .comparison-section .section-title {
        font-size: 24px;
    }

    .comparison-section .section-subtitle {
        font-size: 14px;
    }

    /* Table wrapper with scroll hint */
    .table-wrapper {
        border-radius: 16px;
        margin-bottom: 40px;
        position: relative;
    }

    .table-wrapper::after {
        content: '← Scroll →';
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 12px;
        color: var(--text-muted);
        background: var(--bg-white);
        padding: 4px 12px;
        border-radius: 12px;
        border: 1px solid var(--border-light);
    }

    .comparison-table {
        min-width: 600px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 12px;
    }

    .comparison-table thead th {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .comparison-table td:first-child,
    .comparison-table th:first-child {
        min-width: 120px;
        font-size: 11px;
    }

    .brand-name {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .brand-header h4 {
        font-size: 12px;
    }

    .brand-header .price {
        font-size: 11px;
    }

    .status-icon {
        width: 20px;
        height: 20px;
    }

    .table-section-header {
        font-size: 10px;
        padding: 12px 10px;
    }

    /* CTA Banner Mobile */
    .comparison-cta {
        padding: 32px 20px;
        border-radius: 16px;
        margin-top: 20px;
    }

    .comparison-cta h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .comparison-cta p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .btn-white-cta {
        padding: 14px 28px;
        font-size: 14px;
        border-radius: 12px;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .comparison-section {
        padding: 40px 0;
    }

    .comparison-table {
        min-width: 520px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 11px;
    }

    .comparison-table td:first-child,
    .comparison-table th:first-child {
        min-width: 100px;
        font-size: 10px;
    }

    .brand-name {
        font-size: 12px;
    }

    .brand-header h4 {
        font-size: 11px;
    }

    .brand-header .price {
        font-size: 10px;
    }

    .status-icon {
        width: 16px;
        height: 16px;
    }

    .text-blue,
    .text-autoscale {
        font-size: 10px;
    }

    .comparison-cta h2 {
        font-size: 20px;
    }

    .comparison-cta p {
        font-size: 13px;
    }
}

/* ========== Mobile Comparison Cards ========== */
/* Hide mobile version on desktop, show table */
.mobile-comparison {
    display: none;
}

@media (max-width: 768px) {

    /* Hide table on mobile, show cards */
    .table-wrapper {
        display: none;
    }

    .mobile-comparison {
        display: block;
    }

    /* Hero Card */
    .mobile-compare-hero {
        background: var(--dark-green);
        border-radius: 20px;
        padding: 32px 24px;
        text-align: center;
        color: #fff;
        margin-bottom: 24px;
        position: relative;
        overflow: hidden;
    }

    .mobile-compare-hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(204, 243, 129, 0.2) 0%, transparent 70%);
        pointer-events: none;
    }

    .compare-hero-badge {
        display: inline-block;
        background: var(--accent-lime);
        color: var(--dark-green);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 20px;
        margin-bottom: 16px;
    }

    .mobile-compare-hero h3 {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 8px;
        color: var(--accent-lime);
    }

    .compare-hero-price {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .compare-hero-price span {
        font-size: 18px;
        font-weight: 500;
        opacity: 0.8;
    }

    .mobile-compare-hero p {
        font-size: 14px;
        opacity: 0.8;
    }

    /* Section Cards */
    .mobile-compare-section {
        background: #fff;
        border-radius: 16px;
        padding: 24px 20px;
        margin-bottom: 16px;
        border: 1px solid var(--border-light);
    }

    .mobile-compare-section h4 {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Resource Grid */
    .mobile-compare-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .mobile-compare-item {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 12px;
        background: #F8FAFC;
        border-radius: 10px;
    }

    .item-label {
        font-size: 12px;
        color: var(--text-secondary);
    }

    .item-value {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-dark);
    }

    .item-value.highlight {
        color: var(--dark-green);
    }

    .item-value.highlight.orange {
        color: #E36642;
    }

    /* Feature Checks */
    .features-grid-mobile {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mobile-feature-check {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        background: rgba(204, 243, 129, 0.15);
        border-radius: 10px;
    }

    .mobile-feature-check svg {
        width: 20px;
        height: 20px;
        color: var(--dark-green);
        flex-shrink: 0;
    }

    .mobile-feature-check span {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-dark);
    }

    /* Price Comparison Cards */
    .price-compare-cards {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .price-card {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 16px;
        border-radius: 10px;
    }

    .price-card.our-price {
        background: var(--dark-green);
        color: #fff;
    }

    .price-card.our-price .provider-name {
        color: var(--accent-lime);
        font-weight: 700;
    }

    .price-card.our-price .provider-price {
        font-weight: 800;
        font-size: 18px;
        color: #ffffff;
    }

    .price-card.other-price {
        background: #F8FAFC;
    }

    .provider-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .provider-price {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .price-note {
        text-align: center;
        font-size: 11px;
        color: var(--text-muted);
        margin-top: 12px;
    }
}

/* Migration Section Styles */
.migration-section {
    padding: 100px 0;
    position: relative;
    background: #FCFAF8;
    /* Cream/Off-white matching Features section */
    overflow: hidden;
}

.migration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.migration-content {
    order: 1;
}

.migration-visual {
    order: 2;
    position: relative;
}

/* Typography */
.migration-section h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-green);
    line-height: 1.1;
    margin-bottom: 24px;
}

.migration-section .subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

/* Feature List */
.migration-features {
    display: grid;
    gap: 32px;
}

.migration-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.migration-icon-box {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    border: 1px solid var(--border-light);
}

.migration-icon-box svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark-green);
}

.migration-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.migration-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Image Styling */
.migration-img-container {
    position: relative;
    z-index: 2;
}

.migration-img-container img {
    width: 100%;
    height: auto;
    display: block;
    /* Mixed Media style handles the cutout look */
    filter: drop-shadow(0 20px 40px rgba(15, 28, 21, 0.1));
    /* Soft shadow for depth */
    transition: transform 0.5s ease;
}

.migration-img-container:hover img {
    transform: translateY(-10px);
}

/* Background Decoration */
.migration-visual::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(204, 243, 129, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .migration-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .migration-content {
        order: 2;
    }

    .migration-visual {
        order: 1;
    }

    .migration-section .subtitle {
        margin: 0 auto 40px;
    }

    .migration-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .migration-icon-box {
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .migration-section {
        padding: 60px 0;
    }

    /* Hide visual completely on mobile */
    .migration-visual {
        display: none;
    }

    .migration-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .migration-content {
        order: 1;
    }

    .migration-section h2 {
        font-size: 28px;
        margin-bottom: 16px;
        text-align: center;
    }

    .migration-section h2 br {
        display: none;
    }

    .migration-section .subtitle {
        font-size: 14px;
        text-align: center;
        margin: 0 auto 32px;
        max-width: 100%;
        padding: 0 10px;
    }

    /* Stacked Card Layout */
    .migration-features {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .migration-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        background: #fff;
        padding: 20px;
        border-radius: 16px;
        border: 1px solid var(--border-light);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        gap: 16px;
    }

    .migration-icon-box {
        width: 48px;
        height: 48px;
        min-width: 48px;
        margin-bottom: 0;
    }

    .migration-icon-box svg {
        width: 22px;
        height: 22px;
    }

    .migration-text {
        flex: 1;
    }

    .migration-text h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .migration-text p {
        font-size: 13px;
        line-height: 1.5;
        color: var(--text-secondary);
    }
}

@media (max-width: 480px) {
    .migration-section {
        padding: 50px 0;
    }

    .migration-section h2 {
        font-size: 24px;
    }

    .migration-section .subtitle {
        font-size: 13px;
    }

    .migration-item {
        padding: 16px;
        gap: 12px;
    }

    .migration-icon-box {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .migration-icon-box svg {
        width: 20px;
        height: 20px;
    }

    .migration-text h3 {
        font-size: 15px;
    }

    .migration-text p {
        font-size: 12px;
    }
}

/* Animated Mixed Media Styles */
.migration-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mixed-media-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
}

/* Base Person Image */
.person-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(-1);
    /* Flip to point Left towards content */
    width: 80%;
    height: auto;
    z-index: 2;
    filter: grayscale(100%) contrast(1.2) brightness(1.05);
    /* Boost white levels for clean cutout */
    mix-blend-mode: multiply;
    /* Blends white bg to transparent */
}

/* Floating Elements Container */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Individual Floating Items */
.float-item {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--accent-lime);
    box-shadow: 0 10px 30px rgba(15, 28, 21, 0.15);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatGentle 6s ease-in-out infinite;
}

.float-item p {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-green);
    margin: 0;
    white-space: nowrap;
}

.float-item svg {
    width: 20px;
    height: 20px;
    color: var(--dark-green);
}

/* Specific Items Positioning */
.item-upload {
    top: 20%;
    right: 0;
    animation-delay: 0s;
    border-color: rgba(227, 102, 66, 0.3);
    /* Soft Orange Border */
}

.item-upload p {
    color: #E36642;
    /* Orange Text */
}

.item-upload svg {
    color: #E36642;
    /* Orange Icon */
}

.item-secure {
    top: 40%;
    left: -20px;
    animation-delay: 2s;
}

.item-success {
    bottom: 20%;
    right: 10px;
    padding: 8px 16px;
    background: var(--dark-green);
    border: none;
}

.item-success p {
    color: var(--accent-lime);
}

.item-success svg {
    color: var(--accent-lime);
}

/* Abstract Shapes */
.shape-circle {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-lime);
    opacity: 0.5;
    animation: pulseScale 4s ease-in-out infinite;
    z-index: 1;
}

.shape-triangle {
    position: absolute;
    bottom: 15%;
    right: -10%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(227, 102, 66, 0.4);
    /* Orange Triangle */
    transform: rotate(15deg);
    animation: rotateSlow 10s linear infinite;
    z-index: 1;
}

.bg-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 243, 129, 0.2) 0%, transparent 70%);
    z-index: 0;
}


/* Animations */
@keyframes floatGentle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulseScale {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Enhanced FAQ Accordion Styles */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
    /* Clean white background */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-item.active {
    border-color: var(--accent-lime);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-green);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #000000;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 16px;
    color: var(--accent-lime);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Approximate max height */
}

/* Modern FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
}

/* Sticky Left Side */
.faq-header {
    position: sticky;
    top: 120px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 24px;
    line-height: 1.1;
}

.faq-header p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.faq-support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-green);
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--accent-lime);
    transition: all 0.3s ease;
}

.faq-support-link:hover {
    color: var(--accent-lime);
    border-bottom-color: var(--dark-green);
}

/* Accordion Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: rgba(204, 243, 129, 0.5);
}

.faq-item.active {
    border-color: var(--dark-green);
    box-shadow: 0 8px 24px rgba(15, 28, 21, 0.08);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-green);
    margin: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    color: var(--dark-green);
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

/* Rotate icon on active */
.faq-item.active .faq-icon svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-header {
        position: relative;
        top: 0;
        text-align: center;
        margin-bottom: 20px;
    }
}

/* ============================================================
   MODERN FAQ SECTION - Premium Design
   ============================================================ */

.faq-section-modern {
    position: relative;
    padding: 100px 0;
    background: #FFFFFF;
    overflow: hidden;
    /* GPU acceleration for the whole section to prevent repaints */
    transform: translateZ(0);
    backface-visibility: hidden;
}

.faq-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 243, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.faq-section-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(15, 28, 21, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.faq-modern-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left Content */
.faq-left-content {
    position: relative;
}

.faq-eyebrow {
    display: inline-block;
    background: var(--dark-green);
    color: var(--accent-lime);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.faq-modern-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-green);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.faq-modern-title span {
    background: linear-gradient(135deg, var(--dark-green) 0%, #2d5a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-modern-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--dark-green);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(15, 28, 21, 0.2);
}

.faq-cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.faq-cta-btn:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(15, 28, 21, 0.3);
}

.faq-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Floating Decorative Card */
.faq-decoration {
    margin-top: 60px;
    position: relative;
}

.faq-float-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    padding: 20px 28px;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 40px rgba(15, 28, 21, 0.06);
    /* Remove animation to prevent flickering */
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Animation disabled for performance - can enable on hover instead */
.faq-float-card:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 20px 60px rgba(15, 28, 21, 0.1);
    transition: all 0.3s ease;
}

.faq-float-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-lime) 0%, #a8e063 100%);
    border-radius: 14px;
    flex-shrink: 0;
}

.faq-float-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark-green);
}

.faq-float-text {
    display: flex;
    flex-direction: column;
}

.faq-float-text strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-green);
}

.faq-float-text span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Right Side - Modern Accordion */
.faq-accordion-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-modern {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    /* GPU acceleration to prevent flickering */
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: border-color, box-shadow;
}

.faq-item-modern:hover {
    border-color: var(--accent-lime);
    box-shadow: 0 10px 40px rgba(15, 28, 21, 0.06);
}

.faq-item-modern.active {
    border-color: var(--accent-lime);
    box-shadow: 0 15px 50px rgba(204, 243, 129, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #FAFFF5 100%);
}

.faq-question-modern {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-q-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-lime);
    background: var(--dark-green);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item-modern.active .faq-q-number {
    background: linear-gradient(135deg, var(--accent-lime) 0%, #a8e063 100%);
    color: var(--dark-green);
}

.faq-q-text {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-green);
    line-height: 1.4;
}

/* Animated Plus/Minus Toggle */
.faq-toggle {
    width: 28px;
    height: 28px;
    position: relative;
    flex-shrink: 0;
}

.faq-toggle span {
    position: absolute;
    background: var(--dark-green);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle span:first-child {
    top: 50%;
    left: 4px;
    right: 4px;
    height: 3px;
    transform: translateY(-50%);
}

.faq-toggle span:last-child {
    left: 50%;
    top: 4px;
    bottom: 4px;
    width: 3px;
    transform: translateX(-50%);
}

.faq-item-modern.active .faq-toggle span:first-child {
    background: var(--accent-lime);
}

.faq-item-modern.active .faq-toggle span:last-child {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

/* Answer Section */
.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-modern p {
    padding: 0 32px 28px;
    padding-left: 92px;
    /* Align with question text */
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Server Orbit Animation */
.server-orbit-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 3D perspective for the orbit */
    perspective: 1000px;
    transform-style: preserve-3d;
}

.orbit-server-img {
    position: relative;
    width: 200px;
    /* Adjust size as needed */
    height: auto;
    z-index: 2;
    /* Blend mode to hide white background */
    mix-blend-mode: multiply;
    /* Removed drop-shadow which conflicts with multiply on white bg */
    /* filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15)); */
    /* Float animation for the server itself */
    animation: serverFloat 4s ease-in-out infinite;
}

@keyframes serverFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 300px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .faq-modern-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-left-content {
        position: relative;
        top: 0;
        text-align: center;
    }

    .faq-modern-title {
        font-size: 38px;
    }

    .faq-decoration {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .faq-section-modern {
        padding: 80px 0;
    }


    .faq-question-modern {
        padding: 20px 24px;
        gap: 16px;
    }

    .faq-q-number {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .faq-q-text {
        font-size: 15px;
    }

    .faq-modern-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .faq-modern-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .faq-answer-modern p {
        padding: 0 20px 20px;
        padding-left: 68px;
        font-size: 14px;
        margin-top: 12px;
    }

    .faq-float-card {
        padding: 12px 16px;
    }
}

/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

.about-hero {
    position: relative;
    padding: 160px 0 100px;
    background: #FAFCFA;
    overflow: hidden;
}

/* Aurora Background Effect */
.about-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(204, 243, 129, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 25% 85%, rgba(255, 230, 0, 0.15) 0%, transparent 50%);
    z-index: 0;
    filter: blur(60px);
    pointer-events: none;
}

/* Grid Pattern - Same as Homepage */
.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 28, 21, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 28, 21, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    pointer-events: none;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-content {
    max-width: 600px;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 28, 21, 0.08);
    /* Subtle shadow */
    mix-blend-mode: multiply;
    /* Blend with bg */
}

.mission-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.mission-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Mission Stats Card - Premium Glassmorphism */
.mission-stats {
    background: linear-gradient(145deg, rgba(15, 28, 21, 0.95), rgba(15, 28, 21, 0.85));
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(204, 243, 129, 0.15);
    box-shadow:
        0 30px 60px rgba(15, 28, 21, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.mission-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(204, 243, 129, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-lime);
    margin-bottom: 8px;
    letter-spacing: -2px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section - Premium Design */
.values-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #FAFCFA 0%, #FFFFFF 100%);
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(204, 243, 129, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 230, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.values-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.values-section .section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.values-section .section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 20px 40px rgba(15, 28, 21, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-lime), var(--dark-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px rgba(15, 28, 21, 0.12),
        0 10px 20px rgba(204, 243, 129, 0.1);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(145deg, rgba(204, 243, 129, 0.3), rgba(204, 243, 129, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--dark-green);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(145deg, var(--accent-lime), rgba(204, 243, 129, 0.5));
}

.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {

    .about-hero-grid,
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-hero-content {
        margin: 0 auto;
    }

    .about-hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-stats {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-hero .hero-title {
        font-size: 36px;
    }

    .values-section .section-title {
        font-size: 32px;
    }
}

/* ============================================================
   ABOUT PAGE - NEW SECTIONS STYLES
   ============================================================ */

/* Hero Background Effects */
.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 243, 129, 0.4) 0%, transparent 70%);
    top: -100px;
    right: 10%;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.2) 0%, transparent 70%);
    bottom: -50px;
    left: 5%;
    animation: orbFloat 10s ease-in-out infinite 2s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

/* Hero Feature Pills */
.about-hero-features {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(15, 28, 21, 0.05);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.about-feature-pill svg {
    color: var(--dark-green);
}

/* Hero Visual (Animated Server Rings) */
.about-hero-visual {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-server-icon {
    width: 120px;
    height: 120px;
    background: var(--dark-green);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
    z-index: 3;
    box-shadow: 0 20px 50px rgba(15, 28, 21, 0.3);
    animation: serverPulse 3s ease-in-out infinite;
}

@keyframes serverPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(204, 243, 129, 0.3);
}

.visual-ring-1 {
    width: 180px;
    height: 180px;
    animation: ringExpand 3s ease-out infinite;
}

.visual-ring-2 {
    width: 240px;
    height: 240px;
    animation: ringExpand 3s ease-out infinite 1s;
}

.visual-ring-3 {
    width: 300px;
    height: 300px;
    animation: ringExpand 3s ease-out infinite 2s;
}

@keyframes ringExpand {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
        border-color: rgba(204, 243, 129, 0.5);
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
        border-color: rgba(204, 243, 129, 0);
    }
}

/* Story Timeline Section */
.story-section {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
}

.story-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 60px;
}

/* Vertical Line */
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-lime) 0%, var(--dark-green) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 60px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -60px;
    width: 44px;
    height: 44px;
    background: var(--dark-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
    box-shadow: 0 4px 20px rgba(15, 28, 21, 0.2);
    z-index: 1;
}

.timeline-marker svg {
    width: 20px;
    height: 20px;
}

.timeline-content {
    background: #FAFCFA;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(15, 28, 21, 0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(15, 28, 21, 0.08);
    border-color: var(--accent-lime);
}

.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-lime);
    color: var(--dark-green);
    font-size: 13px;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 16px;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFCFA 100%);
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.team-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    border: 1px solid rgba(15, 28, 21, 0.06);
    box-shadow: 0 4px 20px rgba(15, 28, 21, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(15, 28, 21, 0.1);
    border-color: var(--accent-lime);
}

.team-avatar {
    margin-bottom: 24px;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, var(--dark-green) 0%, #1a3a24 100%);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
}

.team-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-lime);
    background: var(--dark-green);
    padding: 6px 16px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 16px;
}

.team-info p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Join Us Card - Special Styling */
.join-us-card {
    background: linear-gradient(135deg, rgba(204, 243, 129, 0.1) 0%, rgba(204, 243, 129, 0.05) 100%);
    border: 2px dashed var(--accent-lime);
    position: relative;
    overflow: hidden;
}

.join-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 243, 129, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.join-us-card:hover::before {
    opacity: 1;
}

.join-us-card:hover {
    border-style: solid;
    border-color: var(--dark-green);
    background: rgba(204, 243, 129, 0.2);
}

.join-avatar {
    background: linear-gradient(145deg, var(--accent-lime) 0%, #a8e063 100%) !important;
    color: var(--dark-green) !important;
    animation: pulseJoin 2s ease-in-out infinite;
}

@keyframes pulseJoin {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(204, 243, 129, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(204, 243, 129, 0);
    }
}

.join-role {
    background: var(--accent-lime) !important;
    color: var(--dark-green) !important;
}

.join-team-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    background: var(--dark-green);
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.join-team-btn:hover {
    background: #000;
    transform: translateX(5px);
}

/* Join Our Team CTA Section */
.join-cta-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFCFA 100%);
}

/* CTA inside Values Section */
.values-cta {
    margin-top: 60px;
}

.join-cta-card {
    background: linear-gradient(135deg, var(--dark-green) 0%, #1a3a24 100%);
    border-radius: 24px;
    padding: 48px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.join-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 243, 129, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.join-cta-content {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.join-cta-icon {
    width: 72px;
    height: 72px;
    background: rgba(204, 243, 129, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
    flex-shrink: 0;
}

.join-cta-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.join-cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 400px;
}

.join-cta-btn {
    background: var(--accent-lime);
    color: var(--dark-green);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.join-cta-btn:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .join-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }

    .join-cta-content {
        flex-direction: column;
    }

    .join-cta-text p {
        max-width: 100%;
    }

    .join-cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: var(--dark-green);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(204, 243, 129, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(204, 243, 129, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonials-section .section-badge {
    background: rgba(204, 243, 129, 0.2);
    color: var(--accent-lime);
}

.testimonials-section .section-title {
    color: #FFFFFF;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(204, 243, 129, 0.3);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 24px;
}

.testimonial-quote svg {
    position: absolute;
    top: -8px;
    left: 0;
    color: var(--accent-lime);
}

.testimonial-quote p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding-top: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-lime);
    color: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
}

.author-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAFCFA 0%, #F0F9F0 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204, 243, 129, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    pointer-events: none;
}

.about-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.about-cta-content>p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.about-cta-buttons .cta-button.secondary {
    background: transparent;
    border: 2px solid var(--dark-green);
    color: var(--dark-green);
}

.about-cta-buttons .cta-button.secondary:hover {
    background: var(--dark-green);
    color: #FFFFFF;
}

.cta-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.cta-guarantee svg {
    color: var(--dark-green);
}

/* Section Badge (shared) */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--dark-green);
    color: var(--accent-lime);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 20px;
}

/* Mission Section Badge */
.mission-text .section-badge {
    margin-bottom: 24px;
}

/* Stat Animation */
.stat-item.animate .stat-number {
    animation: countPop 0.6s ease-out forwards;
}

@keyframes countPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================================
   ABOUT PAGE - RESPONSIVE STYLES
   ============================================================ */

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .timeline {
        padding-left: 50px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-marker {
        left: -50px;
        width: 36px;
        height: 36px;
    }

    .timeline-content {
        padding: 24px;
    }

    .timeline-content h3 {
        font-size: 20px;
    }

    .about-cta-content h2 {
        font-size: 32px;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-buttons .cta-button {
        width: 100%;
    }

    .story-section,
    .team-section,
    .testimonials-section,
    .about-cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .about-hero-visual {
        width: 240px;
        height: 240px;
    }

    .visual-server-icon {
        width: 90px;
        height: 90px;
        border-radius: 18px;
    }

    .visual-server-icon svg {
        width: 48px;
        height: 48px;
    }

    .visual-ring-1 {
        width: 140px;
        height: 140px;
    }

    .visual-ring-2 {
        width: 180px;
        height: 180px;
    }

    .visual-ring-3 {
        width: 220px;
        height: 220px;
    }

    /* About Hero Mobile */
    .about-hero {
        padding: 120px 0 60px;
    }

    .about-hero .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .about-hero .hero-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .about-hero-features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .about-feature-pill {
        font-size: 12px;
        padding: 8px 14px;
    }

    .about-feature-pill svg {
        width: 16px;
        height: 16px;
    }

    /* Timeline Mobile */
    .story-section {
        padding: 60px 0;
    }

    .timeline {
        padding-left: 40px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        margin-bottom: 32px;
    }

    .timeline-marker {
        left: -40px;
        width: 30px;
        height: 30px;
    }

    .timeline-marker svg {
        width: 14px;
        height: 14px;
    }

    .timeline-content {
        padding: 16px;
    }

    .timeline-year {
        font-size: 11px;
    }

    .timeline-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .timeline-content p {
        font-size: 13px;
    }

    /* Mission Section Mobile */
    .mission-section {
        padding: 60px 0;
    }

    .mission-text h2 {
        font-size: 24px;
    }

    .mission-text p {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Values Section Mobile */
    .values-section {
        padding: 60px 0;
    }

    .values-section .section-title {
        font-size: 24px;
    }

    .value-card {
        padding: 20px;
    }

    .value-icon {
        width: 44px;
        height: 44px;
    }

    .value-card h3 {
        font-size: 16px;
    }

    .value-card p {
        font-size: 13px;
    }

    /* Join CTA Card Mobile */
    .join-cta-card {
        padding: 24px 20px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .join-cta-content {
        flex-direction: column;
        gap: 12px;
    }

    .join-cta-icon {
        width: 50px;
        height: 50px;
    }

    .join-cta-text h3 {
        font-size: 16px;
    }

    .join-cta-text p {
        font-size: 13px;
    }

    .join-cta-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-section .section-title {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-quote p {
        font-size: 14px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .author-info strong {
        font-size: 14px;
    }

    .author-info span {
        font-size: 12px;
    }

    /* CTA Section Mobile */
    .about-cta-section {
        padding: 60px 0;
    }

    .about-cta-content {
        text-align: center;
    }

    .about-cta-content h2 {
        font-size: 24px;
    }

    .about-cta-content p {
        font-size: 14px;
    }

    .about-cta-buttons {
        align-items: center;
    }

    .cta-guarantee {
        font-size: 12px;
        justify-content: center;
    }

    .cta-guarantee svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================================
   CAREERS PAGE STYLES
   ============================================================ */

/* Careers Hero - Mobile First */
.careers-hero {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #FAFCFA 0%, #FFFFFF 100%);
    overflow: hidden;
    text-align: center;
}

/* Aurora Background Effect */
.careers-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(204, 243, 129, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 25% 85%, rgba(255, 230, 0, 0.15) 0%, transparent 50%);
    z-index: 0;
    filter: blur(60px);
    pointer-events: none;
}

/* Grid Pattern - Same as Homepage */
.careers-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 28, 21, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 28, 21, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    pointer-events: none;
}

.careers-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.careers-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.careers-hero .hero-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.careers-hero .hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.careers-hero-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-value {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--dark-green);
    margin-bottom: 4px;
}

.hero-stat .stat-text {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Join Section */
.why-join-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.why-join-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.perks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
}

.perk-card {
    background: #FAFCFA;
    border: 1px solid rgba(15, 28, 21, 0.06);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.perk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 28, 21, 0.08);
    border-color: var(--accent-lime);
}

.perk-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, rgba(204, 243, 129, 0.3), rgba(204, 243, 129, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--dark-green);
    transition: all 0.3s ease;
}

.perk-card:hover .perk-icon {
    background: var(--accent-lime);
    transform: scale(1.1) rotate(5deg);
}

.perk-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.perk-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Positions Section */
.positions-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #FAFCFA 0%, #FFFFFF 100%);
}

.positions-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.position-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 28, 21, 0.08);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.position-card:hover {
    border-color: var(--accent-lime);
    box-shadow: 0 15px 40px rgba(15, 28, 21, 0.08);
    transform: translateY(-4px);
}

.position-info {
    flex: 1;
    width: 100%;
}

.position-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.position-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.position-type {
    background: var(--accent-lime);
    color: var(--dark-green);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.position-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.meta-item svg {
    color: var(--dark-green);
}

.position-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.apply-btn {
    background: var(--dark-green);
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.apply-btn:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 28, 21, 0.2);
}

/* General Apply Section */
.general-apply-section {
    padding: 20px 0 60px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFCFA 100%);
}

.general-apply-card {
    background: linear-gradient(135deg, var(--dark-green) 0%, #1a3a24 100%);
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
    margin: 0 20px;
    text-align: center;
}

.general-apply-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 243, 129, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.general-apply-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.general-apply-icon {
    width: 64px;
    height: 64px;
    background: rgba(204, 243, 129, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
    flex-shrink: 0;
}

.general-apply-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.general-apply-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 100%;
}

.general-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent-lime);
    color: var(--dark-green);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    width: 100%;
}

.general-apply-btn:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   RESPONSIVE (TABLET & DESKTOP)
   ============================================================ */

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .careers-hero {
        padding: 140px 0 80px;
    }

    .careers-hero-content {
        padding: 0;
    }

    .careers-hero .hero-title {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .careers-hero .hero-subtitle {
        font-size: 18px;
        max-width: 600px;
    }

    .careers-hero-stats {
        flex-direction: row;
        gap: 48px;
    }

    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .positions-list {
        padding: 0;
    }

    .position-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .position-card:hover {
        transform: translateX(8px);
    }

    .position-header {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .apply-btn {
        width: auto;
    }

    .general-apply-section {
        padding: 20px 0 80px;
    }

    .general-apply-card {
        flex-direction: row;
        text-align: left;
        padding: 48px 60px;
        gap: 40px;
        margin: 0;
    }

    .general-apply-content {
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .general-apply-text h3 {
        font-size: 24px;
    }

    .general-apply-btn {
        width: auto;
    }
}

/* Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
    .careers-hero {
        padding: 180px 0 100px;
    }

    .careers-hero .hero-title {
        font-size: 56px;
        margin-bottom: 24px;
    }

    .careers-hero .hero-subtitle {
        font-size: 20px;
        margin-bottom: 48px;
    }

    .careers-hero-stats {
        gap: 60px;
    }

    .hero-stat .stat-value {
        font-size: 36px;
    }

    .hero-stat .stat-text {
        font-size: 14px;
    }

    .why-join-section {
        padding: 120px 0;
    }

    .perks-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }

    .perk-card {
        padding: 40px 32px;
    }

    .perk-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .perk-card h3 {
        font-size: 20px;
    }

    .perk-card p {
        font-size: 15px;
    }

    .positions-section {
        padding: 120px 0;
    }

    .position-header h3 {
        font-size: 22px;
    }

    .position-type {
        font-size: 12px;
        padding: 6px 14px;
    }

    .meta-item {
        font-size: 14px;
    }

    .position-desc {
        font-size: 15px;
    }
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

/* Contact Hero */
.contact-hero {
    position: relative;
    padding: 180px 0 80px;
    background: linear-gradient(180deg, #FAFCFA 0%, #FFFFFF 100%);
    overflow: hidden;
    text-align: center;
}

/* Aurora Background Effect */
.contact-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(204, 243, 129, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 25% 85%, rgba(255, 230, 0, 0.15) 0%, transparent 50%);
    z-index: 0;
    filter: blur(60px);
    pointer-events: none;
}

/* Grid Pattern */
.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 28, 21, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 28, 21, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.contact-hero .hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0 120px;
    background: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #FAFCFA;
    border: 1px solid rgba(15, 28, 21, 0.06);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--accent-lime);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(15, 28, 21, 0.06);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, rgba(204, 243, 129, 0.3), rgba(204, 243, 129, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-card-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #000;
}

.contact-highlight {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-green);
}

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: linear-gradient(135deg, var(--dark-green) 0%, #1a3a24 100%);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 243, 129, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.contact-form-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.contact-form-card>p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 15px;
    color: #FFFFFF;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-lime);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
}

.form-group select option {
    background: var(--dark-green);
    color: #FFFFFF;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: var(--accent-lime);
    color: var(--dark-green);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.contact-faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #FAFCFA 0%, #FFFFFF 100%);
}

.contact-faq .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(15, 28, 21, 0.06);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-lime);
    box-shadow: 0 10px 30px rgba(15, 28, 21, 0.06);
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 140px 0 60px;
    }

    .contact-hero .hero-title {
        font-size: 32px;
    }

    .contact-main {
        padding: 60px 0 80px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 32px 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-faq {
        padding: 60px 0;
    }
}

/* ============================================================
   POLICIES PAGE STYLES
   ============================================================ */

/* Policies Hero */
.policies-hero {
    position: relative;
    padding: 180px 0 80px;
    background: linear-gradient(180deg, #FAFCFA 0%, #FFFFFF 100%);
    overflow: hidden;
    text-align: center;
}

/* Aurora Background Effect */
.policies-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(204, 243, 129, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 25% 85%, rgba(255, 230, 0, 0.15) 0%, transparent 50%);
    z-index: 0;
    filter: blur(60px);
    pointer-events: none;
}

.policies-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 28, 21, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 28, 21, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    pointer-events: none;
}

.policies-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.policies-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.policies-hero .hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Policies Navigation */
.policies-nav-section {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(15, 28, 21, 0.08);
    position: sticky;
    top: 80px;
    z-index: 100;
    padding-top: 50px;
    margin-top: -50px;
}

.policies-nav {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    justify-content: center;
}

.policy-nav-link {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.policy-nav-link:hover {
    color: var(--dark-green);
    background: rgba(204, 243, 129, 0.2);
}

.policy-nav-link.active {
    background: var(--dark-green);
    color: #FFFFFF;
}

/* Policies Content */
.policies-content {
    padding: 60px 0 80px;
    background: #FFFFFF;
}

.policy-section {
    max-width: 800px;
    margin: 0 auto 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(15, 28, 21, 0.08);
}

.policy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-header {
    text-align: center;
    margin-bottom: 48px;
}

.policy-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(145deg, rgba(204, 243, 129, 0.3), rgba(204, 243, 129, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--dark-green);
}

.policy-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.policy-updated {
    font-size: 14px;
    color: var(--text-secondary);
}

.policy-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 32px 0 16px;
}

.policy-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.policy-body ul,
.policy-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-body li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.policy-body a {
    color: var(--dark-green);
    font-weight: 600;
    text-decoration: none;
}

.policy-body a:hover {
    text-decoration: underline;
}

.policy-body strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Policies Page Responsive */
@media (max-width: 768px) {
    .policies-hero {
        padding: 140px 0 60px;
    }

    .policies-hero .hero-title {
        font-size: 32px;
    }

    .policies-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .policy-nav-link {
        padding: 10px 18px;
        font-size: 14px;
    }

    .policies-content {
        padding: 60px 0;
    }

    .policy-section {
        margin-bottom: 60px;
        padding-bottom: 40px;
    }

    .policy-header h2 {
        font-size: 26px;
    }
}

/* ============================================================
   TERMS AND CONDITIONS PAGE STYLES
   ============================================================ */

/* Terms Hero */
.terms-hero {
    position: relative;
    padding: 180px 0 80px;
    background: linear-gradient(180deg, #FAFCFA 0%, #FFFFFF 100%);
    overflow: hidden;
    text-align: center;
}

/* Aurora Background Effect */
.terms-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(204, 243, 129, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 25% 85%, rgba(255, 230, 0, 0.15) 0%, transparent 50%);
    z-index: 0;
    filter: blur(60px);
    pointer-events: none;
}

.terms-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 28, 21, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 28, 21, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    pointer-events: none;
}

.terms-hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.terms-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.terms-hero .hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.terms-updated {
    font-size: 14px;
    color: var(--text-secondary);
    background: rgba(15, 28, 21, 0.05);
    padding: 8px 20px;
    border-radius: 100px;
    display: inline-block;
}

/* Terms Content */
.terms-content {
    padding: 80px 0 120px;
    background: #FFFFFF;
}

.terms-body {
    max-width: 800px;
    margin: 0 auto;
}

.terms-intro {
    background: linear-gradient(135deg, rgba(204, 243, 129, 0.1), rgba(204, 243, 129, 0.05));
    border: 1px solid rgba(204, 243, 129, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
}

.terms-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.terms-intro p:last-child {
    margin-bottom: 0;
}

.terms-section {
    padding: 32px 0;
    border-bottom: 1px solid rgba(15, 28, 21, 0.08);
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 4px solid var(--accent-lime);
}

.terms-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 24px 0 12px;
}

.terms-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.terms-section ul,
.terms-section ol {
    margin: 16px 0;
    padding-left: 24px;
}

.terms-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.terms-section a {
    color: var(--dark-green);
    font-weight: 600;
    text-decoration: none;
}

.terms-section a:hover {
    text-decoration: underline;
}

.terms-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Terms Page Responsive */
@media (max-width: 768px) {
    .terms-hero {
        padding: 140px 0 60px;
    }

    .terms-hero .hero-title {
        font-size: 32px;
    }

    .terms-content {
        padding: 60px 0 80px;
    }

    .terms-intro {
        padding: 24px;
    }

    .terms-section h2 {
        font-size: 20px;
    }
}

/* ============================================================
   AFFILIATE PAGE STYLES
   ============================================================ */

/* Affiliate Hero */
.affiliate-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(180deg, #FAFCFA 0%, #FFFFFF 100%);
    overflow: hidden;
    text-align: center;
}

/* Aurora Background Effect */
.affiliate-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(204, 243, 129, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 25% 85%, rgba(255, 230, 0, 0.15) 0%, transparent 50%);
    z-index: 0;
    filter: blur(60px);
    pointer-events: none;
}

.affiliate-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 28, 21, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 28, 21, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    pointer-events: none;
}

.affiliate-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.affiliate-hero .hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.affiliate-hero .hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.affiliate-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.affiliate-hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(15, 28, 21, 0.08);
}

.hero-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.stat-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Affiliate Benefits */
.affiliate-benefits {
    padding: 100px 0;
    background: #FFFFFF;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.benefit-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 28, 21, 0.08);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 28, 21, 0.1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(145deg, rgba(204, 243, 129, 0.3), rgba(204, 243, 129, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--dark-green);
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How It Works */
.affiliate-how {
    padding: 100px 0;
    background: linear-gradient(180deg, #FAFCFA 0%, #FFFFFF 100%);
}

.steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
}

.step-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 28, 21, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    max-width: 280px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--accent-lime);
    box-shadow: 0 12px 40px rgba(15, 28, 21, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--dark-green);
    color: var(--accent-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: 800;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-arrow {
    color: var(--accent-lime);
    align-self: center;
}

/* Commission Structure */
.affiliate-commission {
    padding: 100px 0;
    background: #FFFFFF;
}

.commission-card {
    background: var(--dark-green);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commission-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.commission-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.commission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commission-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.commission-list li:last-child {
    border-bottom: none;
}

.commission-list .plan-name {
    color: #FFFFFF;
    font-weight: 500;
}

.plan-commission {
    color: var(--accent-lime);
    font-weight: 700;
    font-size: 18px;
}

.commission-example {
    display: flex;
    justify-content: center;
}

.example-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(204, 243, 129, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 300px;
}

.example-label {
    background: var(--accent-lime);
    color: var(--dark-green);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.example-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 20px 0 16px;
    line-height: 1.6;
}

.example-amount {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-lime);
    margin-bottom: 8px;
}

.example-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Join CTA */
.affiliate-join {
    padding: 80px 0;
    background: linear-gradient(180deg, #FAFCFA 0%, #FFFFFF 100%);
}

.join-card {
    background: linear-gradient(135deg, rgba(204, 243, 129, 0.2), rgba(204, 243, 129, 0.05));
    border: 1px solid rgba(204, 243, 129, 0.4);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.join-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.join-content p {
    font-size: 16px;
    color: var(--text-secondary);
}

.join-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-green);
    color: var(--accent-lime);
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.join-btn:hover {
    background: #1a3d2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 28, 21, 0.2);
}

/* Affiliate FAQ */
.affiliate-faq {
    padding: 100px 0;
    background: #FFFFFF;
}

.affiliate-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
    align-items: stretch;
}

.affiliate-faq .faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(15, 28, 21, 0.08);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
}

.affiliate-faq .faq-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.affiliate-faq .faq-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Affiliate Page Responsive */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        flex-wrap: wrap;
    }

    .step-arrow {
        display: none;
    }

    .commission-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .join-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .affiliate-hero {
        padding: 140px 0 80px;
    }

    .affiliate-hero .hero-title {
        font-size: 36px;
    }

    .affiliate-hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .affiliate-faq .faq-grid {
        grid-template-columns: 1fr;
    }

    .commission-card {
        padding: 40px 24px;
    }

    .join-card {
        padding: 40px 24px;
    }
}

/* Affiliate Page Mobile - 480px */
@media (max-width: 480px) {

    /* Hero Section */
    .affiliate-hero {
        padding: 120px 0 60px;
    }

    .affiliate-hero-content {
        text-align: center;
    }

    .affiliate-hero .hero-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .affiliate-hero .hero-subtitle {
        font-size: 14px;
    }

    .affiliate-hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .affiliate-hero-cta .cta-button {
        width: 100%;
    }

    .affiliate-hero-stats {
        gap: 16px;
        align-items: center;
    }

    .hero-stat {
        padding: 16px 20px;
        text-align: center;
    }

    .hero-stat .stat-value {
        font-size: 28px;
    }

    .hero-stat .stat-text {
        font-size: 12px;
    }

    /* Step Cards Centering */
    .step-card {
        text-align: center;
    }

    /* Benefits Section */
    .affiliate-benefits {
        padding: 60px 0;
    }

    .affiliate-benefits .section-title {
        font-size: 24px;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    .benefit-card h3 {
        font-size: 16px;
    }

    .benefit-card p {
        font-size: 13px;
    }

    /* How It Works Section */
    .affiliate-how {
        padding: 60px 0;
    }

    .affiliate-how .section-title {
        font-size: 24px;
    }

    .steps-grid {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .step-arrow {
        display: none;
    }

    .step-card {
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin: 0 auto 16px;
    }

    .step-card h3 {
        font-size: 16px;
    }

    .step-card p {
        font-size: 13px;
    }

    /* Commission Section */
    .affiliate-commission {
        padding: 60px 0;
    }

    .commission-card {
        flex-direction: column;
        padding: 24px 20px;
        gap: 24px;
    }

    .commission-content h2 {
        font-size: 22px;
        text-align: center;
    }

    .commission-content p {
        font-size: 14px;
        text-align: center;
    }

    .commission-list li {
        padding: 12px 0;
    }

    .plan-name,
    .plan-commission {
        font-size: 14px;
    }

    .example-box {
        padding: 20px;
    }

    .example-label {
        font-size: 11px;
    }

    .example-amount {
        font-size: 36px;
    }

    .example-note {
        font-size: 12px;
    }

    /* Join CTA Section */
    .affiliate-join {
        padding: 60px 0;
    }

    .join-card {
        padding: 24px 20px;
    }

    .join-content h2 {
        font-size: 22px;
    }

    .join-content p {
        font-size: 14px;
    }

    .join-btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 14px;
        justify-content: center;
    }

    /* FAQ Section */
    .affiliate-faq {
        padding: 60px 0;
    }

    .affiliate-faq .section-title {
        font-size: 24px;
    }

    .affiliate-faq .faq-item {
        padding: 20px;
    }

    .affiliate-faq .faq-item h3 {
        font-size: 15px;
    }

    .affiliate-faq .faq-item p {
        font-size: 13px;
    }
}

/* ==============================================
   TUTORIALS PAGE STYLES
   ============================================== */

/* Tutorials Hero */
.tutorials-hero {
    padding: 180px 0 80px;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Aurora Background Effect for Tutorials Hero */
.tutorials-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(204, 243, 129, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 25% 85%, rgba(255, 230, 0, 0.15) 0%, transparent 50%);
    z-index: 0;
    filter: blur(60px);
    pointer-events: none;
}

/* Technical Grid Pattern for Tutorials Hero */
.tutorials-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 28, 21, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 28, 21, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    pointer-events: none;
}

.tutorials-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--dark-green);
}

.breadcrumb .separator {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 500;
}

.tutorials-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.tutorials-hero .highlight {
    background: linear-gradient(135deg, var(--dark-green) 0%, #2d4a3e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.tutorials-hero .hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Tutorials Section */
.tutorials-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAF8 100%);
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Tutorial Card */
.tutorial-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(15, 28, 21, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.tutorial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 28, 21, 0.12);
    border-color: rgba(204, 243, 129, 0.4);
}

.tutorial-thumbnail {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, var(--dark-green) 0%, #1a3d2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tutorial-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.5s ease;
}

.tutorial-card:hover .tutorial-thumb-img {
    transform: scale(1.1);
    opacity: 1;
    filter: grayscale(0%);
}

.tutorial-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(204, 243, 129, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(204, 243, 129, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.thumbnail-bg {
    position: absolute;
    color: rgba(255, 255, 255, 0.08);
    transform: scale(1.5);
    transition: transform 0.4s ease;
}

.tutorial-card:hover .thumbnail-bg {
    transform: scale(1.6) rotate(5deg);
}

.play-button {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button svg {
    margin-left: 4px;
    /* Visual centering for play icon */
}

.tutorial-card:hover .play-button {
    transform: scale(1.1);
    background: var(--accent-lime);
    box-shadow: 0 12px 40px rgba(204, 243, 129, 0.4);
}

.tutorial-content {
    padding: 28px;
}

.tutorial-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.tutorial-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tutorial-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-green);
    text-decoration: none;
    transition: all 0.2s ease;
}

.tutorial-link svg {
    transition: transform 0.2s ease;
}

.tutorial-link:hover {
    color: var(--accent-lime-hover);
}

.tutorial-link:hover svg {
    transform: translateX(4px);
}

/* Tutorials CTA Section */
.tutorials-cta-section {
    padding: 100px 0;
    background: var(--dark-green);
    position: relative;
    overflow: hidden;
}

.tutorials-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(204, 243, 129, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(204, 243, 129, 0.08) 0%, transparent 35%);
    pointer-events: none;
}

.tutorials-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.tutorials-cta-content .cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(204, 243, 129, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: var(--accent-lime);
}

.tutorials-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.tutorials-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    line-height: 1.6;
}

.tutorials-cta-content .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.tutorials-cta-content .cta-button.primary {
    background: var(--accent-lime);
    color: var(--dark-green);
}

.tutorials-cta-content .cta-button.primary:hover {
    background: #FFFFFF;
    transform: translateY(-4px);
}

.tutorials-cta-content .cta-button.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.tutorials-cta-content .cta-button.secondary:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

/* Tutorials Page Responsive */
@media (max-width: 992px) {
    .tutorials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tutorials-hero .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .tutorials-hero {
        padding: 140px 0 60px;
    }

    .tutorials-hero .hero-title {
        font-size: 32px;
    }

    .tutorials-hero .hero-subtitle {
        font-size: 16px;
    }

    .tutorials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tutorial-thumbnail {
        height: 160px;
    }

    .tutorials-cta-content h2 {
        font-size: 28px;
    }

    .tutorials-cta-content .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tutorials-cta-content .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Video Modal Lightbox */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 1;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1) translateY(0);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-modal-close {
        top: -44px;
        right: 0;
        width: 36px;
        height: 36px;
    }

    .video-modal-wrapper {
        border-radius: 12px;
    }
}

/* ========== UNIFIED MOBILE TYPOGRAPHY SYSTEM ========== */
/* This ensures consistent typography across all sections on mobile */

@media (max-width: 768px) {

    /* Section Titles - Unified at 24px */
    .section-title,
    .features-title,
    .pricing .section-title,
    .comparison-section .section-title,
    .migration-section h2,
    .faq-section .section-title,
    .cta-section h2,
    .testimonials-section .section-title,
    .values-section .section-title {
        font-size: 24px !important;
        line-height: 1.2 !important;
        letter-spacing: -0.5px !important;
    }

    /* Section Subtitles - Unified at 14px */
    .section-subtitle,
    .features-subtitle,
    .comparison-section .section-subtitle,
    .migration-section .subtitle,
    .faq-section .section-subtitle,
    .testimonials-section .section-subtitle,
    .values-section .section-subtitle {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    /* Card Titles - Unified at 16px */
    .feature-card h3,
    .pricing-card .plan-name,
    .migration-text h3,
    .benefit-card h3,
    .value-card h3,
    .faq-question {
        font-size: 16px !important;
        line-height: 1.3 !important;
    }

    /* Card Descriptions - Unified at 13px */
    .feature-card p,
    .pricing-card .plan-tagline,
    .migration-text p,
    .benefit-card p,
    .value-card p,
    .faq-answer {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    /* Pricing - Special handling */
    .pricing-card .price {
        font-size: 40px !important;
    }

    .pricing-card .currency {
        font-size: 18px !important;
    }

    .pricing-card .period {
        font-size: 13px !important;
    }

    /* CTA Buttons - Unified */
    .cta-button,
    .plan-button,
    .btn-white-cta {
        font-size: 14px !important;
        padding: 14px 24px !important;
    }

    /* Body Text - Unified at 14px */
    .hero-subtitle,
    .features-subtitle,
    .cta-section p {
        font-size: 14px !important;
    }

    /* Small Text - Unified at 12px */
    .cta-note,
    .price-note,
    .renews-text,
    .features-list li {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {

    /* Section Titles - Smaller for tiny screens */
    .section-title,
    .features-title,
    .pricing .section-title,
    .comparison-section .section-title,
    .migration-section h2,
    .faq-section .section-title,
    .cta-section h2,
    .testimonials-section .section-title,
    .values-section .section-title {
        font-size: 22px !important;
    }

    /* Card Titles */
    .feature-card h3,
    .pricing-card .plan-name,
    .migration-text h3 {
        font-size: 15px !important;
    }

    /* Pricing */
    .pricing-card .price {
        font-size: 36px !important;
    }

    .pricing-card .currency {
        font-size: 16px !important;
    }
}

/* ========== Mobile Pricing Cards ========== */
/* Hidden on desktop */
.mobile-pricing {
    display: none;
}

@media (max-width: 768px) {

    /* Hide desktop pricing grid */
    .pricing-grid {
        display: none !important;
    }

    /* Show mobile pricing */
    .mobile-pricing {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mobile-price-card {
        background: #fff;
        border-radius: 16px;
        padding: 20px;
        border: 1px solid var(--border-light);
        position: relative;
    }

    .mobile-price-card.popular {
        background: var(--dark-green);
        border: 2px solid var(--dark-green);
        box-shadow: 0 8px 24px rgba(15, 28, 21, 0.2);
    }

    .mobile-price-card.popular .mpc-name,
    .mobile-price-card.popular .mpc-tagline {
        color: #fff;
    }

    .mobile-price-card.popular .mpc-amount {
        color: var(--accent-lime);
    }

    .mobile-price-card.popular .mpc-period {
        color: rgba(255, 255, 255, 0.7);
    }

    .mobile-price-card.popular .mpc-features span {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
    }

    .mobile-price-card.popular .mpc-expand-btn {
        color: var(--accent-lime);
    }

    .mobile-price-card.popular .mpc-full-features {
        border-top-color: rgba(255, 255, 255, 0.2);
    }

    .mobile-price-card.popular .mpc-full-features li {
        color: #fff;
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .mpc-badge {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: #E36642;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
        letter-spacing: 0.5px;
    }


    .mpc-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .mpc-plan {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mpc-icon {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mpc-icon svg {
        width: 32px;
        height: 32px;
    }

    /* Mobile Icons - Always Animate */
    .mpc-icon .thunder-bolt {
        stroke: #E36642;
        fill: #E36642;
        animation: strikeThunder 0.4s infinite;
    }

    .mpc-icon .thunder-glow {
        animation: pulseGlow 0.4s infinite reverse;
    }

    .mpc-icon .ignite-flame-main {
        fill: none;
        stroke: #E36642;
        stroke-width: 2;
        animation: rageFire 0.4s infinite linear;
    }

    .mpc-icon .ignite-flame-inner {
        fill: #E36642;
        animation: rageFire 0.4s infinite linear reverse, corePulse 0.2s infinite alternate;
    }

    .mpc-icon .rocket-body {
        fill: var(--dark-green);
        stroke: none;
        animation: rocketShake 0.5s infinite;
    }

    .mpc-icon .rocket-flame {
        fill: #E36642;
        animation: flameThrust 0.2s infinite alternate;
    }

    .mpc-icon .rocket-window {
        fill: var(--accent-lime);
    }

    .mpc-icon .rocket-smoke {
        fill: rgba(200, 200, 200, 0.5);
    }

    /* Blaze icon on dark card - make it light */
    .mobile-price-card.popular .mpc-icon .rocket-body {
        fill: var(--accent-lime);
    }

    .mobile-price-card.popular .mpc-icon .rocket-window {
        fill: var(--dark-green);
    }

    .mobile-price-card.popular .mpc-icon .rocket-smoke {
        fill: rgba(255, 255, 255, 0.4);
    }


    .mpc-name {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-dark);
    }

    .mpc-price {
        display: flex;
        align-items: baseline;
    }

    .mpc-amount {
        font-size: 28px;
        font-weight: 800;
        color: var(--dark-green);
    }

    .mpc-period {
        font-size: 14px;
        color: var(--text-secondary);
        font-weight: 500;
    }

    .mpc-tagline {
        font-size: 13px;
        color: var(--text-secondary);
        margin-bottom: 12px;
    }

    .mpc-features {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px;
    }

    .mpc-features span {
        background: #F5F7F6;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
        color: var(--text-dark);
    }

    .mpc-btn {
        display: block;
        width: 100%;
        background: var(--dark-green);
        color: #fff;
        text-align: center;
        padding: 14px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
    }

    .mpc-btn:hover {
        background: #000;
    }

    .mobile-price-card.popular .mpc-btn {
        background: var(--accent-lime);
        color: var(--dark-green);
    }

    .mobile-pricing-note {
        text-align: center;
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 8px;
    }

    /* Expandable Features */
    .mpc-expand-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
        background: none;
        border: none;
        padding: 8px;
        margin-bottom: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: var(--dark-green);
        cursor: pointer;
    }

    .mpc-expand-btn svg {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
    }

    .mpc-expand-btn .collapse-text {
        display: none;
    }

    .mobile-price-card.expanded .mpc-expand-btn svg {
        transform: rotate(180deg);
    }

    .mobile-price-card.expanded .mpc-expand-btn .expand-text {
        display: none;
    }

    .mobile-price-card.expanded .mpc-expand-btn .collapse-text {
        display: inline;
    }

    .mpc-full-features {
        display: none;
        padding: 12px 0;
        margin-bottom: 12px;
        border-top: 1px solid var(--border-light);
    }

    .mobile-price-card.expanded .mpc-full-features {
        display: block;
    }

    .mpc-full-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mpc-full-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        font-size: 13px;
        color: var(--text-dark);
        border-bottom: 1px solid #f0f0f0;
    }

    .mpc-full-features li::before {
        content: '';
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        background: var(--dark-green);
        border-radius: 50%;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%23CCF381' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
        background-size: 12px;
        background-repeat: no-repeat;
        background-position: center;
    }

    .mpc-full-features li:last-child {
        border-bottom: none;
    }

    /* Popular card feature list - hide text checkmark */
    .mobile-price-card.popular .mpc-full-features li::before {
        background: var(--accent-lime);
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%230F1C15' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
        background-size: 12px;
        background-repeat: no-repeat;
        background-position: center;
    }
}

@media (max-width: 480px) {
    .mobile-price-card {
        padding: 16px;
    }

    .mpc-name {
        font-size: 16px;
    }

    .mpc-amount {
        font-size: 24px;
    }

    .mpc-features span {
        font-size: 11px;
        padding: 5px 10px;
    }

    .mpc-btn {
        padding: 12px;
        font-size: 13px;
    }
}

/* ========== Events Page Styles ========== */

/* ========== Events Page Styles (Mobile First) ========== */

/* Events Hero Section - Mobile Base */
.events-hero {
    padding: 110px 0 40px;
    background-color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Aurora Background Effect */
.events-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(204, 243, 129, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 25% 85%, rgba(255, 230, 0, 0.15) 0%, transparent 50%);
    z-index: 0;
    filter: blur(60px);
    pointer-events: none;
}

/* Technical Grid Pattern */
.events-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 28, 21, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 28, 21, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    pointer-events: none;
}

.events-hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.events-hero h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.events-hero-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Events Sections - Mobile Base */
.events-section {
    padding: 40px 0;
    background: var(--bg-white);
}

.events-section .section-header {
    text-align: center;
    margin-bottom: 32px;
    padding: 0 16px;
}

.events-section .section-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.events-section .section-header p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.upcoming-badge {
    background: var(--dark-green) !important;
    color: var(--accent-lime) !important;
}

/* Events Timeline - Mobile Base */
.events-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Event Card - Mobile Base */
.event-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: rgba(204, 243, 129, 0.5);
    box-shadow: 0 8px 24px rgba(15, 28, 21, 0.06);
}

.event-card.international {
    border-color: var(--accent-lime);
    background: linear-gradient(135deg, rgba(204, 243, 129, 0.05) 0%, #ffffff 100%);
}

/* Event Date Block - Mobile Base */
.event-date,
.event-date-block {
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: var(--bg-body-start);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.event-month {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-day {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.event-year {
    font-size: 11px;
    color: var(--text-muted);
}

/* Event Content - Mobile Base */
.event-content {
    flex: 1;
}

.event-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    background: var(--dark-green);
    color: var(--accent-lime);
    border-radius: 20px;
    margin-bottom: 8px;
}

.event-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.event-venue {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.event-venue svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.event-description {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 8px;
}

/* Event Status - Mobile Base */
.event-status {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.event-status.completed {
    background: rgba(204, 243, 129, 0.2);
    color: #3d6b2f;
}

.event-status.upcoming-status {
    background: rgba(15, 28, 21, 0.08);
    color: var(--text-dark);
}

/* Upcoming Events Grid - Mobile Base */
.upcoming-events {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-body-start) 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
}

.event-card.upcoming {
    flex-direction: column;
    text-align: left;
}

.event-card.upcoming .event-date-block {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    margin-bottom: 4px;
}

.event-card.upcoming .event-day {
    font-size: 20px;
}

.event-card.featured {
    border-color: var(--accent-lime);
    background: linear-gradient(135deg, rgba(204, 243, 129, 0.08) 0%, #ffffff 100%);
}

.event-card.upcoming .event-status {
    margin-bottom: 6px;
}

/* Events CTA Section - Mobile Base */
.events-cta-section {
    padding: 48px 0;
    background: var(--dark-green);
    text-align: center;
}

.events-cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
}

.events-cta-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 10px;
}

.events-cta-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.events-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.events-cta-buttons .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.events-cta-buttons .cta-button.primary {
    background: var(--accent-lime);
    color: var(--text-dark);
}

.events-cta-buttons .cta-button.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
}

.events-cta-buttons .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========== Events Page - Tablet (768px+) ========== */
@media (min-width: 768px) {
    .events-hero {
        padding: 140px 0 60px;
    }

    .events-hero-content {
        padding: 0 20px;
    }

    .events-hero h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .events-hero-subtitle {
        font-size: 16px;
    }

    .events-section {
        padding: 60px 0;
    }

    .events-section .section-header {
        margin-bottom: 40px;
        padding: 0;
    }

    .events-section .section-header h2 {
        font-size: 26px;
    }

    .events-section .section-header p {
        font-size: 15px;
    }

    .events-timeline {
        gap: 16px;
        padding: 0;
    }

    .event-card {
        flex-direction: row;
        gap: 20px;
        padding: 20px;
        border-radius: 14px;
    }

    .event-date,
    .event-date-block {
        width: 65px;
        flex-direction: column;
        gap: 0;
        padding: 12px 8px;
    }

    .event-day {
        font-size: 20px;
    }

    .event-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .event-venue {
        font-size: 13px;
    }

    .event-description {
        font-size: 13px;
    }

    .event-status {
        font-size: 11px;
        padding: 4px 12px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0;
    }

    .event-card.upcoming .event-date-block {
        padding: 14px;
    }

    .event-card.upcoming .event-day {
        font-size: 22px;
    }

    .events-cta-section {
        padding: 60px 0;
    }

    .events-cta-content {
        padding: 0 20px;
    }

    .events-cta-content h2 {
        font-size: 26px;
    }

    .events-cta-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .events-cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .events-cta-buttons .cta-button {
        width: auto;
    }
}

/* ========== Events Page - Desktop (992px+) ========== */
@media (min-width: 992px) {
    .events-hero {
        padding: 180px 0 80px;
    }

    .events-hero h1 {
        font-size: 36px;
    }

    .events-section {
        padding: 80px 0;
    }

    .events-section .section-header {
        margin-bottom: 48px;
    }

    .events-section .section-header h2 {
        font-size: 28px;
    }

    .event-card {
        padding: 24px;
        border-radius: 16px;
    }

    .event-card:hover {
        transform: translateY(-2px);
    }

    .event-date,
    .event-date-block {
        width: 70px;
        border-radius: 12px;
    }

    .event-content h3 {
        font-size: 17px;
    }

    .events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .event-card.upcoming .event-date-block {
        padding: 16px;
        margin-bottom: 8px;
    }

    .event-card.upcoming .event-day {
        font-size: 24px;
    }

    .events-cta-section {
        padding: 80px 0;
    }

    .events-cta-content h2 {
        font-size: 28px;
    }
}