/**
 * Boundless Books - Marketing Website Styles
 */

:root {
    --color-primary: #6366f1;
    --color-primary-dark: #4f46e5;
    --color-secondary: #f59e0b;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-bg: #ffffff;
    --color-bg-alt: #f9fafb;
    --color-border: #e5e7eb;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width: 1200px;
    --spacing: 1rem;
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

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

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn--block {
    display: block;
    width: 100%;
}

/* Header */
.site-header {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.site-header__logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.site-header__nav .nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

/* Stacked multilingual nav links */
.nav-link--stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.2;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
}

.nav-link--stacked:hover {
    color: var(--color-primary);
    background-color: rgba(79, 70, 229, 0.05);
}

.nav-link--stacked span {
    display: block;
}

.nav-link--stacked span[lang="es"],
.nav-link--stacked span[lang="fr"] {
    font-size: 0.75em;
    opacity: 0.7;
}

.site-header__nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
}

.site-header__nav a:hover {
    color: var(--color-primary);
}

.site-header__actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Icon-only buttons */
.btn--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text);
    transition: all 0.2s;
}

.btn--icon:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn--icon.btn--primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.btn--icon.btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn--icon svg {
    width: 20px;
    height: 20px;
}

.site-header__mobile-toggle {
    display: none;
}

/* Hero */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #e0e7ff 100%);
}

/* Hero row layout: 75% text + 25% figure using fr units */
.hero__row {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

/* Reverse layout for Spanish: 25% figure + 75% text */
.hero__row--reverse {
    grid-template-columns: 1fr 3fr;
}

/* Hero figure container */
.hero__figure {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

/* Flip figure to face the text (180 degree horizontal flip) */
.hero__figure--flip {
    transform: scaleX(-1);
}

.hero__title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Hero text blocks */
.hero__text-block .hero__title {
    margin-bottom: 0.5rem;
}

.hero__text-block .hero__subtitle {
    margin-bottom: 0;
}

/* Museum-style: secondary language rows smaller and lighter */
.hero__row[lang="es"],
.hero__row[lang="fr"] {
    opacity: 0.75;
}

.hero__row[lang="es"] .hero__title,
.hero__row[lang="fr"] .hero__title {
    font-size: 2rem;
}

.hero__row[lang="es"] .hero__subtitle,
.hero__row[lang="fr"] .hero__subtitle {
    font-size: 1.25rem;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    clear: both;
}

/* Section */
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Features */
.features-preview,
.features-detail {
    padding: 5rem 0;
}

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

.feature-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--color-text-light);
}

/* Feature Rows */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-row--reverse {
    direction: rtl;
}

.feature-row--reverse > * {
    direction: ltr;
}

.feature-row h2 {
    margin-bottom: 1rem;
}

.feature-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
}

