/* 
  Premium SaaS Pricing Page CSS - Light/Bright Brand Theme
  Variables & Reset
*/
:root {
    --wk-primary: #0A2540; /* Deep blue/navy for strong text */
    --wk-secondary: #0074C8; /* Brand Blue from logo */
    --wk-accent: #C8102E; /* Brand Red from logo */
    --wk-text-main: #334155;
    --wk-text-muted: #64748B;
    --wk-text-light: #F8FAFC;
    --wk-bg-main: #F8FAFC; /* Light gray background */
    --wk-bg-card: #FFFFFF;
    --wk-bg-hero: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%); /* Bright soft blue */
    --wk-bg-cta: #F4F8FB; /* Very light blue for CTA */
    --wk-border: #E2E8F0;
    --wk-success: #10B981;
    --wk-glow: rgba(0, 116, 200, 0.3);
    
    --wk-font-sans: 'Inter', system-ui, sans-serif;
    --wk-font-display: 'Outfit', sans-serif;
    
    --wk-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --wk-shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --wk-shadow-md: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.03);
    --wk-shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.1);
    --wk-shadow-glow: 0 0 30px var(--wk-glow);
    --wk-radius-md: 12px;
    --wk-radius-lg: 24px;
}

body {
    margin: 0;
}

.wk-pricing-wrapper {
    font-family: var(--wk-font-sans);
    color: var(--wk-text-main);
    background-color: var(--wk-bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.wk-pricing-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.wk-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.wk-section-heading {
    text-align: center;
    margin-bottom: 64px;
}

.wk-section-heading h2 {
    font-family: var(--wk-font-display);
    font-size: 2.5rem;
    color: var(--wk-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.wk-section-heading p {
    font-size: 1.125rem;
    color: var(--wk-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* BUTTONS */
.wk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--wk-transition);
    border: 2px solid transparent;
}

.wk-btn-primary {
    background-color: var(--wk-secondary);
    color: white;
}

.wk-btn-primary:hover {
    background-color: #005a9e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 116, 200, 0.2);
}

.wk-btn-outline {
    background-color: transparent;
    color: var(--wk-secondary);
    border-color: var(--wk-secondary);
}

.wk-btn-outline:hover {
  background: linear-gradient(135deg, var(--wk-secondary), var(--wk-accent));
  color: #fff;
  transform: translateY(-2px);
}

/* Red button for highlighting critical actions if needed */
.wk-btn-accent {
    background-color: var(--wk-accent);
    color: white;
}

.wk-btn-accent:hover {
    background-color: #A30D25;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 16, 46, 0.2);
}

/* HERO SECTION */
.wk-hero {
    position: relative;
    padding: 100px 0;
    background: var(--wk-bg-hero);
    color: var(--wk-primary);
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

#wk-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6; /* Slightly lower opacity for dark particles on light background */
}

.wk-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--wk-bg-main));
    z-index: 2;
}

.wk-hero-content {
    position: relative;
    z-index: 3;
    /* max-width: 800px; */
    margin: 0 auto;
}

.wk-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 116, 200, 0.1);
    border: 1px solid rgba(0, 116, 200, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wk-secondary);
    margin-bottom: 24px;
}

.wk-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--wk-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--wk-secondary);
    animation: wk-pulse 2s infinite;
}

@keyframes wk-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 116, 200, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 116, 200, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 116, 200, 0); }
}

.wk-hero-title {
    font-family: var(--wk-font-display);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--wk-primary);
}

