    /* ========== CSS Reset & Base ========== */
    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        /* Core Colors 
        --primary: #3D5493;
        --primary-dark: #2D3D6B;
        --primary-light: #4A6BB5;
        --accent: #E68D3A;
        --accent-dark: #D4781F;
        --background: #F8F9FB;
        --foreground: #1E2A4A;
        --card: #FFFFFF;
        --muted: #6B7B9E;
        --border: #E2E8F0;
        --success: #22C55E;
        --kubernetes-blue: #326CE5; */

        /* Core Colors – Dark Indigo System */
        --primary: #171741;
        /* Main brand / footer */
        --primary-dark: #0F112E;
        /* Deeper indigo */
        --primary-light: #1F245A;
        /* Lifted indigo (still dark) */

        --accent: #E68D3A;
        /* Keep your brand orange */
        --accent-dark: #D4781F;

        --background: #F8F9FB;
        /* Light pages */
        --foreground: #1E223F;
        /* Text on light bg */

        --card: #FFFFFF;
        --muted: #7A82B8;
        /* Muted indigo-gray */
        --border: #E2E8F0;

        --success: #22C55E;

        /* Kubernetes brand (unchanged) */
        --kubernetes-blue: #326CE5;

        /* Gradients */
        /* --gradient-hero: linear-gradient(135deg, #3D5493 0%, #4A7AB8 50%, #2D3D6B 100%); */
        --gradient-hero: linear-gradient(135deg, #171741 0%, #1F245A 45%, #121334 100%);
        --gradient-accent: linear-gradient(135deg, #E68D3A 0%, #F5A623 100%);

        /* Shadows */
        --shadow-sm: 0 1px 2px rgba(45, 61, 107, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(45, 61, 107, 0.1);
        --shadow-lg: 0 10px 15px -3px rgba(45, 61, 107, 0.1);
        --shadow-xl: 0 20px 25px -5px rgba(45, 61, 107, 0.1);
        --shadow-glow: 0 0 40px rgba(230, 141, 58, 0.3);

        /* Typography */
        --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
        --font-mono: 'JetBrains Mono', monospace;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-sans);
        background-color: var(--background);
        color: var(--foreground);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

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

    a {
        text-decoration: none;
        color: inherit;
    }

    /* ========== Buttons ========== */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 2rem;
        font-size: 1.125rem;
        font-weight: 600;
        border-radius: 0.5rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background: var(--accent);
        color: white;
        box-shadow: var(--shadow-glow);
    }

    .btn-primary:hover {
        background: var(--accent-dark);
        transform: scale(1.02);
    }

    .btn-outline {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(10px);
    }

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .btn-lg {
        padding: 1.125rem 2.5rem;
        font-size: 1.25rem;
    }

    .btn-full {
        width: 100%;
    }

    /* ========== Text Styles ========== */
    .text-gradient {
        background: var(--gradient-accent);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .text-gradient-blue {
        background: linear-gradient(135deg, var(--kubernetes-blue) 0%, var(--primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* ========== Animations ========== */
    @keyframes float {

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

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

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.5;
        }
    }

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

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

    .animate-float {
        animation: float 6s ease-in-out infinite;
    }

    .animate-pulse {
        animation: pulse 2s ease-in-out infinite;
    }

    .animate-fade-in {
        animation: fadeIn 0.6s ease-out forwards;
    }

    /* ========== Header ========== */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(61, 84, 147, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

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

    .logo-icon {
        width: 40px;
        height: 40px;
        background: var(--accent);
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 1.25rem;
    }

    .logo-text {
        color: white;
        font-weight: 700;
        font-size: 1.25rem;
    }

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

    .nav a {
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
        transition: color 0.2s;
    }

    .nav a:hover {
        color: white;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* ========== Hero Section ========== */
    .hero {
        position: relative;
        min-height: 90vh;
        background: var(--gradient-hero);
        overflow: hidden;
        padding-top: 80px;
    }

    .hero-bg-mesh {
        position: absolute;
        inset: 0;
        background:
            radial-gradient(at 40% 20%, rgba(50, 108, 229, 0.15) 0px, transparent 50%),
            radial-gradient(at 80% 0%, rgba(230, 141, 58, 0.1) 0px, transparent 50%),
            radial-gradient(at 0% 50%, rgba(61, 84, 147, 0.1) 0px, transparent 50%);
        opacity: 0.5;
    }

    .hero-glow-1 {
        position: absolute;
        top: 80px;
        right: 40px;
        width: 384px;
        height: 384px;
        background: rgba(230, 141, 58, 0.1);
        border-radius: 50%;
        filter: blur(60px);
        animation: pulse 4s ease-in-out infinite;
    }

    .hero-glow-2 {
        position: absolute;
        bottom: 80px;
        left: 40px;
        width: 288px;
        height: 288px;
        background: rgba(50, 108, 229, 0.1);
        border-radius: 50%;
        filter: blur(60px);
        animation: pulse 4s ease-in-out infinite;
    }

    .hero-graphic {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.1;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: calc(90vh - 80px);
        padding: 5rem 0;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1.25rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 9999px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .hero-badge-dot {
        width: 8px;
        height: 8px;
        background: var(--accent);
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }

    .hero h1 {
        font-size: clamp(3rem, 6vw, 5rem);
        font-weight: 800;
        color: white;
        line-height: 1.1;
        margin-bottom: 2rem;
        max-width: 800px;
    }

    .hero-description {
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 700px;
        margin-bottom: 3rem;
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 4rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .stat-icon {
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 0.75rem;
    }

    .stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .stat-value {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .stat-label {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .hero-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .hero-wave svg {
        display: block;
        width: 100%;
    }

    /* ========== Trusted By Section ========== */
    .trusted-by {
        padding: 4rem 0;
        background: rgba(61, 84, 147, 0.03);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .trusted-by-title {
        text-align: center;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 2rem;
    }

    .trusted-by-logos {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 2rem 4rem;
    }

    .tech-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--muted);
        font-weight: 600;
        transition: color 0.2s;
    }

    .tech-item:hover {
        color: var(--foreground);
    }

    .tech-item span:first-child {
        font-size: 1.5rem;
    }

    /* ========== What is Kubeadm Section ========== */
    .what-is-kubeadm {
        padding: 6rem 0;
        background: var(--background);
    }

    .what-is-kubeadm .content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.375rem 1rem;
        background: rgba(50, 108, 229, 0.1);
        color: var(--kubernetes-blue);
        font-size: 1rem;
        font-weight: 600;
        border-radius: 9999px;
        margin-bottom: 1.5rem;
    }

    .section-badge svg {
        width: 16px;
        height: 16px;
    }

    h2 {
        font-size: clamp(3.25rem, 4vw, 3.5rem);
        font-weight: 700;
        color: var(--foreground);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 1.45rem;
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }

    .features-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--foreground);
    }

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

    .feature-item span {
        font-size: 1.25rem;
        font-weight: 500;
    }

    /* Terminal Block */
    .terminal-wrapper {
        position: relative;
    }

    .terminal-glow {
        position: absolute;
        inset: -16px;
        background: linear-gradient(to right, rgba(50, 108, 229, 0.2), rgba(230, 141, 58, 0.2));
        border-radius: 1rem;
        filter: blur(20px);
        opacity: 0.5;
    }

    .terminal {
        position: relative;
        background: var(--primary-dark);
        border-radius: 1rem;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        overflow: hidden;
    }

    .terminal-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .terminal-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .terminal-dot.red {
        background: #EF4444;
    }

    .terminal-dot.yellow {
        background: #F59E0B;
    }

    .terminal-dot.green {
        background: #22C55E;
    }

    .terminal-title {
        margin-left: 1rem;
        color: rgba(255, 255, 255, 0.5);
        font-size: 1.25rem;
        font-family: var(--font-mono);
    }

    .terminal-content {
        font-family: var(--font-mono);
        font-size: 1.125rem;
        line-height: 1.8;
    }

    .terminal-line {
        display: flex;
        gap: 0.5rem;
    }

    .terminal-prompt {
        color: #22C55E;
    }

    .terminal-command {
        color: white;
    }

    .terminal-arg {
        color: var(--accent);
    }

    .terminal-output {
        color: rgba(255, 255, 255, 0.6);
        padding-left: 1rem;
    }

    .terminal-success {
        color: #22C55E;
        padding-left: 1rem;
    }

    .terminal-table {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        color: rgba(255, 255, 255, 0.8);
        padding-left: 1rem;
        margin-top: 0.5rem;
    }

    .terminal-table-value {
        color: var(--kubernetes-blue);
    }

    /* ========== Benefits Section ========== */
    .benefits {
        padding: 6rem 0;
        background:
            radial-gradient(at 40% 20%, rgba(50, 108, 229, 0.05) 0px, transparent 50%),
            radial-gradient(at 80% 0%, rgba(230, 141, 58, 0.05) 0px, transparent 50%),
            var(--background);
    }

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

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

    .benefit-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 1rem;
        padding: 2rem;
        box-shadow: var(--shadow-sm);
        transition: all 0.3s ease;
    }

    .benefit-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

    .benefit-icon {
        display: inline-flex;
        padding: 0.75rem;
        border-radius: 0.75rem;
        margin-bottom: 1rem;
        transition: transform 0.3s ease;
    }

    .benefit-card:hover .benefit-icon {
        transform: scale(1.1);
    }

    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    .benefit-icon.blue {
        background: rgba(59, 130, 246, 0.1);
        color: #3B82F6;
    }

    .benefit-icon.orange {
        background: rgba(230, 141, 58, 0.1);
        color: var(--accent);
    }

    .benefit-icon.purple {
        background: rgba(139, 92, 246, 0.1);
        color: #8B5CF6;
    }

    .benefit-icon.green {
        background: rgba(34, 197, 94, 0.1);
        color: #22C55E;
    }

    .benefit-icon.pink {
        background: rgba(236, 72, 153, 0.1);
        color: #EC4899;
    }

    .benefit-icon.indigo {
        background: rgba(99, 102, 241, 0.1);
        color: #6366F1;
    }

    .benefit-icon.red {
        background: rgba(239, 68, 68, 0.1);
        color: #EF4444;
    }

    .benefit-icon.teal {
        background: rgba(20, 184, 166, 0.1);
        color: #14B8A6;
    }

    .benefit-card h3 {
        font-size: 1.45rem;
        font-weight: 600;
        color: var(--foreground);
        margin-bottom: 0.75rem;
    }

    .benefit-card p {
        font-size: 1.25rem;
        color: var(--muted);
        line-height: 1.6;
    }

    /* ========== Support Tiers Section ========== */
    .support-tiers {
        padding: 6rem 0;
        background: rgba(61, 84, 147, 0.03);
    }

    .section-badge.orange {
        background: rgba(230, 141, 58, 0.1);
        color: var(--accent);
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .pricing-card {
        position: relative;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 1rem;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: transform 0.3s ease;
    }

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

    .pricing-card.featured {
        background: var(--primary);
        color: white;
        border: none;
        box-shadow: var(--shadow-xl), 0 0 40px rgba(61, 84, 147, 0.2);
    }

    .pricing-badge {
        position: absolute;
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        padding: 0.5rem 1rem;
        background: var(--accent);
        color: white;
        font-size: 1.125rem;
        font-weight: 600;
        border-radius: 9999px;
    }

    .pricing-badge svg {
        width: 16px;
        height: 16px;
    }

    .pricing-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .pricing-icon {
        padding: 0.75rem;
        border-radius: 0.75rem;
    }

    .pricing-card:not(.featured) .pricing-icon {
        background: rgba(61, 84, 147, 0.1);
        color: var(--primary);
    }

    .pricing-card.featured .pricing-icon {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .pricing-icon svg {
        width: 24px;
        height: 24px;
    }

    .pricing-name {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .pricing-tagline {
        font-size: 1.25rem;
        opacity: 0.8;
    }

    .pricing-price {
        margin-bottom: 2rem;
    }

    .pricing-price-value {
        font-size: 3rem;
        font-weight: 700;
    }

    .pricing-price-note {
        font-size: 1.25rem;
        opacity: 0.7;
    }

    .pricing-features {
        list-style: none;
        margin-bottom: 2rem;
    }

    .pricing-features li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1rem;
        font-size: 1.35rem;
    }

    .pricing-features li svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .pricing-card:not(.featured) .pricing-features li svg {
        color: var(--success);
    }

    .pricing-card.featured .pricing-features li svg {
        color: var(--accent);
    }

    .pricing-card:not(.featured) .btn {
        background: var(--primary);
        color: white;
    }

    .pricing-card:not(.featured) .btn:hover {
        background: var(--primary-dark);
    }

    .pricing-note {
        text-align: center;
        color: var(--muted);
        margin-top: 3rem;
    }

    .pricing-note a {
        color: var(--accent);
        font-weight: 600;
    }

    .pricing-note a:hover {
        text-decoration: underline;
    }

    /* ========== Use Cases Section ========== */
    .use-cases {
        padding: 6rem 0;
        background: var(--primary);
        color: white;
        overflow: hidden;
        position: relative;
    }

    .use-cases-glow-1 {
        position: absolute;
        top: 0;
        right: 0;
        width: 384px;
        height: 384px;
        background: rgba(230, 141, 58, 0.1);
        border-radius: 50%;
        filter: blur(60px);
    }

    .use-cases-glow-2 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 288px;
        height: 288px;
        background: rgba(50, 108, 229, 0.1);
        border-radius: 50%;
        filter: blur(60px);
    }

    .use-cases .section-header {
        position: relative;
        z-index: 10;
    }

    .use-cases h2 {
        color: white;
    }

    .use-cases .section-description {
        color: rgba(255, 255, 255, 0.7);
    }

    .use-cases-grid {
        position: relative;
        z-index: 10;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .use-case-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0.75rem;
        padding: 1.5rem;
        transition: background 0.3s ease;
    }

    .use-case-card:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .use-case-icon {
        display: inline-flex;
        padding: 0.75rem;
        background: rgba(230, 141, 58, 0.2);
        color: var(--accent);
        border-radius: 0.75rem;
        margin-bottom: 1rem;
        transition: transform 0.3s ease;
    }

    .use-case-card:hover .use-case-icon {
        transform: scale(1.1);
    }

    .use-case-icon svg {
        width: 24px;
        height: 24px;
    }

    .use-case-card h3 {
        font-size: 1.55rem;
        font-weight: 600;
        color: white;
        margin-bottom: 0.75rem;
    }

    .use-case-card p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.35rem;
        line-height: 1.6;
    }

    /* ========== CTA Section ========== */
    .cta {
        padding: 6rem 0;
        background: var(--background);
    }

    .cta-wrapper {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
    }

    .cta-glow {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(61, 84, 147, 0.05), rgba(230, 141, 58, 0.05), rgba(50, 108, 229, 0.05));
        border-radius: 1.5rem;
        filter: blur(20px);
    }

    .cta-card {
        position: relative;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 1.5rem;
        padding: 3rem;
        box-shadow: var(--shadow-xl);
    }

    .cta-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .cta-header h2 {
        margin-bottom: 1rem;
    }

    .cta-header p {
        color: var(--muted);
        font-size: 1.25rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .cta-option {
        text-align: center;
        padding: 1.5rem;
        border-radius: 1rem;
        transition: background 0.3s ease;
    }

    .cta-option:first-child {
        background: rgba(61, 84, 147, 0.05);
    }

    .cta-option:first-child:hover {
        background: rgba(61, 84, 147, 0.08);
    }

    .cta-option:last-child {
        background: linear-gradient(135deg, rgba(230, 141, 58, 0.1), rgba(230, 141, 58, 0.05));
        border: 1px solid rgba(230, 141, 58, 0.2);
    }

    .cta-option-icon {
        display: inline-flex;
        padding: 1rem;
        border-radius: 9999px;
        margin-bottom: 1rem;
    }

    .cta-option:first-child .cta-option-icon {
        background: rgba(61, 84, 147, 0.1);
        color: var(--primary);
    }

    .cta-option:last-child .cta-option-icon {
        background: rgba(230, 141, 58, 0.2);
        color: var(--accent);
    }

    .cta-option-icon svg {
        width: 32px;
        height: 32px;
    }

    .cta-option h3 {
        font-size: 1.35rem;
        font-weight: 600;
        color: var(--foreground);
        margin-bottom: 0.75rem;
    }

    .cta-option p {
        color: var(--muted);
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .cta-contact {
        margin-top: 2.5rem;
        padding-top: 2rem;
        border-top: 1px solid var(--border);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        color: var(--muted);
    }

    .cta-contact a:hover {
        color: var(--foreground);
    }

    .cta-contact-divider {
        display: none;
    }

    /* ========== Footer ========== */
    .footer {
        background: var(--primary);
        color: white;
        padding: 4rem 0 2rem;
    }

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

    .footer-brand p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.875rem;
        line-height: 1.7;
        margin: 1rem 0 1.5rem;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 0.5rem;
        transition: background 0.2s;
    }

    .footer-social a:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .footer-social svg {
        width: 20px;
        height: 20px;
    }

    .footer-column h4 {
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .footer-column ul {
        list-style: none;
    }

    .footer-column li {
        margin-bottom: 0.75rem;
    }

    .footer-column a {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.875rem;
        transition: color 0.2s;
    }

    .footer-column a:hover {
        color: white;
    }

    .footer-bottom {
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 1.125rem;
    }

    .footer-links {
        display: flex;
        gap: 1.5rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.875rem;
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: white;
    }

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

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

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

    @media (max-width: 768px) {

        .nav,
        .header-actions {
            display: none;
        }

        .mobile-menu-btn {
            display: block;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .hero-stats {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .what-is-kubeadm .content-grid {
            grid-template-columns: 1fr;
        }

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

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

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

        .pricing-card.featured {
            order: -1;
        }

        .use-cases-grid {
            grid-template-columns: 1fr;
        }

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

        .cta-card {
            padding: 2rem;
        }

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

        .footer-brand {
            margin-bottom: 2rem;
        }

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

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }