/* ==========================================================================
   TRIAL PAGE STYLES
   ========================================================================== */

/* CSS Custom Properties - Trial Page Specific
   NOTE: Using LUX Design System color variables where possible.
   Custom overrides for dark mode trial page. */
:root {
    /* Backgrounds - Dark mode specific (not in LUX light mode defaults) */
    --bg-primary: hsl(0, 0%, 5%);
    --bg-secondary: hsl(0, 0%, 10%);
    --bg-card: hsl(0, 0%, 8%);

    /* Brand colors - Map to LUX equivalents */
    --purple-dark: var(--primary-950);         /* hsl(267, 70%, 9%) - from LUX */
    --purple-accent: var(--primary-400);       /* hsl(271, 47%, 57%) - from LUX */
    --purple-light: var(--primary-300);        /* hsl(271, 47%, 71%) - from LUX */
    --gold: var(--tertiary-500);               /* hsl(43, 80%, 46%) - from LUX */
    --gold-light: var(--tertiary-400);         /* hsl(44, 70%, 59%) - from LUX */

    /* Text colors - Dark mode (keep custom for dark theme) */
    --text-primary: hsl(0, 0%, 100%);
    --text-secondary: hsl(0, 0%, 100%, 0.7);
    --text-muted: hsl(0, 0%, 100%, 0.5);

    /* Borders - Dark mode (keep custom for dark theme) */
    --border-subtle: hsl(0, 0%, 100%, 0.08);
    --border-light: hsl(0, 0%, 100%, 0.15);
    --border-input: hsl(0, 0%, 100%, 0.2);

    /* Semantic colors - Map to LUX */
    --success: var(--success-500);             /* hsl(122, 39%, 49%) - from LUX */
    --error: var(--danger-500);                /* hsl(1, 77%, 55%) - from LUX */
}

/* Base Styles */
body {
    font-family: var(--font-system); /* From LUX: -apple-system, BlinkMacSystemFont, 'SF Pro Text', etc. */
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: var(--text-body-line); /* From LUX: 1.47059 */
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

html {
    overflow-x: hidden; /* Prevent horizontal scroll on html as well */
}

* {
    box-sizing: border-box; /* Ensure all elements include padding/border in width */
}

/* ==========================================================================
   GUARANTEE STRIP
   ========================================================================== */
.guarantee-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg,
        var(--purple-accent) 0%,
        var(--purple-light) 100%
    );
    border-bottom: 1px solid hsl(255, 92%, 76%, 0.5);
    padding: var(--space-3) var(--space-4); /* 12px 16px - from LUX */
    text-align: center;
    backdrop-filter: blur(8px);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px hsl(262, 83%, 58%, 0.3);
}

.guarantee-strip .guarantee-promise {
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    margin: 0;
    text-shadow: 0 1px 2px hsl(0, 0%, 0%, 0.2);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsl(257, 24%, 6%, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsl(251, 16%, 20%, 1);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6); /* 24px - from LUX */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8); /* 32px - from LUX */
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: hsl(253, 10%, 74%, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: hsl(0, 0%, 100%);
}

.nav-link.active {
    color: hsl(0, 0%, 100%);
}

.nav-cta {
    background: var(--gold);
    color: hsl(0, 0%, 0%);
    padding: var(--space-2) var(--space-6); /* 8px 24px - from LUX */
    border-radius: var(--radius-button); /* 8px - from LUX */
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ==========================================================================
   MAIN LAYOUT
   ========================================================================== */
.trial-page {
    min-height: 100vh;
    padding: 5rem 1.5rem 4rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(180deg,
        var(--purple-dark) 0%,
        var(--bg-primary) 40%
    );
}

/* ==========================================================================
   PAGE HEADLINE
   ========================================================================== */
.page-headline {
    text-align: center;
    margin-bottom: 3rem;
}

.page-headline h1 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: hsl(0, 0%, 100%);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.page-headline h1 .gold-text {
    color: hsl(37, 91%, 55%) !important;
    display: inline;
}

.gold-text {
    color: hsl(37, 91%, 55%) !important;
}

.page-headline p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trial-container {
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-8); /* 32px - from LUX */
    align-items: start;
}

/* ==========================================================================
   FORM CARD (LEFT)
   ========================================================================== */
/* Using LUX .card as base, with dark mode overrides */
.trial-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card); /* From LUX */
    padding: var(--space-8); /* From LUX */
    transition: var(--transition-card); /* From LUX */
}

.form-header {
    margin-bottom: 1.5rem;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.form-header p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FORM STYLES
   ========================================================================== */
.form-section {
    margin-bottom: 1.5rem;
}

.form-section-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(0, 0%, 100%, 0.85); /* Increased from 0.5 to 0.85 for better mobile visibility */
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 1rem;
    display: block;
}

.form-group {
    margin-bottom: 1rem;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(0, 0%, 100%, 0.9); /* Increased from 0.7 to 0.9 for better mobile visibility */
    margin-bottom: 0.375rem;
}

/* Form inputs - Extending LUX .input with dark mode overrides */
.form-input {
    width: 100%;
    height: var(--size-input-height); /* From LUX: 44px */
    padding: 0 var(--space-4); /* From LUX: 16px */
    font-family: var(--font-system); /* From LUX */
    font-size: var(--text-body-size); /* From LUX: 17px */
    border-radius: var(--radius-input); /* From LUX: 8px */
    transition: var(--transition-all); /* From LUX */
    background: hsl(0, 0%, 100%, 0.03); /* Dark mode override */
    border: 1px solid var(--border-input);
    color: var(--text-primary);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    outline: none;
    border-color: var(--purple-accent);
    box-shadow: 0 0 0 3px hsl(262, 83%, 58%, 0.15);
}

/* Plan Selector */
.plan-selector {
    position: relative;
}

.plan-selector select {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background: hsl(0, 0%, 100%, 0.03);
    border: 1px solid var(--border-input);
    border-radius: var(--radius-input); /* 8px - from LUX */
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    transition: border-color 0.2s ease;
}

.plan-selector select:focus {
    outline: none;
    border-color: var(--purple-accent);
    box-shadow: 0 0 0 3px hsl(262, 83%, 58%, 0.15);
}

.plan-selector::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-muted);
    pointer-events: none;
}

.plan-selector option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Card Input Row */
.card-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
}

/* ==========================================================================
   INPUT VALIDATION STATES
   ========================================================================== */
.form-input.input-error {
    border-color: var(--error);
    background: hsl(0, 84%, 60%, 0.05);
}

.form-input.input-error:focus {
    border-color: var(--error);
    box-shadow: 0 0 0 3px hsl(0, 84%, 60%, 0.15);
}

.form-input.input-valid {
    border-color: var(--success);
    background: hsl(142, 71%, 45%, 0.05);
}

.form-input.input-valid:focus {
    border-color: var(--success);
    box-shadow: 0 0 0 3px hsl(142, 71%, 45%, 0.15);
}

.input-error-message {
    font-size: 0.8125rem;
    color: var(--error);
    margin-top: 0.375rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.input-error-message::before {
    content: '⚠';
    font-size: 0.875rem;
}

/* Card Brand Icon Display */
.card-brand-icon-container {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    pointer-events: none;
}

.card-icon {
    width: 56px;
    height: auto;
    max-height: 36px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px hsl(0, 0%, 0%, 0.3));
    object-fit: contain;
}

.card-icon-generic {
    opacity: 0.7;
}

.card-icon-visa,
.card-icon-mastercard,
.card-icon-amex,
.card-icon-discover {
    opacity: 1;
}

/* Adjust input padding when card icon is shown */
#cardNumber {
    padding-right: 5rem;
}

/* ==========================================================================
   PASSWORD FIELD - STRENGTH METER & VALIDATION
   ========================================================================== */
.password-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.toggle-visibility {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text-muted);
    transition: color 0.2s ease;
    z-index: 1;
}

.toggle-visibility:hover {
    color: var(--text-secondary);
}

.toggle-visibility svg {
    display: block;
}

.eye-open { display: block; }
.eye-closed { display: none; }

/* Strength Meter */
.strength-meter {
    margin-top: 12px;
}

.strength-bar-track {
    height: 4px;
    background: hsl(0, 0%, 100%, 0.06);
    border-radius: var(--radius-xs); /* 4px - from LUX */
    overflow: hidden;
}

.strength-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: var(--radius-xs); /* 4px - from LUX */
    transition: width 0.3s ease, background-color 0.3s ease;
}

