:root {
    --bg: #f3efe6;
    --surface: #fffaf3;
    --surface-soft: rgba(255, 250, 243, 0.72);
    --surface-muted: #f0e8db;
    --text: #17332d;
    --muted: #5b7068;
    --line: rgba(23, 51, 45, 0.12);
    --accent: #e67a33;
    --accent-deep: #c95f1c;
    --accent-soft: #f4d2b6;
    --shadow: 0 26px 70px rgba(29, 54, 47, 0.12);
    --shadow-soft: 0 14px 38px rgba(29, 54, 47, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: "Manrope", sans-serif;
    background:
        linear-gradient(180deg, rgba(252, 247, 240, 0.74), rgba(243, 236, 223, 0.8)),
        url("/images/background.png"),
        radial-gradient(circle at top left, rgba(230, 122, 51, 0.12), transparent 30%),
        radial-gradient(circle at 80% 12%, rgba(73, 113, 98, 0.12), transparent 26%),
        linear-gradient(180deg, #fbf7ef 0%, #f2ecdf 100%);
    background-position: center, center top, 0 0, 80% 12%, 0 0;
    background-size: cover, cover, auto, auto, auto;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
    background-attachment: fixed, fixed, scroll, scroll, scroll;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 75%);
    opacity: 0.85;
}

.page-glow {
    position: fixed;
    z-index: 0;
    border-radius: 999px;
    filter: blur(24px);
    pointer-events: none;
    opacity: 0.7;
}

.page-glow-one {
    top: 80px;
    left: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(230, 122, 51, 0.16), transparent 68%);
}

.page-glow-two {
    top: 320px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(89, 130, 116, 0.14), transparent 70%);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.page-shell {
    position: relative;
    z-index: 1;
    width: min(1680px, calc(100% - 16px));
    margin: 0 auto;
    padding: 18px 0 92px;
}

.site-footer {
    padding: 28px 8px 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 12px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px 30px;
    flex-wrap: wrap;
    padding: 18px 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 251, 245, 0.72);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 88px;
    height: auto;
    display: block;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong,
.hero h1,
.section-intro h2,
.panel-head h3,
.info-block h3,
.about-side h3 {
    font-family: "Sora", sans-serif;
}

.brand-copy strong {
    font-size: 1rem;
}

.brand-copy small {
    font-size: 0.66rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: var(--muted);
}

.locale-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-inline-start: auto;
}

.locale-select {
    min-width: 148px;
    padding: 10px 36px 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(23, 51, 45, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 241, 232, 0.82));
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    appearance: none;
    -webkit-appearance: none;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 241, 232, 0.82)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%2317332d' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, calc(100% - 14px) 50%;
    background-size: auto, 12px;
}

.locale-select:focus {
    outline: 2px solid rgba(230, 122, 51, 0.18);
    border-color: rgba(230, 122, 51, 0.28);
}

.site-nav a:hover,
.nav-login {
    color: var(--text);
}

.nav-login {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 241, 232, 0.72));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
    gap: 44px;
    align-items: start;
    padding: 58px 0 30px;
}

.visual-showcase {
    display: grid;
    gap: 16px;
    margin-top: 18px;
    align-items: stretch;
}

.accordion-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    min-height: 540px;
}

.accordion-panel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.45);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.accordion-panel img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    object-position: center;
    transition: transform 220ms ease, filter 220ms ease;
}

.accordion-strip:hover .accordion-panel img {
    filter: saturate(0.95) brightness(0.92);
}

.accordion-strip .accordion-panel:hover img {
    transform: scale(1.04);
    filter: saturate(1) brightness(1);
}

.accordion-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(24, 36, 31, 0.12);
}

.accordion-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 18px;
    background: linear-gradient(180deg, transparent, rgba(14, 30, 27, 0.88));
    color: #fff8f1;
}

.accordion-overlay strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 0.98rem;
}

.accordion-overlay span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 248, 241, 0.78);
    font-size: 0.82rem;
}

.section-label,
.card-kicker,
.summary-grid span {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #a55d2d;
}

.panel-head .card-kicker {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(230, 122, 51, 0.16);
    background: rgba(230, 122, 51, 0.08);
    letter-spacing: 0.08em;
}

.hero h1,
.section-intro h2 {
    margin: 12px 0 0;
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.hero h1 {
    max-width: 18ch;
    font-size: clamp(1.9rem, 3.4vw, 3.25rem);
    font-weight: 700;
}

.lead,
.section-text,
.solution-panel p,
.product-highlight p,
.info-block p,
.about-main p,
.about-side p,
.intro-band p,
.feature-list li,
.contact-form label span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

.lead {
    max-width: 68ch;
    margin: 18px 0 0;
}

.hero-ribbon {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.hero-ribbon span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(23, 51, 45, 0.1);
    background: rgba(255, 255, 255, 0.56);
    color: var(--text);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 700;
}

.button-primary {
    color: #fff8f1;
    background: linear-gradient(140deg, var(--accent), var(--accent-deep));
    box-shadow: 0 14px 30px rgba(230, 122, 51, 0.22);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
}

.hero-summary,
.section-frame,
.intro-band,
.muted-section {
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 248, 239, 0.34)),
        var(--surface-soft);
    box-shadow: var(--shadow);
}

.hero-summary {
    padding: 24px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(18, 43, 40, 0.96), rgba(33, 66, 61, 0.92)),
        rgba(255, 251, 245, 0.72);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 58px rgba(18, 32, 30, 0.18);
}

.hero-summary::before,
.section-frame::before,
.intro-band::before,
.muted-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 38%);
}

.hero-summary::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px auto;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(230, 122, 51, 0.28), transparent 65%);
    pointer-events: none;
}

.summary-card,
.summary-grid,
.hero-note,
.section-intro,
.solution-stack,
.product-layout,
.about-layout,
.principle-grid,
.contact-layout,
.intro-band article {
    position: relative;
    z-index: 1;
}

.summary-card {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.summary-card-simple {
    padding-bottom: 0;
    border-bottom: 0;
}

.summary-card-simple p {
    margin: 10px 0 0;
    color: rgba(255, 248, 241, 0.8);
    line-height: 1.75;
}

.summary-card-simple .plain-list li {
    color: rgba(255, 248, 241, 0.86);
}

.plain-list,
.feature-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.plain-list li,
.feature-list li {
    position: relative;
    padding-left: 18px;
}

.plain-list li::before,
.feature-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
}

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

.summary-grid article {
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 240, 230, 0.58));
    border: 1px solid rgba(23, 51, 45, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.summary-grid strong {
    display: block;
    margin-top: 8px;
    font-size: 0.92rem;
    line-height: 1.4;
}

.hero-note {
    margin-top: 16px;
    padding: 16px 18px 0;
    border-top: 1px solid var(--line);
}

.hero-note strong {
    display: block;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}

.hero-note p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.intro-band {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 26px 28px;
    border-radius: 30px;
}

.intro-band article {
    padding: 10px 14px;
    border-right: 1px solid rgba(23, 51, 45, 0.08);
}

.intro-band p {
    margin: 10px 0 0;
}

.intro-band article:last-child {
    border-right: 0;
}

.content-section {
    margin-top: 26px;
}

.section-frame,
.muted-section {
    position: relative;
    padding: 30px;
    border-radius: 34px;
}

.section-intro {
    width: 100%;
    max-width: none;
}

.section-intro.narrow {
    max-width: 720px;
}

.section-intro h2 {
    font-size: clamp(1.9rem, 3vw, 3rem);
    max-width: 100%;
}

.section-text {
    margin: 16px 0 0;
}

.section-intro .section-text + .section-text {
    margin-top: 10px;
}

.solution-stack {
    display: grid;
    gap: 22px;
    margin-top: 20px;
}

.solution-panel,
.product-highlight,
.info-block,
.about-main,
.about-side,
.contact-panel,
.form-panel {
    padding: 26px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 239, 229, 0.6));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 14px 28px rgba(29, 54, 47, 0.05);
}

.solution-panel-split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 22px;
    align-items: center;
}

.solution-panel-copy {
    min-width: 0;
}

.solution-panel-visual {
    min-height: 100%;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(23, 51, 45, 0.08);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.solution-panel-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: center;
}

.panel-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

[dir="rtl"] .site-header,
[dir="rtl"] .site-nav,
[dir="rtl"] .locale-nav,
[dir="rtl"] .hero,
[dir="rtl"] .hero-actions,
[dir="rtl"] .hero-ribbon,
[dir="rtl"] .panel-head,
[dir="rtl"] .product-layout,
[dir="rtl"] .about-layout,
[dir="rtl"] .contact-layout {
    direction: rtl;
}

[dir="rtl"] .plain-list li,
[dir="rtl"] .feature-list li {
    padding-left: 0;
    padding-right: 18px;
}

[dir="rtl"] .plain-list li::before,
[dir="rtl"] .feature-list li::before {
    left: auto;
    right: 0;
}

.panel-head h3,
.info-block h3,
.about-side h3 {
    margin: 0;
    font-size: 1rem;
}

.solution-panel p,
.product-highlight p,
.about-side p {
    margin: 14px 0 0;
}

.feature-list-title {
    display: block;
    margin-top: 18px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
}

.product-layout,
.about-layout,
.contact-layout {
    display: grid;
    gap: 22px;
    margin-top: 20px;
}

.product-layout {
    grid-template-columns: 1fr 1fr;
}

.product-columns {
    display: grid;
    gap: 22px;
}

.accent-block {
    background: linear-gradient(180deg, rgba(253, 239, 226, 0.88), rgba(255, 249, 242, 0.88));
}

.about-layout {
    grid-template-columns: 1fr;
    align-items: stretch;
}

.about-main {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(241, 235, 224, 0.7));
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-content: start;
    min-height: 100%;
}

.about-side {
    min-height: 100%;
}

.info-block p,
.contact-panel .feature-list,
.form-panel .contact-form {
    margin-top: 0;
}

.about-main p {
    margin: 0;
    padding: 24px 26px;
    border-radius: 22px;
    border: 1px solid rgba(23, 51, 45, 0.08);
    background: rgba(255, 255, 255, 0.56);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    min-height: 100%;
    font-size: 1rem;
    line-height: 1.9;
}

.about-main p + p {
    margin-top: 0;
}

.about-main p:not(:first-child) {
    margin: 0;
}

.principle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 22px;
}

.muted-section {
    background: rgba(240, 232, 220, 0.72);
}

.contact-layout {
    grid-template-columns: 0.8fr 1.2fr;
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(23, 51, 45, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    resize: vertical;
    box-shadow: inset 0 1px 2px rgba(23, 51, 45, 0.04);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(230, 122, 51, 0.18);
    border-color: rgba(230, 122, 51, 0.42);
}

.store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 182px;
    padding: 9px 13px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #1b1b1b, #0f0f0f);
    color: #fff;
    box-shadow: 0 10px 20px rgba(18, 18, 18, 0.14);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.store-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(18, 18, 18, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.store-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    color: #fff;
}

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

.store-badge-svg-apple {
    width: 92%;
    height: 92%;
}

.store-badge-copy {
    display: grid;
    gap: 2px;
}

.store-badge-copy small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.53rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.store-badge-copy strong {
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.05;
}

.form-success {
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(89, 130, 116, 0.12);
    border: 1px solid rgba(89, 130, 116, 0.18);
    color: var(--text);
    font-size: 0.9rem;
}

.form-errors {
    display: grid;
    gap: 8px;
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(198, 72, 72, 0.1);
    border: 1px solid rgba(198, 72, 72, 0.18);
    color: #7d2f2f;
    font-size: 0.9rem;
}

.form-errors p {
    margin: 0;
}

@media (max-width: 1040px) {
    .hero,
    .visual-showcase,
    .intro-band,
    .product-layout,
    .principle-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .site-header {
        position: static;
    }

    .accordion-strip {
        min-height: 380px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow-x: auto;
    }

    .accordion-panel img {
        min-height: 380px;
    }
}

@media (max-width: 720px) {
    .page-shell {
        width: min(100% - 18px, 1180px);
        padding-top: 14px;
    }

    .site-header,
    .hero-summary,
    .section-frame,
    .muted-section {
        border-radius: 22px;
    }

    .site-header {
        padding: 16px;
    }

    .locale-nav {
        width: 100%;
        margin-inline-start: 0;
    }

    .locale-select {
        width: 100%;
    }

    .brand-logo {
        width: 72px;
    }

    .hero {
        padding-top: 26px;
    }

    .accordion-strip {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .accordion-panel img {
        min-height: 280px;
    }

    .hero-ribbon {
        margin-top: 18px;
    }

    .hero h1 {
        max-width: none;
        font-size: 2rem;
    }

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

    .button {
        width: 100%;
    }

    .store-links {
        flex-direction: column;
    }

    .store-badge {
        width: 100%;
    }

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

    .intro-band article {
        border-right: 0;
        border-bottom: 1px solid rgba(23, 51, 45, 0.08);
        padding: 0 0 14px;
    }

    .intro-band article:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .section-frame,
    .muted-section {
        padding: 22px 18px;
    }

    .solution-panel,
    .product-highlight,
    .info-block,
    .about-main,
    .about-side,
    .contact-panel,
    .form-panel {
        padding: 20px;
    }

    .solution-panel-split {
        grid-template-columns: 1fr;
    }

    .solution-panel-visual img {
        min-height: 240px;
    }
}
