:root {
    /* Color Palette */
    --color-navy: #182848;
    --color-sky-blue: #2EA8E5;
    --color-coral: #FF6F61;
    --color-white: #FFFFFF;
    --color-light-grey: #F4F4F4;
    --color-text-dark: #182848;
    --color-text-light: #666666;

    /* Topography */
    --font-primary: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 2rem;
    /* 32px */
    --spacing-lg: 4rem;
    /* 64px */
    --spacing-xl: 8rem;
    /* 128px */

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

.text-navy {
    color: var(--color-navy);
}

.text-sky {
    color: var(--color-sky-blue);
}

.text-coral {
    color: var(--color-coral);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary {
    background-color: var(--color-sky-blue);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #2390C5;
    /* Darker shade of Sky Blue */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 111, 97, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

.btn-secondary:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.btn-ghost {
    color: var(--color-navy);
    font-weight: 500;
}

.btn-ghost:hover {
    text-decoration: underline;
}

/* Section Spacing */
section {
    padding: var(--spacing-lg) 0;
}

/* Headings */
/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
}

.nav-list a {
    font-weight: 500;
    color: var(--color-text-dark);
}

.nav-list a:hover {
    color: var(--color-sky-blue);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-navy);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    /* Offset fixed header */
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F4F8FB 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.hero-trust {
    font-size: 0.9rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Visual (Laptop Mockup CSS only) */
.laptop-mockup {
    background: #e0e0e0;
    border-radius: 12px;
    /* Laptop Top Radius */
    padding: 12px 12px 0 12px;
    width: 100%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}



.screen {
    background: #182848;
    aspect-ratio: 16/10;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}

.keyboard {
    background: #d0d0d0;
    height: 16px;
    border-radius: 0 0 12px 12px;
    position: relative;
}

.keyboard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #a0a0a0;
    border-radius: 0 0 4px 4px;
}

/* Common Section Styles */
.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-top: var(--spacing-xs);
}

.bg-light {
    background-color: var(--color-light-grey);
}

/* 3-Step Flow */
.flow-section {
    background-color: var(--color-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    position: relative;
}

.step-card {
    text-align: center;
    padding: var(--spacing-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(46, 168, 229, 0.1);
    /* Sky Blue Light */
    color: var(--color-sky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 2rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

/* Templates Section */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.template-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    background: var(--color-white);
}

.template-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.template-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}

.template-info {
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
    text-align: center;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    align-items: start;
}

.pricing-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    position: relative;
    transition: transform var(--transition-fast);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border: 2px solid var(--color-sky-blue);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-sky-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid #f0f0f0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: var(--spacing-xs) 0;
}

.period {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.feature-list {
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

/* Trust Section */
.trust-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

/* Trust Section */
.trust-section {
    background-color: #F7F8FA;
    /* Premium light grey */
    padding: var(--spacing-lg) 0;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 10px 0 30px;
    font-weight: 600;
    color: var(--color-navy);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    justify-content: center;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.card-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--color-navy);
}

.card-brand i {
    font-size: 1.5rem;
}

.card-brand .brand-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--color-text-dark);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.author-info {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 700;
    color: var(--color-navy);
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.85rem;
    color: #888;
}

/* Who Section */
.who-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
}

.who-item {
    background: var(--color-white);
    padding: 12px 24px;
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* Included Section */
.included-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.faq-item h4 {
    color: var(--color-navy);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: var(--spacing-lg) 0;
}

.cta-banner h2 {
    color: var(--color-white);
}

.text-white {
    color: white !important;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.2rem;
    margin-top: var(--spacing-md);
}

/* Footer */
.footer {
    background-color: #121e36;
    /* Darker Navy */
    color: white;
    padding: var(--spacing-lg) 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.tagline {
    color: #a0a0a0;
    margin-top: var(--spacing-xs);
}

.footer-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-whatsapp.btn-disabled {
    background-color: #888;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-whatsapp.btn-disabled:hover {
    background-color: #888;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--color-navy);
}

.bottom-bar {
    background-color: #0e182b;
    padding: var(--spacing-sm) 0;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.stratcon-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

.stratcon-note a {
    color: var(--color-sky-blue);
}

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

/* Floating WhatsApp Attributes */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Modals */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    margin: auto;
}

.modal-content.modal-lg {
    max-width: 800px;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: #333;
}

.modal-header h3 {
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
}

.modal-footer {
    margin-top: 20px;
    /* Add spacing between image and button */
    text-align: center;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-sky-blue);
    box-shadow: 0 0 0 3px rgba(46, 168, 229, 0.1);
}

/* Textarea Styling */
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    min-height: 80px;
}

/* Select Dropdown Styling */
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background-color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* Form Sections */
.form-section {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: var(--spacing-md);
    padding-bottom: 0;
}

.form-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--spacing-sm);
}