.strength-bar-fill.weak { width: 25%; background: var(--error); }
.strength-bar-fill.fair { width: 50%; background: hsl(27, 96%, 61%); }
.strength-bar-fill.good { width: 75%; background: hsl(43, 96%, 56%); }
.strength-bar-fill.strong { width: 100%; background: var(--success); }

.strength-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 12px;
}

.strength-label-text {
    color: var(--text-muted);
    font-weight: 500;
}

.strength-label-text.weak { color: var(--error); }
.strength-label-text.fair { color: hsl(27, 96%, 61%); }
.strength-label-text.good { color: hsl(43, 96%, 56%); }
.strength-label-text.strong { color: var(--success); }

.strength-hint {
    color: var(--text-muted);
    font-size: 11px;
}

/* Requirements Checklist */
.requirements {
    margin-top: 16px;
    padding: 14px 16px;
    background: hsl(0, 0%, 100%, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-input); /* 8px - from LUX */
}

.requirements-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.requirement-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.requirement-item.met {
    color: var(--success);
}

.requirement-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.requirement-icon svg {
    width: 14px;
    height: 14px;
}

.requirement-icon .icon-circle {
    display: block;
}

.requirement-icon .icon-check {
    display: none;
}

.requirement-item.met .icon-circle {
    display: none;
}

.requirement-item.met .icon-check {
    display: block;
}

/* Common Password Warning */
.common-password-warning {
    display: none;
    margin-top: 12px;
    padding: 10px 12px;
    background: hsl(0, 91%, 71%, 0.08);
    border: 1px solid hsl(0, 91%, 71%, 0.2);
    border-radius: var(--radius-input); /* 8px - from LUX */
    font-size: 12px;
    color: var(--error);
    align-items: flex-start;
    gap: 8px;
}

.common-password-warning.visible {
    display: flex;
}

.common-password-warning svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* ==========================================================================
   CUSTOM BUTTON STYLES (Extending LUX .btn)
   ========================================================================== */
/* Gold button variant - Custom for trial page */
.btn-gold {
    background: var(--gold);
    color: hsl(0, 0%, 0%);
}

.btn-gold:hover:not(:disabled) {
    background: var(--gold-light);
}

.btn-gold:disabled {
    background: hsl(37, 91%, 55%, 0.3);
    color: hsl(0, 0%, 0%, 0.65);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Legacy class - maps to LUX .btn + .btn-gold + .btn-lg */
.submit-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--size-button-height-lg); /* From LUX */
    padding: 0 var(--space-10); /* From LUX */
    font-family: var(--font-system); /* From LUX */
    font-size: var(--text-title-3-size); /* From LUX */
    font-weight: var(--weight-medium); /* From LUX */
    border: none;
    border-radius: var(--radius-button); /* From LUX */
    cursor: pointer;
    transition: var(--transition-button); /* From LUX */
    background: var(--gold);
    color: hsl(0, 0%, 0%);
    margin-top: var(--space-2); /* From LUX */
}

.submit-btn:hover:not(:disabled) {
    background: var(--gold-light);
}

.submit-btn:active:not(:disabled) {
    transform: scale(0.97); /* From LUX */
}

.submit-btn:disabled {
    background: hsl(37, 91%, 55%, 0.3);
    color: hsl(0, 0%, 0%, 0.65);
    cursor: not-allowed;
    opacity: 0.6;
}

/* ==========================================================================
   SECURITY BADGES
   ========================================================================== */
.security-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex: 1;
    white-space: nowrap;
}

.security-badge.primary {
    justify-content: center;
}

.security-badge .material-symbols-rounded {
    font-size: 1rem;
    color: var(--success);
    flex-shrink: 0;
}

/* ==========================================================================
   ORDER SUMMARY (RIGHT)
   ========================================================================== */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 5rem;
    align-self: start;
}

.order-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card); /* 20px - from LUX */
    padding: 1.5rem;
}

.order-summary h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

/* Plan Display */
.summary-plan {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 1.25rem;
}

