/* ═══════════════════════════════════════════════════════════════════
   HIMALAYA ERP — Landing Page Styles
   Inspired by tiggapp.com: clean, professional SaaS aesthetic
   ═══════════════════════════════════════════════════════════════════ */

:root {
    --navy: #0f1b44;
    --navy-light: #1a2b5d;
    --navy-dark: #0a1230;
    --blue: #4f8cff;
    --blue-light: #7eadff;
    --blue-dark: #2d6ce0;
    --teal: #0d9488;
    --teal-light: #14b8a6;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --red-accent: #ef4444;
    --green-accent: #22c55e;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

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

/* ─── Navbar ───────────────────────────────────────────────────── */

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.landing-nav.scrolled {
    box-shadow: var(--shadow);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 20px;
}

.nav-brand img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    padding: 8px 20px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-login:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: var(--gray-50);
}

.btn-primary {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--navy-light), var(--blue-dark));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 27, 68, 0.3);
    color: var(--white);
}

.btn-primary-blue {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.btn-primary-blue:hover {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    box-shadow: 0 4px 12px rgba(79, 140, 255, 0.3);
}

.btn-outline {
    padding: 10px 24px;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius);
}

/* Mobile menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--gray-700);
}

.mobile-toggle svg { width: 24px; height: 24px; }

/* ─── Hero ─────────────────────────────────────────────────────── */

.hero {
    padding: 140px 24px 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(var(--gray-200) 1px, transparent 1px),
        linear-gradient(90deg, var(--gray-200) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}

.hero-badge span {
    color: var(--teal);
    font-weight: 600;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.7s ease;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--blue), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.9s ease;
}

.hero-image {
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    animation: fadeInUp 1s ease;
}

.hero-image img {
    width: 100%;
    display: block;
}

/* ─── Trusted By / Stats ───────────────────────────────────────── */

.stats-section {
    padding: 60px 24px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ─── Features Tabs ────────────────────────────────────────────── */

.features-section {
    padding: 100px 24px;
    background: var(--white);
}

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

.section-header .label {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(79,140,255,0.1);
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.feature-tab {
    padding: 10px 22px;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    background: var(--white);
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.feature-tab:hover {
    border-color: var(--blue);
    color: var(--navy);
}

.feature-tab.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.feature-content {
    display: none;
    gap: 60px;
    align-items: center;
}

.feature-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: fadeIn 0.4s ease;
}

.feature-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.feature-text p {
    color: var(--gray-500);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-700);
}

.feature-list li svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-screenshot {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-screenshot .placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
}

.feature-screenshot .placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

/* ─── Highlights (3-column cards) ──────────────────────────────── */

.highlights-section {
    padding: 100px 24px;
    background: var(--gray-50);
}

.highlights-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.highlight-icon.blue { background: rgba(79,140,255,0.1); color: var(--blue); }
.highlight-icon.teal { background: rgba(13,148,136,0.1); color: var(--teal); }
.highlight-icon.navy { background: rgba(15,27,68,0.1); color: var(--navy); }
.highlight-icon.red { background: rgba(239,68,68,0.1); color: var(--red-accent); }
.highlight-icon.green { background: rgba(34,197,94,0.1); color: var(--green-accent); }

.highlight-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ─── Testimonials ─────────────────────────────────────────────── */

.testimonials-section {
    padding: 100px 24px;
    background: var(--white);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: #f59e0b;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.testimonial-info strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ─── FAQ ──────────────────────────────────────────────────────── */

.faq-section {
    padding: 100px 24px;
    background: var(--gray-50);
}

.faq-inner {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--blue); }

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

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    color: var(--gray-400);
    flex-shrink: 0;
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

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

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ─── CTA Banner ───────────────────────────────────────────────── */

.cta-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white {
    padding: 14px 32px;
    background: var(--white);
    color: var(--navy);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-ghost {
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* ─── Support Ticket Form ──────────────────────────────────────── */

.support-section {
    padding: 100px 24px;
    background: var(--white);
}

.support-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.support-info h3 {
    font-size: 14px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 12px;
}

.support-info h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.support-info p {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
}

.contact-method svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
}

.support-form {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
}

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

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    width: 48px;
    height: 48px;
    color: var(--green-accent);
    margin-bottom: 12px;
}

.form-success h3 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-500);
}

/* ─── Footer ───────────────────────────────────────────────────── */

.landing-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 24px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.footer-brand img {
    height: 36px;
    border-radius: 6px;
}

.footer-brand span {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--blue);
    color: var(--white);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

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

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover { color: var(--white); }

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

/* ─── Animations ───────────────────────────────────────────────── */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ───────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .feature-content.active { grid-template-columns: 1fr; gap: 40px; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    .support-inner { grid-template-columns: 1fr; }
}

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

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 20px 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
    }

    .hero { padding: 120px 20px 60px; }
    .hero h1 { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-actions { flex-direction: column; }

    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-item h3 { font-size: 28px; }

    .section-header h2 { font-size: 28px; }
    .feature-tabs { gap: 6px; }
    .feature-tab { padding: 8px 16px; font-size: 13px; }

    .highlights-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .cta-section h2 { font-size: 28px; }
    .cta-actions { flex-direction: column; align-items: center; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .nav-cta .btn-primary { display: none; }
    .stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
}