.wk-gradient-text {
    background: linear-gradient(135deg, var(--wk-secondary), var(--wk-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.wk-hero-subtitle {
    font-size: 1.25rem;
    color: var(--wk-text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.wk-hero-micro-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.wk-hero-micro-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--wk-primary);
}

.wk-hero-micro-trust i {
    color: var(--wk-secondary);
    font-size: 1.2rem;
}

.wk-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.wk-scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.wk-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--wk-primary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    opacity: 0.5;
}

.wk-wheel {
    width: 4px;
    height: 8px;
    background: var(--wk-primary);
    border-radius: 4px;
    margin-top: 6px;
    animation: wk-scroll 2s infinite ease-in-out;
}

@keyframes wk-scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* TRUST STRIP */
.wk-trust-strip {
    padding: 20px 0;
    background: var(--wk-bg-card);
    border-bottom: 1px solid var(--wk-border);
    position: relative;
    z-index: 4;
}

.wk-trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.wk-trust-card a {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.wk-stars {
    color: #FBBF24;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.wk-trust-text strong {
    color: var(--wk-primary);
}

.wk-trust-clients strong {
    color: var(--wk-secondary);
}

/* PRICING CARDS */
.wk-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.wk-card {
    background: var(--wk-bg-card);
    border-radius: var(--wk-radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--wk-border);
    box-shadow: var(--wk-shadow-sm);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wk-pricing-grid .wk-card.wk-active:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--wk-shadow-lg);
    border-color: rgba(0, 116, 200, 0.3);
}

.wk-card-popular {
    border: 2px solid var(--wk-secondary);
    box-shadow: var(--wk-shadow-md);
    transform: scale(1.03);
}

.wk-pricing-grid .wk-card-popular.wk-active:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: var(--wk-shadow-glow);
}

.wk-popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--wk-secondary), var(--wk-accent));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 116, 200, 0.3);
}

.wk-card-header h3 {
    font-family: var(--wk-font-display);
    font-size: 1.5rem;
    color: var(--wk-primary);
    margin-bottom: 8px;
}

.wk-card-header p {
    font-size: 0.95rem;
    color: var(--wk-text-muted);
    min-height: 48px;
}

.wk-card-price {
    margin: 24px 0;
}

.wk-old-price {
    color: #94A3B8;
    font-size: 1rem;
    font-weight: 500;
}

.wk-current-price {
    font-family: var(--wk-font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--wk-primary);
    line-height: 1;
}

.wk-current-price.wk-accent {
    color: var(--wk-secondary);
}

.wk-one-time {
    font-family: var(--wk-font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--wk-text-muted);
    margin-left: 8px;
}

.wk-card-divider {
    height: 1px;
    background: var(--wk-border);
    margin: 24px 0;
}

.wk-card-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.wk-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--wk-primary);
}

.wk-card-features i {
    color: var(--wk-success);
    font-size: 1.1rem;
    margin-top: 2px;
}

.wk-card-features .wk-accent-icon {
    color: var(--wk-secondary);
}

.wk-card-footer {
    margin-top: auto;
}

.wk-card-footer .wk-btn {
    width: 100%;
}

.pricing-note
 {
    text-align: center;
    margin-top: 40px;
    padding: 15px;
    font-size: 1rem;
    color: var(--wk-text-muted);
    font-weight: 500;
}

/* COMPARISON TABLE */
.wk-comparison-section {
    padding: 60px 24px;
}

.wk-table-container {
    overflow-x: auto;
    background: var(--wk-bg-card);
    border-radius: var(--wk-radius-lg);
    box-shadow: var(--wk-shadow-md);
    border: 1px solid var(--wk-border);
}

.wk-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.wk-compare-table th,
.wk-compare-table td {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid var(--wk-border);
}

.wk-compare-table th {
    background: #F1F5F9;
    font-family: var(--wk-font-display);
    color: var(--wk-primary);
    font-size: 1.125rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.wk-compare-table th:first-child,
.wk-compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--wk-primary);
    position: sticky;
    left: 0;
    background: inherit;
    z-index: 5;
}

.wk-compare-table th:first-child {
    background: #F1F5F9;
    z-index: 15;
}

.wk-tr-header td {
    background: #F8FAFC !important;
    font-weight: 700;
    color: var(--wk-secondary) !important;
    text-align: left !important;
    font-size: 1.1rem;
    padding-top: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--wk-border);
}

.wk-compare-table tbody tr:hover td {
    background-color: #F8FAFC;
}

.wk-compare-table i.ph-check {
    color: var(--wk-secondary);
    font-size: 1.25rem;
}

.wk-compare-table i.ph-minus {
    color: #CBD5E1;
    font-size: 1.25rem;
}

/* BENEFITS SECTION */
.wk-benefits-section {
    padding: 50px 0 0;
    background: linear-gradient(180deg, var(--wk-bg-card), var(--wk-bg-main));
}