.summary-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.summary-plan-price {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Line Items */
.summary-lines {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
}

.summary-line .label {
    color: var(--text-secondary);
}

.summary-line .value {
    font-weight: 500;
}

.summary-line.total {
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 1rem;
}

.summary-line.total .value {
    font-weight: 700;
    color: var(--gold);
}

/* Value Statement */
.value-statement {
    background: hsl(0, 0%, 0%, 0.3);
    border-radius: var(--radius-md); /* 12px - from LUX */
    padding: 1.25rem;
    margin: 1.25rem 0;
    text-align: center;
}

.value-stat {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.value-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.value-context {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Future Billing */
.summary-future {
    background: hsl(262, 83%, 58%, 0.08);
    border: 1px solid hsl(262, 83%, 58%, 0.2);
    border-radius: var(--radius-input); /* 8px - from LUX */
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.summary-future p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.summary-future strong {
    color: var(--text-primary);
}

/* Guarantees */
.summary-guarantees {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.summary-guarantees li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    list-style: none;
}

.summary-guarantees .check {
    color: var(--success);
    font-size: 1rem;
}

.summary-guarantees .guarantee-highlight {
    color: var(--success);
    font-weight: 500;
}

/* ==========================================================================
   TESTIMONIAL CARD
   ========================================================================== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card); /* 20px - from LUX */
    padding: 1.5rem;
}

.testimonial-quote {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-quote .quote-mark {
    font-size: 3rem;
    line-height: 0.5;
    color: var(--purple-light);
    font-style: normal;
    font-family: Georgia, serif;
    margin-right: 0.25rem;
    vertical-align: top;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full); /* circle - from LUX */
    background: linear-gradient(135deg, var(--purple-accent), var(--purple-light));
    color: hsl(0, 0%, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.125rem;
}

.author-business {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-social-proof {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.testimonial-social-proof .material-symbols-rounded {
    font-size: 1.125rem;
    color: var(--gold);
    flex-shrink: 0;
}

.testimonial-social-proof .social-proof-full {
    white-space: nowrap;
}

.testimonial-social-proof strong {
    color: var(--purple-light);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-social-proof .social-proof-text {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FOOTER NOTE
   ========================================================================== */
.trial-footer {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.trial-footer a {
    color: var(--purple-light);
    text-decoration: none;
}

.trial-footer a:hover {
    color: var(--text-primary);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
    .page-headline h1 {
        font-size: 2rem;
    }

    .page-headline p {
        font-size: 1rem;
    }

    .trial-container {
        grid-template-columns: 1fr;
        max-width: 100%; /* Changed from 520px to 100% to fit mobile width */
        width: 100%;
    }

    .trial-page {
        padding: 5rem 1rem 4rem; /* Reduced horizontal padding from 1.5rem to 1rem for more space */
    }

    .order-summary {
        order: -1;
        position: static;
    }
}

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

    .trial-page {
        padding: 9rem 1rem 3rem; /* Keep horizontal padding for mobile spacing */
        overflow-x: hidden;
    }

    .trial-container {
        width: 100%;
        max-width: 100%;
    }

    .trial-form-card {
        padding: 1.25rem;
        width: 100%;
    }

    .order-summary {
        padding: 1.25rem;
        width: 100%;
    }

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

    .page-headline {
        margin-bottom: 2rem;
    }
}

/* ==========================================================================
   REPORT PREVIEW COMPONENT (on trial page)
   ========================================================================== */
.right-column .report-preview {
    margin-top: 1.5rem;
}

/* ==========================================================================
   LEFT COLUMN TESTIMONIAL (wider layout)
   ========================================================================== */
.left-column-testimonial {
    margin-top: 1.5rem;
}

.left-column-testimonial .testimonial-quote {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.left-column-testimonial .quote-mark {
    font-size: 3.5rem;
}

.left-column-testimonial .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.left-column-testimonial .author-avatar {
    width: 48px;
    height: 48px;
    font-size: 1rem;
}

.left-column-testimonial .author-name {
    font-size: 0.9375rem;
}

.left-column-testimonial .author-business {
    font-size: 0.8125rem;
}

.left-column-testimonial .testimonial-social-proof {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

@media (max-width: 480px) {
    .guarantee-strip .guarantee-promise {
        font-size: 1.125rem;
    }

    .form-header h1 {
        font-size: 1.25rem;
    }

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

    .card-row > div:first-child {
        grid-column: 1 / -1;
    }
}