.optional-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin-left: 8px;
}

/* Collapsible Sections */
.form-section.collapsible {
    border-bottom: none;
    padding-bottom: 0;
}

.section-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--color-light-grey);
    border: 1px solid #eee;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: background-color var(--transition-fast);
    min-height: 48px;
}

.section-toggle:hover {
    background: #e8e8e8;
}

.section-toggle i {
    transition: transform var(--transition-fast);
    font-size: 1.2rem;
}

.form-section.collapsible:not(.collapsed) .section-toggle i {
    transform: rotate(180deg);
}

.section-content {
    max-height: 600px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    padding-top: var(--spacing-sm);
}

.form-section.collapsed .section-content {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
}

/* Style Options (Radio Cards) */
.style-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.style-option {
    position: relative;
}

.style-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.style-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 48px;
    text-align: center;
}

.style-option input[type="radio"]:checked + label {
    border-color: var(--color-sky-blue);
    background-color: rgba(46, 168, 229, 0.05);
    color: var(--color-sky-blue);
}

.style-option label:hover {
    border-color: var(--color-sky-blue);
}

/* File Upload Styling */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 48px;
}

.file-upload-btn:hover {
    border-color: var(--color-sky-blue);
    color: var(--color-sky-blue);
}

.file-upload-btn.has-file {
    border-style: solid;
    border-color: var(--color-sky-blue);
    color: var(--color-sky-blue);
    background-color: rgba(46, 168, 229, 0.05);
}

.file-name {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 8px;
}

/* Template Placeholder in Modal */
.template-placeholder-large {
    background: #f4f4f4;
    height: 400px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    margin: 20px 0;
}

/* Premium Comparison Table */
.comparison-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.comparison-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    /* Allows for border-radius on rows/cols */
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: var(--color-text-dark);
}

.comparison-table .feature-col,
.comparison-table .feature-label {
    text-align: left;
    font-weight: 600;
    color: var(--color-navy);
    width: 25%;
}

.comparison-table th {
    padding-bottom: 30px;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

/* The Highlight Column (StarterWebsite) */
.comparison-table .highlight-col {
    background-color: var(--color-white);
    position: relative;
    /* Create the card effect */
    border-color: transparent;
    width: 30%;
}

/* Rounded top corners for the header cell */
.comparison-table thead .highlight-col {
    border-radius: 16px 16px 0 0;
    border-top: 4px solid var(--color-coral);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

/* Rounded bottom corners for the last cell */
.comparison-table tbody tr:last-child .highlight-col {
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: none;
}

/* Side borders via box-shadow to avoid layout shifts */
.comparison-table .highlight-col {
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.02), 10px 0 30px rgba(0, 0, 0, 0.02);
    z-index: 10;
}

.th-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
}

.best-value {
    background-color: var(--color-sky-blue);
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}

.tag-success {
    color: #25D366;
    font-weight: 700;
}

.text-green {
    color: #25D366;
}

.text-gray {
    color: #ccc;
}

.comparison-table i {
    font-size: 1.2rem;
    vertical-align: middle;
    margin-right: 4px;
}

/* Other columns fade out slightly */
.comparison-table td:not(.highlight-col):not(.feature-label) {
    color: #888;
}

/* Responsive */
@media (max-width: 900px) {
    .nav {
        display: none;
        /* Mobile menu implementation later */
    }

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

    /* Comparison Table Responsive */
    .comparison-wrapper {
        overflow-x: auto;
    }

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

    .logo-strip {
        gap: var(--spacing-md);
    }

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

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    /* Form responsive styles */
    .style-options {
        grid-template-columns: 1fr;
    }
}