.wk-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.wk-benefit-card {
    background: var(--wk-bg-card);
    padding: 32px;
    border-radius: var(--wk-radius-md);
    box-shadow: var(--wk-shadow-sm);
    border: 1px solid var(--wk-border);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.wk-benefits-grid .wk-benefit-card.wk-active:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--wk-shadow-md);
    border-color: rgba(0, 116, 200, 0.2);
}

.wk-benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 116, 200, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--wk-secondary);
    font-size: 32px;
}

.wk-benefit-card h4 {
    color: var(--wk-primary);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.wk-benefit-card p {
    color: var(--wk-text-muted);
    font-size: 0.95rem;
}

/* PROCESS SECTION */
.wk-process-section {
    padding: 100px 24px;
}

.wk-process-path {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.wk-process-path::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--wk-border);
    z-index: 1;
}

.wk-process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 160px;
}

.wk-step-circle {
    width: 60px;
    height: 60px;
    background: var(--wk-bg-card);
    border: 2px solid var(--wk-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--wk-font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--wk-secondary);
    margin: 0 auto 16px;
    box-shadow: var(--wk-shadow-sm);
    transition: var(--wk-transition);
}

.wk-process-step:hover .wk-step-circle {
    background: var(--wk-secondary);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--wk-shadow-glow);
}

.wk-process-step h4 {
    color: var(--wk-primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.wk-process-step p {
    font-size: 0.875rem;
    color: var(--wk-text-muted);
}

/* TESTIMONIALS */
.wk-testimonials-section {
    overflow: hidden;
}

.wk-testimonial-marquee {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
}

.wk-marquee-track {
    display: flex;
    width: max-content;
    animation: wk-marquee 40s linear infinite;
    padding: 20px;
}

.wk-marquee-track:hover {
    animation-play-state: paused;
}

.wk-testimonial-card {
    background: var(--wk-bg-card);
    border: 1px solid var(--wk-border);
    border-radius: var(--wk-radius-md);
    padding: 32px;
    width: 400px;
    margin-right: 24px;
    box-shadow: var(--wk-shadow-sm);
    transition: var(--wk-transition);
    white-space: normal;
}

.wk-testimonial-card:hover {
    box-shadow: var(--wk-shadow-md);
    transform: translateY(-4px);
}

.wk-testi-stars {
    color: #FBBF24;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.wk-testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    color: var(--wk-text-main);
    margin-bottom: 24px;
}

.wk-testi-author {
    font-weight: 600;
    color: var(--wk-primary);
}

@keyframes wk-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}

/* FAQ SECTION */
.wk-faq-section {
    padding: 100px 24px;
    /*max-width: 800px;*/
}

.wk-accordion {
    background: var(--wk-bg-card);
    border: 1px solid var(--wk-border);
    border-radius: var(--wk-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--wk-transition);
}

.wk-accordion.active {
    border-color: var(--wk-secondary);
    box-shadow: var(--wk-shadow-sm);
}

.wk-accordion-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--wk-primary);
    font-size: 1.1rem;
}

.wk-accordion-header i {
    color: var(--wk-secondary);
    transition: transform 0.3s ease;
}

.wk-accordion.active .wk-accordion-header i {
    transform: rotate(45deg);
}

.wk-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.wk-accordion-content p {
    padding: 0 24px 24px;
    color: var(--wk-text-muted);
}

/* CTA & FORM */
.wk-cta-form-section {
    padding: 100px 0;
    background: var(--wk-bg-cta); /* Switched from dark to extremely light blue */
    color: var(--wk-text-main);
    border-top: 1px solid var(--wk-border);
}

.wk-cta-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.wk-cta-content h2 {
    font-family: var(--wk-font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--wk-primary);
}

.wk-cta-content p {
    font-size: 1.125rem;
    color: var(--wk-text-muted);
    margin-bottom: 40px;
}

.wk-cta-benefits {
    list-style: none;
}

.wk-cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--wk-primary);
    font-weight: 500;
}

.wk-cta-benefits i {
    font-size: 1.25rem;
    color: var(--wk-secondary);
}

