html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

.illustration-wrapper {
    width: 100%;
}

.illustration-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
}

:root {
    --feedback-gradient: radial-gradient(circle at top left, #ffe1f0 0%, #f4f8ff 50%, #ffffff 100%);
    --feedback-text-primary: #1a1a2e;
    --feedback-text-muted: #4a4a68;
    --feedback-surface: rgba(255, 255, 255, 0.85);
    --feedback-border: rgba(120, 120, 180, 0.16);
    --feedback-accent: #5a4bff;
    --feedback-accent-soft: rgba(90, 75, 255, 0.12);
    --feedback-success: rgba(68, 214, 166, 0.16);
    --feedback-success-text: #1d7f63;
    --feedback-shadow: 0 40px 80px -40px rgba(45, 35, 85, 0.45);
}

:root[data-resolved-theme="dark"] {
    --feedback-gradient: radial-gradient(circle at top left, #2b2348 0%, #0f1729 55%, #060912 100%);
    --feedback-text-primary: #f9f9ff;
    --feedback-text-muted: #a7a6d4;
    --feedback-surface: rgba(20, 21, 38, 0.78);
    --feedback-border: rgba(255, 255, 255, 0.04);
    --feedback-accent: #8f89ff;
    --feedback-accent-soft: rgba(143, 137, 255, 0.16);
    --feedback-success: rgba(98, 246, 199, 0.16);
    --feedback-success-text: #86ffd7;
    --feedback-shadow: 0 40px 80px -48px rgba(0, 0, 0, 0.65);
}

.feedback-page {
    background: var(--feedback-gradient);
    padding: 3rem clamp(1rem, 4vw, 4rem) 6rem;
    border-radius: 2.75rem;
    position: relative;
    box-shadow: var(--feedback-shadow);
    color: var(--feedback-text-primary);
    overflow: hidden;
}

.feedback-page::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(40% 40% at 80% 20%, rgba(90, 75, 255, 0.18), transparent),
        radial-gradient(35% 35% at 10% 80%, rgba(255, 190, 125, 0.16), transparent);
    mix-blend-mode: screen;
}

.glass-panel {
    position: relative;
    z-index: 1;
    background: var(--feedback-surface);
    border-radius: 2rem;
    border: 1px solid var(--feedback-border);
    backdrop-filter: blur(30px);
    box-shadow: 0 30px 40px -30px rgba(12, 24, 64, 0.35);
}

.feedback-hero {
    padding: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
    display: grid;
    gap: 1.75rem;
}

.hero-copy {
    max-width: 680px;
}

.pretitle {
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--feedback-text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.headline {
    font-size: clamp(2.8rem, 6vw, 3.8rem);
    line-height: 1.08;
    margin-bottom: 1rem;
}

.supporting {
    color: var(--feedback-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.feedback-theme-toggle {
    display: inline-flex;
    background: var(--feedback-accent-soft);
    padding: 0.4rem;
    border-radius: 999px;
    align-self: flex-end;
    justify-self: flex-end;
    gap: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.theme-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.05rem;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: var(--feedback-text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-chip span:first-child {
    font-size: 1.2rem;
}

.theme-chip.active {
    background: var(--feedback-surface);
    color: var(--feedback-text-primary);
    box-shadow: 0 10px 20px -12px rgba(90, 85, 180, 0.75);
}

.feedback-toast {
    background: var(--feedback-success);
    color: var(--feedback-success-text);
    padding: 0.85rem 1.2rem;
    border-radius: 1rem;
    font-weight: 600;
    max-width: 460px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.feedback-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 2rem);
}

.feedback-form {
    padding: clamp(2rem, 4vw, 3rem);
}

.feedback-form h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: var(--feedback-text-muted);
    margin-bottom: 2rem;
}

.feedback-form-body {
    display: grid;
    gap: 1.6rem;
}

.field-group {
    display: grid;
    gap: 0.8rem;
}

.field-group legend {
    font-weight: 600;
    color: var(--feedback-text-primary);
}

.experience-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.experience-pills input {
    display: none;
}

.experience-pills .pill {
    position: relative;
    cursor: pointer;
}

.experience-pills .pill > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: 1px solid var(--feedback-border);
    background: rgba(255, 255, 255, 0.45);
    color: var(--feedback-text-primary);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

:root[data-resolved-theme="dark"] .experience-pills .pill > span {
    background: rgba(24, 26, 48, 0.72);
}

.experience-pills input:checked + span {
    background: var(--feedback-accent);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -18px rgba(90, 75, 255, 0.95);
}

.field {
    display: grid;
    gap: 0.45rem;
}

.field label {
    font-weight: 600;
}

.field textarea,
.field input {
    border-radius: 1rem;
    border: 1px solid var(--feedback-border);
    background: rgba(255, 255, 255, 0.55);
    padding: 1rem 1.2rem;
    font-size: 1rem;
    color: var(--feedback-text-primary);
    transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

:root[data-resolved-theme="dark"] .field textarea,
:root[data-resolved-theme="dark"] .field input {
    background: rgba(28, 30, 50, 0.74);
}

.field textarea:focus,
.field input:focus {
    outline: none;
    border-color: rgba(90, 75, 255, 0.7);
    box-shadow: 0 0 0 4px rgba(90, 75, 255, 0.12);
    transform: translateY(-1px);
}

.grid-two {
    display: grid;
    gap: 1.2rem;
}

@media (min-width: 768px) {
    .grid-two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.slider-scale {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--feedback-text-muted);
    padding: 0 0.4rem;
}

.field-validation {
    color: #ff5a87;
    font-size: 0.85rem;
}

.validation-summary {
    color: #ff5a87;
    background: rgba(255, 90, 135, 0.08);
    border-radius: 1rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(255, 90, 135, 0.35);
}

.submit-button {
    border: none;
    border-radius: 999px;
    padding: 0.95rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    background: linear-gradient(120deg, #5a4bff 0%, #8f89ff 50%, #ff9de1 100%);
    color: white;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    align-self: start;
    box-shadow: 0 20px 30px -18px rgba(90, 75, 255, 0.9);
}

.submit-button:hover,
.submit-button:focus-visible {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 28px 45px -18px rgba(90, 75, 255, 0.95);
}

.magnetic {
    position: relative;
    will-change: transform;
}

.feedback-aside {
    padding: clamp(1.8rem, 3vw, 2.6rem);
    display: grid;
    gap: 1.5rem;
}

.feedback-aside h3 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.feedback-aside ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
    color: var(--feedback-text-muted);
}

.feedback-aside li {
    background: rgba(255, 255, 255, 0.38);
    padding: 0.85rem 1rem;
    border-radius: 1.2rem;
    border: 1px solid var(--feedback-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

:root[data-resolved-theme="dark"] .feedback-aside li {
    background: rgba(24, 24, 48, 0.75);
}

.aside-card {
    padding: 1.4rem 1.6rem;
    border-radius: 1.4rem;
    background: linear-gradient(135deg, rgba(90, 75, 255, 0.12), rgba(255, 157, 225, 0.18));
    border: 1px solid var(--feedback-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.aside-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.aside-copy {
    margin: 0;
    color: var(--feedback-text-primary);
}

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

    .feedback-theme-toggle {
        justify-self: flex-start;
    }
}

@media (max-width: 640px) {
    .feedback-page {
        padding: 2rem 1rem 4rem;
        border-radius: 1.5rem;
    }

    .feedback-hero {
        border-radius: 1.5rem;
    }

    .glass-panel {
        border-radius: 1.5rem;
    }

    .feedback-grid {
        gap: 1.2rem;
    }
}
:root {
    --color-primary: #FF6B9D;
    --color-secondary: #FFA07A;
    --color-accent: #FFD93D;
    --color-blue: #6DD5FA;
    --color-purple: #C084FC;
    --color-green: #4ADE80;

    --color-bg: #FFFBF5;
    --color-bg-alt: #FFF5E6;
    --color-surface: #FFFFFF;
    --color-text: #2D3748;
    --color-text-light: #718096;

    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

.navbar {
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-text);
    font-weight: 600;
}

.logo-icon {
    font-size: 28px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-text);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary.large {
    padding: 18px 48px;
    font-size: 18px;
}

.btn-secondary {
    background: var(--color-surface);
    color: var(--color-text);
    border: 2px solid var(--color-primary);
}

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

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

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.hero {
    padding: 80px 0;
    background: linear-to-b, var(--color-bg) 0%, var(--color-bg-alt) 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 24px;
    color: var(--color-text);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-light);
}

.stars {
    color: var(--color-accent);
    font-size: 20px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-preview {
    position: relative;
    width: 400px;
    height: 400px;
}

.book-cover {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.book-page {
    position: absolute;
    width: 280px;
    height: 360px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: flipBook 6s infinite;
}

.book-page.page-1 {
    background: linear-to-br, #FFE5EC 0%, #FFF5E6 100%;
    z-index: 3;
}

.book-page.page-2 {
    background: linear-to-br, #E0F2FF 0%, #FFF5E6 100%;
    z-index: 2;
    animation-delay: 2s;
}

.book-page.page-3 {
    background: linear-to-br, #D4F1DD 0%, #FFF5E6 100%;
    z-index: 1;
    animation-delay: 4s;
}

.illustration {
    font-size: 120px;
    margin-bottom: 20px;
}

.story-text {
    font-family: var(--font-heading);
    font-size: 24px;
    text-align: center;
    color: var(--color-text);
}

@keyframes flipBook {
    0%, 30% {
        transform: rotateY(0deg);
        opacity: 1;
    }
    40% {
        transform: rotateY(-90deg);
        opacity: 0;
    }
    90%, 100% {
        transform: rotateY(-90deg);
        opacity: 0;
    }
}

.emotional-hook {
    padding: 80px 0;
    text-align: center;
    background: var(--color-surface);
}

.emotional-hook h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.section-subtitle {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 48px 0;
}

.comparison-card {
    flex: 1;
    max-width: 320px;
}

.comparison-card.highlight {
    transform: scale(1.05);
}

.comparison-image {
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.comparison-image.after {
    background: linear-to-br, var(--color-primary) 0%, var(--color-secondary) 100%;
    color: white;
}

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

.image-placeholder .emoji {
    font-size: 80px;
    display: block;
    margin-bottom: 16px;
}

.comparison-label {
    margin-top: 16px;
    font-weight: 600;
    font-size: 18px;
}

.comparison-arrow {
    font-size: 48px;
    color: var(--color-primary);
}

.emotional-text {
    font-size: 22px;
    font-style: italic;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
}

.how-it-works {
    padding: 80px 0;
}

.how-it-works h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 64px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.step p {
    color: var(--color-text-light);
    font-size: 16px;
}

.testimonials {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.testimonials h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 64px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--color-surface);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.testimonial-card .stars {
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.testimonial-author {
    color: var(--color-text-light);
    font-weight: 600;
}

.demo-section {
    padding: 80px 0;
    background: var(--color-surface);
}

.demo-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 48px;
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.demo-input {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-input label {
    font-size: 18px;
    font-weight: 600;
}

.demo-input input {
    padding: 16px;
    border: 2px solid var(--color-text-light);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: var(--font-body);
}

.demo-input input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.demo-output {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.demo-output.active {
    opacity: 1;
}

.book-cover-preview {
    width: 100%;
    height: 400px;
    background: linear-to-br, var(--color-blue) 0%, var(--color-purple) 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-content {
    text-align: center;
    color: white;
    padding: 32px;
}

.cover-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cover-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cover-illustration {
    font-size: 80px;
}

.demo-cta-text {
    text-align: center;
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 600;
}

.demo-section .btn-primary {
    display: block;
    margin: 0 auto;
    max-width: 400px;
}

.pricing {
    padding: 80px 0;
}

.pricing h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 64px;
}

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

.pricing-card {
    background: var(--color-surface);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--color-accent);
}

.pricing-card .badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
}

.price-period {
    font-size: 18px;
    color: var(--color-text-light);
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-bg-alt);
    font-size: 16px;
}

.print-upsell {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.upsell-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.upsell-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.upsell-text p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.book-stack {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hardcover-book {
    font-size: 120px;
    animation: float 3s ease-in-out infinite;
}

.hardcover-book:nth-child(2) {
    animation-delay: 0.5s;
}

.hardcover-book:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.trust-safety {
    padding: 80px 0;
    background: var(--color-surface);
}

.trust-safety h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 64px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

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

.trust-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.trust-item p {
    color: var(--color-text-light);
    font-size: 16px;
}

.final-cta {
    padding: 100px 0;
    background: linear-to-b, var(--color-bg) 0%, var(--color-bg-alt) 100%;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--color-text-light);
}

footer {
    background: var(--color-text);
    color: white;
    padding: 64px 0 32px;
}

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

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 968px) {
    .hero-content,
    .demo-container,
    .upsell-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-title {
        font-size: 42px;
    }

    .steps,
    .testimonial-grid,
    .pricing-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .comparison {
        flex-direction: column;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }
}
