:root {
    --bg-panel: rgba(16, 21, 29, 0.78);
    --bg-panel-strong: rgba(21, 27, 37, 0.92);
    --bg-soft: rgba(255, 255, 255, 0.04);
    --line-soft: rgba(255, 196, 118, 0.16);
    --line-strong: rgba(255, 196, 118, 0.28);
    --text-main: rgba(235, 238, 242, 0.96);
    --text-soft: rgba(177, 184, 193, 0.94);
    --accent: rgba(255, 186, 88, 1);
    --accent-strong: rgba(255, 163, 52, 1);
    --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.22);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

.utility-bar {
    width: min(1160px, calc(100vw - 24px));
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.language-chooser,
.device-chooser {
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto;
    margin: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.language-chooser a,
.device-chooser a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-chooser a:hover,
.device-chooser a:hover,
.language-en .highlight-language-en,
.language-de .highlight-language-de,
.language-es .highlight-language-es,
.language-fr .highlight-language-fr,
.language-it .highlight-language-it,
.language-sv .highlight-language-sv,
.device-iPhone .highlight-device-iPhone,
.device-iPad .highlight-device-iPad {
    background: rgba(255, 186, 88, 0.18);
    color: rgba(255, 226, 184, 1);
    transform: translateY(-1px);
}

.content {
    width: min(1160px, calc(100vw - 24px));
    margin: 0 auto 80px;
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-soft);
    text-align: left;
}

.landing-page {
    display: none;
}

.language-en .for-language-en,
.language-de .for-language-de,
.language-es .for-language-es,
.language-fr .for-language-fr,
.language-it .for-language-it,
.language-sv .for-language-sv {
    display: block;
}

.landing-page > * + * {
    margin-top: 28px;
}

.hero-block,
.content-section {
    position: relative;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.hero-block::before,
.content-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 188, 82, 0.08), transparent 42%, rgba(90, 160, 255, 0.06));
    pointer-events: none;
}

.hero-block {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    grid-template-rows: auto 1fr;
    gap: 28px;
    padding: 34px;
    align-items: start;
}

.hero-copy {
    grid-column: 1;
    grid-row: 1;
}

.hero-media {
    grid-column: 2;
    grid-row: 1 / 3;
}

.hero-copy-bottom {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
}

.hero-copy,
.hero-copy-bottom,
.feature-copy,
.section-intro,
.compact-card,
.contact-card,
.pricing-panel > div {
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-kicker,
.section-eyebrow {
    margin: 0 0 10px;
    color: rgba(255, 212, 148, 0.88);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-title,
.section-title {
    margin: 0;
    color: var(--text-main);
    text-shadow: none;
    letter-spacing: -0.03em;
    text-align: left;
}

.hero-title {
    max-width: 12ch;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.04;
    font-weight: 700;
}

.hero-subtitle,
.section-text,
.contact-card p {
    margin: 16px 0 0;
    color: var(--text-soft);
    font-size: clamp(17px, 2vw, 20px);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 650;
}

.hero-actions,
.reviewer-actions,
.pricing-actions,
.footer-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions {
    margin-top: 24px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.language-chooser a,
.device-chooser a,
.cta-button,
.pdf-link,
.store-badge,
.photo-card,
.more-card,
.screen-card,
.contact-card a,
.social-link,
.legal-link {
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.language-chooser a:hover,
.device-chooser a:hover,
.cta-button:hover,
.pdf-link:hover,
.store-badge:hover,
.photo-card:hover,
.more-card:hover,
.screen-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 196, 118, 0.34);
    box-shadow: 0 14px 28px rgba(255, 169, 59, 0.16);
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: rgba(19, 16, 10, 0.96) !important;
    box-shadow: 0 14px 28px rgba(255, 169, 59, 0.2);
}

.cta-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 223, 179, 1) !important;
}

