/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #1a376a;
    --primary-light: #244d8f;
    --primary-dark: #0f2241;
    --accent: #68df1b;
    --accent-dark: #4fb814;
    --text: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --text-dark: #0f172a;
    --text-medium: #475569;
    --border: #e2e8f0;
    --bg-light: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   UTILITY
   ============================================ */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-dark);
    background: rgba(104, 223, 27, 0.12);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 640px;
    line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================
   URGENCY BANNER
   ============================================ */
.urgency-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.9);
    padding: 10px 0;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.urgency-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.urgency-bar p {
    margin: 0;
}

.urgency-bar a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.urgency-bar a:hover {
    text-decoration: underline;
}

.urgency-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

.urgency-close:hover {
    color: #fff;
}

body.urgency-visible .navbar {
    top: var(--urgency-height, 40px);
}

body.urgency-visible .hero {
    padding-top: 180px;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition), top var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 36px;
    width: auto;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    transition: background var(--transition), transform var(--transition);
    cursor: pointer;
    border: none;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(170deg, var(--bg) 0%, #eef4ff 50%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(104,223,27,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 55, 106, 0.06);
    border: 1px solid rgba(26, 55, 106, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero h1 .highlight {
    color: var(--accent-dark);
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-pricing-teaser {
    background: rgba(104,223,27,0.1);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 16px 24px;
    margin-bottom: 28px;
    max-width: 420px;
}

.hero-pricing-label {
    font-size: 1.125rem;
    color: var(--primary);
    margin: 0;
}

.hero-pricing-label strong {
    color: var(--accent-dark);
    font-size: 1.25rem;
}

.hero-pricing-sub {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin: 4px 0 0 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(26, 55, 106, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 55, 106, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(26, 55, 106, 0.04);
}

/* ============================================
   PAIN POINTS
   ============================================ */
.pain-section {
    background: var(--bg-alt);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.pain-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}

.pain-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-2px);
}

.pain-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: rgba(26, 55, 106, 0.06);
}

.pain-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.pain-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* ============================================
   THE DIFFERENCE
   ============================================ */
.difference-block {
    background: var(--primary-dark);
    border-radius: var(--radius);
    padding: 64px;
    color: #fff;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
}

.difference-block::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(104,223,27,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.difference-block h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.difference-block p {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.difference-block .accent-text {
    color: var(--accent);
    font-weight: 600;
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: all var(--transition);
    position: relative;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(26, 55, 106, 0.08) 0%, rgba(104, 223, 27, 0.08) 100%);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-section {
    background: var(--bg-alt);
}

.comparison-wrapper {
    margin-top: 48px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg);
}

.comparison-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.comparison-table thead {
    background: var(--primary-dark);
    color: #fff;
}

.comparison-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.comparison-table th:first-child {
    border-radius: var(--radius) 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 var(--radius) 0 0;
}

.comparison-table th.ours {
    background: var(--primary);
    color: var(--accent);
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--primary);
}

.comparison-table .check {
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-table .cross {
    color: #ef4444;
    font-size: 1.125rem;
}

.comparison-table .partial {
    color: #f59e0b;
    font-size: 0.8125rem;
    font-weight: 500;
}

.comparison-table .ours-col {
    background: rgba(104, 223, 27, 0.04);
}

/* ============================================
   FOUNDER STORY
   ============================================ */
.founder-section {
    background: var(--bg);
}

.founder-card {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    position: relative;
}

.founder-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 32px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.founder-story {
    position: relative;
    z-index: 1;
}

.founder-story p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

.founder-story p:last-of-type {
    margin-bottom: 24px;
}

.founder-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.founder-title {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 2px;
}

.founder-company {
    font-size: 0.8125rem;
    color: var(--text-lighter);
    margin-top: 2px;
}

/* ============================================
   PRICING / PILOT OFFER
   ============================================ */
.pricing-section {
    background: linear-gradient(170deg, #eef4ff 0%, var(--bg) 100%);
}

.pricing-card {
    max-width: 640px;
    margin: 48px auto 0;
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 24px;
    border-radius: 100px;
}

.pricing-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin: 24px 0 8px;
}

.pricing-amount span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 36px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li .pf-check {
    color: var(--accent-dark);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   LEAD FORM
   ============================================ */
.form-section {
    background: var(--primary-dark);
    color: #fff;
}

.form-section .section-title {
    color: #fff;
}

.form-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.form-section .section-label {
    background: rgba(104, 223, 27, 0.15);
    color: var(--accent);
}

.form-card {
    max-width: 560px;
    margin: 48px auto 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 40px;
    backdrop-filter: blur(4px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--primary-dark);
    color: #fff;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--primary-dark);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.form-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    margin-top: 16px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
}

.form-success p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
    padding: 48px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-item .trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.trust-item .trust-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 720px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    gap: 16px;
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.5);
    padding: 56px 0 32px;
    font-size: 0.875rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer .logo {
    margin-bottom: 12px;
    display: inline-flex;
}

.footer .logo img {
    height: 32px;
    width: auto;
}

.footer-tagline {
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    font-size: 0.9375rem;
}

.footer-email {
    margin-top: 16px;
}

.footer-col h4 {
    color: rgba(255,255,255,0.85);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer a {
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}

.footer a:hover {
    color: var(--accent);
}

.footer-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    margin: 0;
}

/* (Variant CSS removed — all pages now use unified class names) */

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--primary-dark);
    border-top: 2px solid var(--accent);
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.mobile-cta button {
    width: 100%;
    max-width: 400px;
    padding: 14px;
    background: var(--accent);
    color: var(--primary-dark);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.mobile-cta .mobile-price {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .section { padding: 60px 0; }

    .hero { padding: 110px 0 60px; }

    body.urgency-visible .hero {
        padding-top: 150px;
    }

    .urgency-bar {
        padding: 8px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .form-row, .form-row-3 {
        grid-template-columns: 1fr;
    }

    .difference-block {
        padding: 40px 28px;
    }

    .pricing-card {
        padding: 40px 24px;
    }

    .pricing-amount {
        font-size: 3rem;
    }

    .trust-items {
        gap: 32px;
    }

    .form-card {
        padding: 28px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .mobile-cta {
        display: block;
    }

    /* Add bottom padding so footer isn't hidden behind sticky CTA */
    .footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero h1 {
        font-size: 2rem;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.8125rem;
    }
}