.step__number {
    width: 3rem;
    height: 3rem;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn--primary {
    background: white;
    color: var(--color-primary);
}

/* Pricing */
.pricing-section {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.pricing-card--highlighted {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card__name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card__price {
    margin-bottom: 1rem;
}

.pricing-card__amount {
    font-size: 2.5rem;
    font-weight: 700;
}

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

.pricing-card__description {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.pricing-card__features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card__features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.pricing-card__features li::before {
    content: "✓";
    color: var(--color-primary);
    margin-right: 0.5rem;
}

.pricing-note {
    text-align: center;
    color: var(--color-text-light);
    margin-top: 2rem;
}

/* FAQ */
.faq-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

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

.faq-item {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.faq-item summary {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
}

.faq-item p {
    margin: 0 1.5rem 1rem 2.5rem;
    padding: 0.75rem 0 0 1rem;
    color: var(--color-text-light);
    border-left: 2px solid var(--color-border);
    font-size: 0.95rem;
}

/* Page Header */
.page-header {
    padding: 4rem 0;
    background: var(--color-bg-alt);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header__title--smaller {
    font-size: 2rem;
}

.page-header p {
    color: var(--color-text-light);
}

/* Legal */
.legal-content {
    padding: 4rem 0;
}

.legal-article {
    max-width: 800px;
    margin: 0 auto;
}

.legal-article h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-article h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-article p,
.legal-article ul {
    margin-bottom: 1rem;
}

.legal-article ul {
    padding-left: 1.5rem;
}

/* About */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Support */
.support-section {
    padding: 4rem 0;
}

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

.support-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.support-card--featured {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    border-color: var(--color-primary);
}

.support-card--educators {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
}

.support-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-card h2 {
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.support-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.support-benefits li {
    padding-left: 1.5rem;
    position: relative;
}

.support-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

.support-section__subtitle {
    text-align: center;
    margin-bottom: 1rem;
}

.support-section__note {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.contact-card__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.contact-card__value {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card__value a {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-card__value a:hover {
    text-decoration: underline;
}

.contact-card__value address {
    font-style: normal;
    line-height: 1.5;
}

.contact-card__detail {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.contact-card__note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Educators - constrain text sections but not grids */
.educators-intro,
.classroom-features,
.pricing-educators > h2,
.compliance-section > h2 {
    max-width: 800px;
}

.educators-intro {
    margin-bottom: 3rem;
}

.classroom-features > h2,
.pricing-educators > h2,
.compliance-section > h2 {
    margin-bottom: 2rem;
}

.classroom-features .feature-row {
    max-width: 800px;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

/* Footer */
.site-footer {
    background: var(--color-text);
    color: white;
    padding: 4rem 0 2rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

.site-footer__logo {
    font-size: 1.25rem;
    font-weight: 700;
}

.site-footer__tagline {
    margin-top: 0.5rem;
    opacity: 0.7;
}

.site-footer__copyright {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

.site-footer__links h4 {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.7;
}

.site-footer__links ul {
    list-style: none;
}

.site-footer__links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.site-footer__links a:hover {
    opacity: 1;
}

.site-footer__apps h4 {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.7;
}

.app-badge {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.site-footer__apps-link {
    display: block;
    margin-top: 1rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.site-footer__apps-link:hover {
    opacity: 1;
}

/* ============================================
   Humaaans Illustration System
   Mix-and-match SVG illustrations by Pablo Stanley
   https://humaaans.com/
   ============================================ */

/* Container for stacked figure */
.humaaan {
    position: relative;
    display: inline-block;
}

/* Default sizes */
.humaaan--sm { width: 120px; height: 180px; }
.humaaan--md { width: 200px; height: 300px; }
.humaaan--lg { width: 280px; height: 420px; }
.humaaan--xl { width: 400px; height: 600px; }

.humaaan--flip {
    transform: scaleX(-1);
}

/* Each layer is absolutely positioned */
.humaaan__layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Layer stacking order */
.humaaan__scene { z-index: 1; }
.humaaan__bottom { z-index: 2; }
.humaaan__body { z-index: 3; }
.humaaan__head { z-index: 4; }
.humaaan__object { z-index: 5; }

/* SVG inside layers should fill container */
.humaaan__layer img,
.humaaan__layer svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

/* Pre-composed figure (single SVG) */
.humaaan--precomposed img,
.humaaan--precomposed svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Scene layout helpers */
.humaaan-scene {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
}

.humaaan-scene--spread {
    justify-content: space-around;
}

.humaaan-scene--left {
    justify-content: flex-start;
}

.humaaan-scene--right {
    justify-content: flex-end;
}

/* Feature row illustration container */
.feature-row__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* Flip figure to face text in normal rows (text left, figure right) */
.feature-row:not(.feature-row--reverse) .feature-row__image {
    transform: scaleX(-1);
}

/* Hero illustration container */
.hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Highlighted feature card */
.feature-card--highlight {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-color: var(--color-primary);
}

/* Lifetime readers section highlight */
.features-detail--highlight {
    background: linear-gradient(180deg, var(--color-bg) 0%, #f0f4ff 100%);
}

.features-detail--highlight .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.features-detail--highlight .section-title {
    color: var(--color-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

/* ============================================
   Multilingual Museum-Style Typography
   Primary (EN): Bold · Secondary (ES): Normal · Tertiary (FR): Italic
   ============================================ */

/* Container for multilingual content */
.multilingual {
    display: block;
}

.multilingual--stacked {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
}

.multilingual--inline {
    display: inline;
}

.multilingual--inline-text {
    display: inline;
}

/* Individual language text elements */
.multilingual__text {
    display: block;
}

.multilingual__text--primary {
    /* Primary language is prominent */
}

.multilingual__text--secondary {
    /* Secondary languages are smaller */
    font-size: 0.85em;
    opacity: 0.85;
}

/* Museum-style language differentiation by lang attribute */
/* English: Bold/Heavy - Primary, stands out */
[lang="en"] {
    font-weight: 700;
}

/* Spanish: Normal/Light - Easy to follow */
[lang="es"] {
    font-weight: 400;
}

/* French: Italic - Distinguished alternate */
[lang="fr"] {
    font-style: italic;
    font-weight: 400;
}

/* Inline separator styling */
.multilingual--inline-text [lang] {
    display: inline;
}

.multilingual--inline-text [lang="es"],
.multilingual--inline-text [lang="fr"] {
    opacity: 0.8;
}

/* Line break between languages in stacked mode */
.multilingual--stacked .multilingual__text::after {
    content: "";
    display: block;
}

/* Hero title specific - larger language gap */
.hero__title .multilingual--stacked {
    gap: 0.35em;
}

.hero__title .multilingual__text--secondary {
    font-size: 0.75em;
}

/* Page header titles */
.page-header .multilingual--stacked {
    gap: 0.3em;
}

.page-header .multilingual__text--secondary {
    font-size: 0.8em;
}

/* Feature card multilingual */
.feature-card .multilingual__text--secondary {
    font-size: 0.8em;
}

/* Button/nav multilingual - keep compact */
.btn .multilingual--inline-text,
.nav-list .multilingual--inline-text {
    font-size: inherit;
}

.btn .multilingual--inline-text [lang="es"],
.btn .multilingual--inline-text [lang="fr"],
.nav-list .multilingual--inline-text [lang="es"],
.nav-list .multilingual--inline-text [lang="fr"] {
    font-size: 0.9em;
}

/* Footer multilingual specific */
.site-footer .multilingual__text--secondary {
    font-size: 0.9em;
}

/* ============================================
   Footer Language Sections
   Three distinct footer blocks for each language
   ============================================ */

.site-footer__lang-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.site-footer__lang-section {
    opacity: 0.9;
}

.site-footer__lang-section[lang="en"] {
    opacity: 1;
}

.site-footer__lang-section[lang="es"],
.site-footer__lang-section[lang="fr"] {
    opacity: 0.75;
    font-size: 0.95em;
}

.site-footer__lang-section[lang="fr"] {
    font-style: italic;
}

.site-footer__lang-section h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

/* ============================================
   Apps Showcase Page
   ============================================ */

.apps-section {
    padding: 4rem 0;
}

.apps-section__subtitle {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.app-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.app-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.app-card--featured {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    border-color: var(--color-primary);
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem;
}

.app-card__icon {
    font-size: 4rem;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-card--featured .app-card__icon {
    width: 100px;
    height: 100px;
    font-size: 5rem;
}

.app-card__icon--books {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.app-card__icon--dressup {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
}

.app-card__icon--magnets {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.app-card__icon--sparks {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.app-card__content {
    flex: 1;
}

.app-card__badge {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.app-card__title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.app-card--featured .app-card__title {
    font-size: 2rem;
}

.app-card__tagline {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.app-card__description {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.app-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.app-card__features li {
    font-size: 0.9rem;
    color: var(--color-text);
    padding-left: 1.5rem;
    position: relative;
}

.app-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

.app-card__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn__icon {
    margin-right: 0.5rem;
}

/* Quote Row (About page) */
.quote-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.quote-row .quote {
    flex: 1;
}

.quote-row__image {
    flex-shrink: 0;
}

/* CTA Section with Image */
.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

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

.cta-image {
    flex-shrink: 0;
}

/* Support Card with Image */
.support-card--with-image {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.support-card__main {
    flex: 1;
}

.support-card__image {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero__row,
    .hero__row--reverse {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero__figure {
        order: -1;
        max-width: 150px;
        margin: 0 auto;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-header__nav,
    .site-header__actions {
        display: none;
    }

    .site-header__mobile-toggle {
        display: block;
    }

    .app-card--featured {
        flex-direction: column;
        padding: 2rem;
    }

    .app-card__features {
        grid-template-columns: 1fr;
    }

    .apps-grid {
        grid-template-columns: 1fr;
    }

    .quote-row {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        flex-direction: column;
    }

    .support-card--with-image {
        flex-direction: column;
    }
}