.wk-cta-form-card {
    background: var(--wk-bg-card);
    padding: 40px;
    border-radius: var(--wk-radius-lg);
    box-shadow: var(--wk-shadow-lg); /* Removed heavy dark shadow for lighter one */
    color: var(--wk-text-main);
    border: 1px solid var(--wk-border);
}

.wk-cta-form-card h3 {
    font-family: var(--wk-font-display);
    font-size: 1.5rem;
    color: var(--wk-primary);
    margin-bottom: 24px;
    text-align: center;
}

.wk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wk-form-group {
    margin-bottom: 20px;
}

.wk-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wk-primary);
    margin-bottom: 8px;
}

.wk-form-group input,
.wk-form-group select,
.wk-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--wk-border);
    border-radius: var(--wk-radius-md);
    background: #F8FAFC;
    font-family: var(--wk-font-sans);
    font-size: 0.95rem;
    transition: var(--wk-transition);
    color: var(--wk-text-main);
}

.wk-form-group input:focus,
.wk-form-group select:focus,
.wk-form-group textarea:focus {
    outline: none;
    border-color: var(--wk-secondary);
    box-shadow: 0 0 0 3px rgba(0, 116, 200, 0.1);
    background: white;
}

.wk-submit-btn {
    width: 100%;
    background: var(--wk-secondary);
    color: white;
    padding: 16px;
    border: none;
    border-radius: var(--wk-radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wk-transition);
    margin-top: 10px;
}

.wk-submit-btn:hover {
    background: #005a9e;
    transform: translateY(-2px);
    box-shadow: var(--wk-shadow-md);
}

/* UTILITIES */
.wk-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.wk-reveal.wk-active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .wk-pricing-grid,
    .wk-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wk-card-popular {
        transform: none;
    }
    
    .wk-card-popular.wk-active:hover {
        transform: translateY(-12px) scale(1.02);
    }
    
    .wk-process-path {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .wk-process-path::before {
        display: none;
    }
    
    .wk-cta-split-layout {
        grid-template-columns: 1fr;
    }
    
    .wk-cta-content {
        text-align: center;
    }
    
    .wk-cta-benefits {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    /* Responsive Table Styles */
    .wk-table-container { 
        box-shadow: none; 
        border: none; 
        background: transparent; 
    }
    .wk-compare-table { 
        display: block; 
        width: 100%; 
        min-width: unset;
        border-collapse: separate; 
    }
    .wk-compare-table thead { 
        display: none; 
    }
    .wk-compare-table tbody { 
        display: block; 
        width: 100%; 
    }
    .wk-compare-table tr { 
        display: block; 
        width: 100%; 
        background: var(--wk-bg-card); 
        margin-bottom: 24px; 
        border-radius: var(--wk-radius-md); 
        border: 1px solid var(--wk-border);
        box-shadow: var(--wk-shadow-sm);
        padding-bottom: 8px;
    }
    .wk-compare-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
        text-align: right;
        border-bottom: 1px solid var(--wk-border);
    }
    .wk-compare-table td:last-child {
        border-bottom: none;
    }
    .wk-compare-table td:first-child {
        display: block;
        text-align: left;
        background: #F1F5F9;
        font-weight: 700;
        color: var(--wk-primary);
        border-bottom: 2px solid var(--wk-border);
        position: static;
    }
    .wk-compare-table td:not(:first-child):empty {
        display: none;
    }
    .wk-compare-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--wk-text-muted);
        text-align: left;
    }
    .wk-tr-header { 
        border: none !important; 
        background: transparent !important; 
        box-shadow: none !important;
        margin-bottom: 0px !important;
        padding-bottom: 0px !important;
    }
    .wk-tr-header td { 
        background: transparent !important; 
        padding-top: 32px; 
        border-bottom: none;
        color: var(--wk-secondary);
        font-size: 1.25rem;
    }
    .wk-hero-title {
        font-size: 2.5rem;
    }
    
    .wk-hero-actions {
        flex-direction: column;
    }
    
    .wk-trust-grid {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .wk-pricing-grid,
    .wk-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .wk-form-row {
        grid-template-columns: 1fr;
    }
}