.hero-points,
.feature-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.hero-points {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-points li,
.pricing-pill,
.pitch-pill,
.language-pills span,
.reviewer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(245, 220, 182, 0.96);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.reviewer-badge {
    min-height: 52px;
    padding: 0 22px;
}

.hero-media,
.feature-media {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-media {
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-device-frame {
    position: relative;
    width: 100%;
    padding: 28px;
    border-radius: calc(var(--radius-xl) - 6px);
    background: linear-gradient(180deg, rgba(8, 12, 18, 0.96), rgba(17, 24, 33, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 54px rgba(0, 0, 0, 0.3);
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 24px;
}

.hero-brand .hero-kicker {
    margin: 0;
    font-size: clamp(36px, 4.5vw, 56px);
    letter-spacing: 0.04em;
    text-shadow: 0 0 32px rgba(255, 168, 58, 0.7), 0 0 64px rgba(255, 140, 30, 0.4);
}

.hero-icon {
    width: 128px;
    height: 128px;
    border-radius: 28px;
    display: block;
    flex-shrink: 0;
    box-shadow: 0 20px 48px rgba(255, 168, 58, 0.42), 0 6px 16px rgba(0, 0, 0, 0.38);
}

.hero-shot,
.feature-shot,
.screen-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.hero-shot,
.feature-shot,
.screen-image {
    display: none;
}

.device-iPhone .for-device-iPhone,
.device-iPad .for-device-iPad {
    display: block;
}

.device-iPad .hero-shot,
.device-iPad .feature-shot,
.device-iPad .screen-image {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.device-iPad .hero-media {
    max-width: 560px;
    margin: 0 auto;
}

.device-iPad .feature-media {
    max-width: 560px;
    margin: 0 auto;
}

.device-iPad .screen-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.device-iPhone .hero-shot,
.device-iPhone .feature-shot,
.device-iPhone .screen-image {
    aspect-ratio: 1 / 2.1;
    object-fit: cover;
}

.device-iPhone .hero-media {
    max-width: 360px;
    margin: 0 auto;
}

.device-iPhone .feature-media {
    max-width: 360px;
    margin: 0 auto;
}

.device-iPhone .screen-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hero-floating-note {
    position: static;
    display: inline-flex;
    margin-top: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 188, 88, 0.14);
    border: 1px solid rgba(255, 188, 88, 0.24);
    color: rgba(255, 223, 184, 0.96);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.content-section {
    padding: 30px;
}

.section-intro {
    max-width: 760px;
}

.difference-grid,
.compact-section,
.contact-grid,
.more-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}

.difference-grid {
    margin-top: 24px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.difference-card,
.compact-card,
.contact-card,
.photo-card,
.more-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 188, 88, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}


.difference-card {
    padding: 18px;
}

.difference-card h3,
.contact-card h3 {
    margin: 0;
    color: rgba(249, 226, 188, 0.98);
    font-size: 18px;
    font-weight: 650;
    letter-spacing: -0.01em;
    text-shadow: none;
    text-align: left;
}

.difference-card p {
    margin: 10px 0 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.45;
}

.feature-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 28px;
    align-items: center;
}

.feature-reverse {
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
}

.feature-reverse .feature-copy {
    order: 2;
}

.feature-reverse .feature-media {
    order: 1;
}

.feature-list li {
    position: relative;
    margin-top: 12px;
    padding-left: 18px;
    color: var(--text-soft);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(255, 186, 88, 0.3);
}

.preset-strip {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.preset-thumb {
    width: 100%;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.screen-grid,
.photo-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.screen-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.screen-card {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 24px;
    overflow: hidden;
}

.screen-card .screen-image {
    border-radius: 0;
}

.photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-card,
.more-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    color: inherit !important;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.photo-card:hover,
.more-card:hover,
.screen-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 196, 118, 0.34);
    box-shadow: 0 16px 32px rgba(255, 169, 59, 0.16);
}

.photo-card img,
.more-card img {
    width: 100%;
    display: block;
}

.photo-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.photo-label {
    display: inline-flex;
    margin: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(252, 232, 202, 0.98);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 190, 94, 0.09), rgba(255, 255, 255, 0.03));
}

.pricing-pills,
.language-pills {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.language-cheer {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.language-cheer span {
    display: flex;
    align-items: center;
    font-size: clamp(13px, 1.3vw, 16px);
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 12px rgba(0, 0, 0, 0.14);
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.language-cheer span:nth-child(1) {
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, #ff8a5b, #ffd35c, #fff09d);
    background-origin: border-box;
    background-clip: padding-box, text;
    -webkit-background-clip: padding-box, text;
}

.language-cheer span:nth-child(2) {
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, #ff6b7d, #d86bff, #8f7cff);
    background-origin: border-box;
    background-clip: padding-box, text;
    -webkit-background-clip: padding-box, text;
}

.language-cheer span:nth-child(3) {
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, #4dc3ff, #64e7ff, #80a1ff);
    background-origin: border-box;
    background-clip: padding-box, text;
    -webkit-background-clip: padding-box, text;
}

.language-cheer span:nth-child(4) {
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, #44e0b1, #58c8ff, #8bf0cb);
    background-origin: border-box;
    background-clip: padding-box, text;
    -webkit-background-clip: padding-box, text;
}

.language-cheer span:nth-child(5) {
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, #ff6fa8, #ff9a62, #ffd166);
    background-origin: border-box;
    background-clip: padding-box, text;
    -webkit-background-clip: padding-box, text;
}

.language-cheer span:nth-child(6) {
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, #9d74ff, #48d2c2, #7bc8ff);
    background-origin: border-box;
    background-clip: padding-box, text;
    -webkit-background-clip: padding-box, text;
}

.store-badge {
    display: inline-block;
    width: 220px;
}

.store-badge img {
    width: 100%;
    display: block;
}

.pricing-actions .appstore {
    width: 220px;
    margin: 0 auto;
}

.pricing-actions .appstore img {
    width: 100%;
    display: block;
}

.compact-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-card {
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 188, 88, 0.08), rgba(255, 255, 255, 0.03));
}

.reviewer-card {
    background: linear-gradient(135deg, rgba(255, 188, 88, 0.08), rgba(255, 255, 255, 0.03));
}

.pitch-pill {
    min-height: 52px;
    padding: 0 24px;
    font-size: 17px;
    font-weight: 650;
    letter-spacing: 0.03em;
}

.pitch-band {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid .section-intro {
    grid-column: 1 / -1;
}

.contact-card {
    padding: 22px;
}

.contact-card a,
.social-link,
.legal-link,
.more-card span {
    color: rgba(255, 211, 154, 0.98) !important;
}

.contact-card a,
.social-link,
.legal-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.contact-card a {
    margin-top: 12px;
}

.reviewer-actions .cta-button {
    margin-top: 12px;
}

.contact-card a:hover,
.social-link:hover,
.legal-link:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 188, 88, 0.18), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 196, 118, 0.34);
    box-shadow: 0 14px 28px rgba(255, 169, 59, 0.16);
    color: rgba(255, 232, 198, 1) !important;
}

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

.more-grid {
    margin-top: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.more-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.more-card:has(.app-icon) {
    align-items: stretch;
}

.more-card img.app-icon {
    width: calc(100% - 36px);
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 22%;
    object-fit: cover;
    margin: 18px auto;
    display: block;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38), 0 4px 10px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.more-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: auto;
    padding: 12px 14px 14px;
    font-weight: 650;
    text-align: center;
}

.footer-meta {
    width: 100%;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.social-link,
.legal-link {
    min-height: 42px;
}

.footer-meta .social-link {
    margin-right: auto;
}

.footer-meta .legal-link {
    margin-left: auto;
}

.print {
    color: rgba(9, 20, 21, 0.2);
}

@media (max-width: 1100px) {
    .difference-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .device-iPhone .screen-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .device-iPad .screen-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .hero-block,
    .feature-section,
    .feature-reverse,
    .pricing-panel,
    .compact-section,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy    { grid-column: 1; grid-row: 1; }
    .hero-media   { grid-column: 1; grid-row: 2; }
    .hero-copy-bottom { grid-column: 1; grid-row: 3; }

    .feature-reverse .feature-copy,
    .feature-reverse .feature-media {
        order: initial;
    }

    .difference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .device-iPhone .screen-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .device-iPad .screen-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .photo-grid,
    .more-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-block,
    .content-section {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .content {
        width: calc(100vw - 18px);
        margin-bottom: 52px;
        font-size: 16px;
    }

    .utility-bar {
        width: calc(100vw - 18px);
        margin-bottom: 18px;
        justify-content: center;
    }

    .language-chooser,
    .device-chooser {
        justify-content: center;
        width: 100%;
    }

    .language-chooser a,
    .device-chooser a {
        min-width: 0;
        flex: 1 1 auto;
        padding: 8px 10px;
        font-size: 13px;
    }

    .hero-title {
        max-width: none;
        font-size: 34px;
    }

    .hero-subtitle,
    .section-text,
    .contact-card p {
        font-size: 16px;
    }

    .language-cheer {
        grid-template-columns: 1fr;
    }

    .language-cheer span {
        font-size: 14px;
    }

    .difference-grid,
    .photo-grid,
    .more-grid {
        grid-template-columns: 1fr;
    }

    .device-iPhone .screen-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .device-iPad .screen-grid {
        grid-template-columns: 1fr;
    }

    .preset-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-block,
    .content-section,
    .compact-card,
    .contact-card {
        padding: 18px;
    }

    .hero-actions,
    .reviewer-actions,
    .pricing-actions,
    .footer-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button,
    .social-link,
    .legal-link,
    .store-badge {
        width: 100%;
    }

    .footer-meta .social-link,
    .footer-meta .legal-link {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-floating-note {
        margin-top: 14px;
    }
}
