/**
 * SquadEase - Public Pages Stylesheet
 * Shared styles for all public-facing pages
 */

:root {
    --primary: #3574a3;          /* Darkened from #5599cc for WCAG AA 4.5:1 on white */
    --primary-dark: #2d6a97;     /* Darkened from #4488bb for WCAG AA */
    --primary-light: #5599cc;    /* Original primary becomes the light variant */
    --primary-brand: #5599cc;    /* Original brand color for large text only */
    --secondary: #2c3e50;
    --accent: #b1611a;           /* Darkened from #e67e22 for WCAG AA 4.5:1 on white */
    --accent-brand: #e67e22;     /* Original accent for large text/decorative only */
    --text-dark: #1a1a2e;
    --text-medium: #4a5568;
    --text-light: #69778b;       /* Darkened from #718096 for WCAG AA 4.5:1 on white */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --success: #12883e;          /* Darkened from #27ae60 for WCAG AA */
    --warning: #9e6b08;          /* Darkened from #f39c12 for WCAG AA 4.6:1 */
    --danger: #d92525;           /* Darkened from #ef4444 for WCAG AA */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ============================================
   ACCESSIBILITY (WCAG 2.1 AA)
   ============================================ */

/* Skip to content link — visible only on focus (WCAG 2.4.1) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Screen reader only utility (visually hidden, accessible to AT) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible outlines for all interactive elements (WCAG 2.4.7) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Remove default outline only when :focus-visible is supported */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* Link underlines on hover/focus for non-button links (WCAG 1.4.1) */
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn):focus-visible,
.footer-col a:hover,
.footer-col a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
    text-decoration: underline;
}

/* Reduced motion preference (WCAG 2.3.3) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--bg-white);
    padding: 15px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-logo span {
    color: #ffd700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

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

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

.nav-links a.btn-primary {
    color: #fff;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Nav Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-white {
    background: #fff;
    color: var(--primary);
}

.btn-white:hover {
    background: #f0f0f0;
}

.btn-accent {
    background-color: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background-color: #d35400;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--secondary) 100%);
    padding: 140px 20px 100px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 15px;
    opacity: 0.9;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin: 0 0 25px;
    line-height: 1.15;
}

.hero h1 em {
    font-style: normal;
    color: #ffd700;
}

.hero p {
    font-size: 20px;
    opacity: 0.95;
    margin: 0 0 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 180px;
    text-align: center;
}

.hero .btn-primary {
    background: #fff;
    color: var(--primary-dark);
}

.hero .btn-primary:hover {
    background: #f3f4f6;
}

.hero .btn-outline {
    border-color: #fff;
    color: #fff;
}

.hero .btn-outline:hover {
    background: #fff;
    color: var(--primary-dark);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

.hero-stat-label {
    font-size: 14px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   VALUE PROPOSITION SECTION
   ============================================ */

.value-prop {
    padding: 80px 20px;
    background: var(--bg-white);
}

.value-prop-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.value-prop h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 20px;
}

.value-prop .lead {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 50px;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 35px 30px;
    text-align: left;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.value-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.value-card p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 80px 20px;
    background: var(--bg-light);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px;
}

.features .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin: 0 0 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px;
}

.feature-card p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS / STEPS SECTION
   ============================================ */

.how-it-works {
    padding: 80px 20px;
    background: var(--bg-light);
}

.how-container {
    max-width: 1000px;
    margin: 0 auto;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px;
}

.how-it-works .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin: 0 0 50px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.step-number {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.step p {
    color: var(--text-medium);
    margin: 0;
    font-size: 15px;
}

.how-it-works-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.how-it-works .step {
    background: var(--bg-white);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    background: var(--primary-brand);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 20px;
}

.cta p {
    font-size: 20px;
    opacity: 0.95;
    margin: 0 0 35px;
}

.cta .btn {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 180px;
    text-align: center;
}

.cta .btn-primary {
    background: #fff;
    color: var(--primary-dark);
}

.cta .btn-primary:hover {
    background: #f0f0f0;
}

.cta .btn-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.cta .btn-outline:hover {
    background: #fff;
    color: var(--primary-dark);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--secondary);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary);
}

.footer-brand h3 span {
    color: #ffd700;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #ffd700 !important;
    font-style: italic;
    margin-top: 15px !important;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary-light);
}

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

.footer-copyright {
    color: #95a8c6;             /* Lightened from #718096 for WCAG AA on #2c3e50 */
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #95a8c6;             /* Lightened from #718096 for WCAG AA on #2c3e50 */
    font-size: 14px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

.text-muted {
    color: var(--text-light);
}

.section {
    padding: 80px 0;
}

.section-white {
    background: var(--bg-white);
}

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

/* Page Hero (smaller for inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--secondary) 100%);
    padding: 120px 20px 60px;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Content Section */
.content-section {
    padding: 60px 20px;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.card p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

/* Skill Tags */
.skill-tag {
    background: #e0f2fe;
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin: 4px;
}

/* Category Card */
.category-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-card h3 .icon {
    font-size: 24px;
}

.category-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Info Box */
.info-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
}

.info-box h4 {
    margin: 0 0 10px;
    font-size: 16px;
    color: var(--text-dark);
}

.info-box p {
    margin: 0;
    color: var(--text-medium);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(53, 116, 163, 0.2);
}

.form-group input:focus:not(:focus-visible),
.form-group textarea:focus:not(:focus-visible),
.form-group select:focus:not(:focus-visible) {
    box-shadow: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Legal/Terms Page Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-content h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 40px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.legal-content h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin: 25px 0 10px;
}

.legal-content p {
    color: var(--text-medium);
    margin: 0 0 15px;
    line-height: 1.8;
}

.legal-content ul {
    color: var(--text-medium);
    margin: 0 0 15px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-meta {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-medium);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .hero h1 {
        font-size: 40px;
    }

    .page-hero h1 {
        font-size: 34px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
        font-size: 16px;
    }

    .nav-links .btn {
        margin-top: 15px;
        text-align: center;
    }

    .nav-links .btn-primary,
    .nav-links .btn-outline {
        width: 100%;
        display: block;
    }

    .nav-overlay.active {
        display: block;
        z-index: 101;
    }

    .hero {
        padding: 120px 20px 80px;
    }

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

    .hero p {
        font-size: 18px;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stat-number {
        font-size: 28px;
    }

    .page-hero {
        padding: 100px 20px 50px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero p {
        font-size: 16px;
    }

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

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

    .footer-brand {
        grid-column: span 1;
    }

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

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

    .value-prop h2,
    .features h2,
    .how-it-works h2 {
        font-size: 28px;
    }

    .comparison-table {
        font-size: 14px;
    }

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

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}
