:root {
    color-scheme: dark;
    --bg: #0b0b0c;
    --bg-soft: #121214;
    --panel: rgba(255, 255, 255, 0.055);
    --panel-strong: rgba(255, 255, 255, 0.09);
    --text: #f7f3ee;
    --muted: #a49f99;
    --faint: #5f5a55;
    --line: rgba(255, 255, 255, 0.13);
    --accent: #ff4d2e;
    --accent-2: #ffb45f;
    --accent-3: #7c5cff;
    --shadow: rgba(0, 0, 0, 0.42);
}

[data-theme="light"] {
    color-scheme: light;
    --bg: #f4efe8;
    --bg-soft: #fffaf2;
    --panel: rgba(255, 255, 255, 0.64);
    --panel-strong: rgba(255, 255, 255, 0.82);
    --text: #171414;
    --muted: #665f59;
    --faint: #978d83;
    --line: rgba(28, 23, 20, 0.13);
    --accent: #e83d1e;
    --accent-2: #b76924;
    --accent-3: #6045d8;
    --shadow: rgba(83, 59, 37, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 78% 18%, color-mix(in srgb, var(--accent) 32%, transparent), transparent 25rem),
        radial-gradient(circle at 28% 16%, color-mix(in srgb, var(--accent-3) 22%, transparent), transparent 22rem),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
    color: var(--text);
}

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

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.075;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 5px 5px;
    mix-blend-mode: overlay;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 24px clamp(22px, 4vw, 64px);
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

.site-header.is-scrolled {
    padding-top: 14px;
    padding-bottom: 14px;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.theme-toggle {
    position: relative;
    z-index: 1;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 850;
    font-size: 22px;
    letter-spacing: 0;
}

.brand-logo {
    width: 42px;
    height: 42px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 16px 35px color-mix(in srgb, var(--accent) 34%, transparent);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 34px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}

.site-header nav a {
    transition: color 0.2s ease;
}

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

.nav-mega {
    position: relative;
}

.nav-mega::after {
    content: "";
    position: fixed;
    top: 50px;
    left: clamp(22px, 4vw, 64px);
    right: clamp(22px, 4vw, 64px);
    height: 52px;
    display: none;
}

.nav-mega:hover::after,
.nav-mega.is-open::after {
    display: block;
}

.nav-mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-mega-chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.nav-mega:hover .nav-mega-chevron,
.nav-mega.is-open .nav-mega-chevron {
    transform: rotate(225deg) translateY(-1px);
}

.nav-mega-panel {
    position: fixed;
    top: 68px;
    left: clamp(22px, 4vw, 64px);
    right: clamp(22px, 4vw, 64px);
    z-index: 45;
    padding: 32px;
    border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
    border-radius: 28px;
    color: #121212;
    background: color-mix(in srgb, #ffffff 94%, var(--bg));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-header.is-scrolled .nav-mega-panel {
    top: 62px;
}

.nav-mega:hover .nav-mega-panel,
.nav-mega:focus-within .nav-mega-panel,
.nav-mega.is-open .nav-mega-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.site-header nav .nav-feature-card {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
    border: 1px solid #d6d6d6;
    border-radius: 24px;
    color: #111111;
    background: #ffffff;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header nav .nav-feature-card:hover {
    color: #111111;
    border-color: var(--accent);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.nav-feature-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    position: relative;
}

.nav-feature-icon::before {
    content: "";
    width: 16px;
    height: 11px;
    border: 2px solid #ffffff;
    border-radius: 4px;
}

.nav-feature-icon::after {
    content: "";
    position: absolute;
}

.nav-feature-toplu-mesaj .nav-feature-icon::before {
    width: 16px;
    height: 11px;
    border-radius: 4px;
}

.nav-feature-toplu-mesaj .nav-feature-icon::after {
    width: 7px;
    height: 2px;
    left: 11px;
    top: 15px;
    background: #ffffff;
    box-shadow: 0 -4px 0 #ffffff;
}

.nav-feature-grup-sohbeti .nav-feature-icon::before {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    box-shadow: 7px 2px 0 -2px #ffffff, -7px 2px 0 -2px #ffffff;
}

.nav-feature-grup-sohbeti .nav-feature-icon::after {
    width: 18px;
    height: 6px;
    bottom: 7px;
    border: 2px solid #ffffff;
    border-top: 0;
    border-radius: 0 0 9px 9px;
}

.nav-feature-anket .nav-feature-icon::before {
    width: 3px;
    height: 14px;
    border: 0;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: -6px 5px 0 #ffffff, 6px -3px 0 #ffffff;
}

.nav-feature-duyurular .nav-feature-icon::before {
    width: 13px;
    height: 10px;
    border-radius: 2px 8px 8px 2px;
    transform: skewX(-12deg);
}

.nav-feature-duyurular .nav-feature-icon::after {
    width: 7px;
    height: 8px;
    left: 9px;
    bottom: 6px;
    border-left: 2px solid #ffffff;
    transform: rotate(-18deg);
}

.nav-feature-arama .nav-feature-icon::before {
    width: 16px;
    height: 16px;
    border: 0;
    border-left: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    border-radius: 3px 0 3px 10px;
    transform: rotate(-45deg);
}

.nav-feature-acil-durum .nav-feature-icon::before {
    width: 16px;
    height: 16px;
    border: 0;
    background:
        linear-gradient(#ffffff, #ffffff) center / 4px 16px no-repeat,
        linear-gradient(#ffffff, #ffffff) center / 16px 4px no-repeat;
}

.nav-feature-raporlar .nav-feature-icon::before {
    width: 18px;
    height: 14px;
    border: 0;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    border-radius: 0;
}

.nav-feature-raporlar .nav-feature-icon::after {
    width: 4px;
    height: 12px;
    left: 11px;
    bottom: 9px;
    background: #ffffff;
    box-shadow: 6px -5px 0 #ffffff, 12px 2px 0 #ffffff;
}

.nav-feature-veri-guvenligi .nav-feature-icon::before {
    width: 14px;
    height: 11px;
    margin-top: 5px;
    border-radius: 3px;
}

.nav-feature-veri-guvenligi .nav-feature-icon::after {
    width: 11px;
    height: 9px;
    top: 7px;
    border: 2px solid #ffffff;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.nav-feature-card strong {
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: 0;
}

.nav-feature-card small {
    max-width: 26ch;
    color: #303030;
    font-size: 15px;
    line-height: 1.42;
    font-weight: 500;
}

.nav-feature-arrow {
    margin-top: auto;
    font-size: 20px;
}

.menu-toggle,
.menu-backdrop {
    display: none;
}

.menu-toggle {
    justify-self: end;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: color-mix(in srgb, var(--text) 78%, transparent);
    cursor: pointer;
    position: relative;
    z-index: 65;
    place-items: center;
    padding: 0;
    box-shadow: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.menu-toggle:hover {
    background: color-mix(in srgb, var(--panel) 62%, transparent);
    color: var(--text);
}

.menu-icon {
    width: 22px;
    height: 22px;
}

.menu-line {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
    transition: transform 0.24s ease;
    transform-origin: 12px 12px;
}

body.menu-open .menu-line-top {
    transform: translateY(4px) rotate(45deg);
}

body.menu-open .menu-line-bottom {
    transform: translateY(-4px) rotate(-45deg);
}

.menu-toggle > span {
    width: 17px;
    height: 1.4px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle > span + span {
    margin-top: 5px;
}

.menu-toggle > span:nth-child(2) {
    display: none;
}

body.menu-open .menu-toggle > span:nth-child(1) {
    transform: translateY(3.2px) rotate(45deg);
}

body.menu-open .menu-toggle > span:nth-child(3) {
    transform: translateY(-3.2px) rotate(-45deg);
}

.theme-toggle {
    justify-self: end;
    width: 58px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: color-mix(in srgb, var(--panel) 82%, transparent);
    cursor: pointer;
    backdrop-filter: blur(12px);
    padding: 0;
}

.theme-toggle::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    transition: transform 0.28s ease;
    z-index: 1;
}

[data-theme="light"] .theme-toggle::after {
    transform: translateX(26px);
}

.sun,
.moon {
    position: absolute;
    top: 7px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    display: grid;
    place-items: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.sun {
    left: 7px;
    background: transparent;
    box-shadow: none;
    color: #fff7c8;
}

.sun:empty::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow:
        0 -5px 0 -3px currentColor,
        0 5px 0 -3px currentColor,
        -5px 0 0 -3px currentColor,
        5px 0 0 -3px currentColor;
}

.sun:empty::after {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    opacity: 0.45;
}

.moon {
    right: 7px;
    background: transparent;
    border: 0;
    color: color-mix(in srgb, var(--text) 72%, transparent);
    transform: none;
}

.moon:empty::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: -3px 0 0 0 currentColor;
    transform: translateX(3px);
}

.sun svg,
.moon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.sun svg circle {
    fill: currentColor;
    stroke: none;
}

[data-theme="light"] .moon {
    color: #fff7f0;
}

.section {
    width: min(1320px, calc(100% - 44px));
    margin-inline: auto;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    align-items: center;
    gap: clamp(40px, 7vw, 110px);
    padding-top: 116px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px;
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0;
}

.eyebrow::before {
    content: "";
    width: 44px;
    height: 1px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 28px;
    font-size: clamp(58px, 7.6vw, 118px);
    line-height: 0.88;
    letter-spacing: 0;
    font-weight: 850;
    max-width: 820px;
}

h1 span {
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 500;
}

.hero-lead {
    max-width: 650px;
    color: var(--muted);
    font-size: clamp(18px, 1.55vw, 23px);
    line-height: 1.55;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 22px 0 28px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 16px;
    font-weight: 850;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--accent);
}

.button-primary {
    color: #171414;
    background: #fff;
}

[data-theme="light"] .button-primary {
    color: #fff;
    background: #171414;
}

.button-ghost {
    background: var(--panel);
}

.button:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
}

.hero-stage {
    position: relative;
    min-height: 680px;
    display: grid;
    place-items: center;
    perspective: 1200px;
}

.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(0.5px);
    opacity: 0.68;
}

.aurora-one {
    width: 570px;
    height: 570px;
    background:
        linear-gradient(135deg, transparent 0 34%, color-mix(in srgb, var(--accent) 70%, #000) 35% 36%, transparent 37%),
        radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 62%);
    border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
    animation: slowSpin 26s linear infinite;
}

.aurora-two {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-3) 30%, transparent), transparent 64%);
    transform: translate(130px, -150px);
}

.phone {
    position: absolute;
    width: 286px;
    height: 584px;
    padding: 14px;
    border: 1px solid color-mix(in srgb, var(--text) 15%, transparent);
    border-radius: 42px;
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--text) 12%, transparent), transparent),
        #141416;
    box-shadow: 0 38px 80px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.floating-shot {
    position: absolute;
    z-index: 4;
    width: 142px;
    height: 142px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.22), transparent 4rem),
        linear-gradient(145deg, rgba(255, 77, 46, 0.78), rgba(22, 22, 25, 0.92));
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(14px);
    animation: floatChip 5.8s ease-in-out infinite;
}

.floating-shot span {
    width: fit-content;
    margin-bottom: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.floating-shot strong {
    font-size: 20px;
    line-height: 1.05;
}

.shot-message {
    top: 120px;
    right: 36px;
}

.shot-call {
    top: 252px;
    right: -18px;
    width: 116px;
    height: 116px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 180, 95, 0.75), transparent 3.4rem),
        linear-gradient(145deg, rgba(124, 92, 255, 0.7), rgba(12, 12, 14, 0.9));
    animation-delay: -1.4s;
}

.shot-panel {
    top: 152px;
    left: 18px;
    width: 124px;
    height: 124px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
        linear-gradient(145deg, rgba(255, 180, 95, 0.62), rgba(16, 16, 19, 0.94));
    animation-delay: -2.5s;
}

.phone-main {
    transform: rotateY(-14deg) rotateZ(-4deg) translateX(-38px);
    animation: floatMain 6s ease-in-out infinite;
}

.phone-back {
    transform: rotateY(-18deg) rotateZ(8deg) translate(178px, 54px) scale(0.82);
    opacity: 0.88;
    animation: floatBack 7s ease-in-out infinite;
}

.phone-speaker {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 82px;
    height: 21px;
    transform: translateX(-50%);
    border-radius: 99px;
    background: #070708;
    z-index: 2;
}

.app-screen {
    height: 100%;
    overflow: hidden;
    border-radius: 32px;
    padding: 48px 18px 18px;
    background:
        radial-gradient(circle at 70% 18%, rgba(255, 77, 46, 0.26), transparent 8rem),
        linear-gradient(180deg, #1a171c, #080809);
    color: #fff;
}

.app-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.app-top span,
.app-dock i,
.call-actions i {
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.app-top span {
    width: 36px;
    height: 36px;
}

.app-hero-card {
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 20px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.26);
}

.app-hero-card small {
    color: rgba(255, 255, 255, 0.72);
}

.app-hero-card b {
    font-size: 34px;
}

.app-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.app-list span {
    height: 66px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.app-dock {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 28px;
    display: flex;
    justify-content: space-around;
    padding: 14px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(16px);
}

.app-dock i {
    width: 24px;
    height: 24px;
}

.screen-call {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 180, 95, 0.24), transparent 8rem),
        linear-gradient(180deg, #191a22, #080809);
}

.avatar-orbit {
    width: 130px;
    height: 130px;
    margin-bottom: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: radial-gradient(circle, var(--accent), transparent 62%);
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.04), 0 0 0 42px rgba(255, 255, 255, 0.025);
}

.screen-call b {
    font-size: 24px;
}

.screen-call small {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.62);
}

.call-actions {
    display: flex;
    gap: 14px;
    margin-top: 38px;
}

.call-actions i {
    width: 46px;
    height: 46px;
}

.marquee {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel) 72%, transparent);
}

.marquee div {
    display: flex;
    width: max-content;
    gap: 44px;
    padding: 22px 0;
    animation: marquee 26s linear infinite;
}

.marquee span {
    color: var(--muted);
    font-size: clamp(22px, 3vw, 42px);
    font-weight: 850;
    white-space: nowrap;
}

.marquee span::after {
    content: "•";
    margin-left: 44px;
    color: var(--accent);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 52px;
}

.section-heading h2,
.flow-card h2 {
    margin-bottom: 18px;
    font-size: clamp(42px, 5vw, 82px);
    line-height: 0.96;
    letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
}

.screens-section,
.feature-section,
.flow-section {
    padding-block: 120px;
}

.panel-cms-section {
    margin-top: 70px;
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid var(--line);
    border-radius: 38px;
    background:
        radial-gradient(circle at 88% 0%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 18rem),
        var(--panel);
    box-shadow: 0 28px 80px var(--shadow);
}

.panel-cms-section h1,
.panel-cms-section h2,
.panel-cms-section h3 {
    max-width: 900px;
    line-height: 1;
}

.panel-cms-section h1 {
    font-size: clamp(42px, 5vw, 78px);
}

.panel-cms-section h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 4vw, 58px);
}

.panel-cms-section h3 {
    margin: 28px 0 10px;
    font-size: clamp(24px, 2.5vw, 34px);
}

.panel-cms-section p,
.panel-cms-section li {
    max-width: 920px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

.panel-cms-section ul {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding-left: 22px;
}

.subhero {
    min-height: 46vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 118px;
    padding-bottom: 48px;
}

.subhero h1 {
    max-width: 1040px;
    margin-bottom: 16px;
    font-size: clamp(42px, 5.1vw, 82px);
}

.subhero-lead {
    max-width: 790px;
    color: var(--muted);
    font-size: clamp(16px, 1.15vw, 20px);
    line-height: 1.48;
}

.detail-screens {
    display: grid;
    gap: 28px;
    padding-bottom: 120px;
}

.detail-screen {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(30px, 5vw, 78px);
    align-items: center;
    min-height: 520px;
    padding: clamp(26px, 4vw, 54px);
    border: 1px solid var(--line);
    border-radius: 42px;
    background:
        radial-gradient(circle at 90% 12%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 18rem),
        var(--panel);
    box-shadow: 0 28px 90px var(--shadow);
}

.detail-screen:nth-child(even) .detail-phone {
    order: 2;
}

.detail-screen:nth-child(even) .detail-copy {
    order: 1;
}

.detail-phone {
    min-height: 430px;
    overflow: hidden;
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 42px;
    background:
        radial-gradient(circle at 72% 14%, rgba(255, 255, 255, 0.2), transparent 8rem),
        linear-gradient(180deg, #1d1e25, #08090b);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.detail-phone.amber { --card-accent: #ffb45f; }
.detail-phone.coral { --card-accent: #ff4d2e; }
.detail-phone.violet { --card-accent: #7c5cff; }
.detail-phone.blue { --card-accent: #3aa7ff; }

.detail-copy h2 {
    margin: 12px 0 18px;
    font-size: clamp(34px, 4.8vw, 72px);
    line-height: 0.96;
}

.detail-copy p {
    max-width: 620px;
    color: var(--muted);
    font-size: 21px;
    line-height: 1.55;
}

.detail-copy ul,
.capability-card ul {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.detail-copy li,
.capability-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 17px;
    font-weight: 750;
}

.detail-copy li::before,
.capability-card li::before {
    content: "";
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 14%, transparent);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding-bottom: 120px;
}

.capability-grid > .section-heading {
    grid-column: 1 / -1;
}

.capability-grid > div:not(.section-heading) {
    display: contents;
}

.capability-card {
    min-height: 530px;
    padding: clamp(28px, 3.4vw, 46px);
    border: 1px solid var(--line);
    border-radius: 38px;
    background:
        radial-gradient(circle at 82% 8%, color-mix(in srgb, var(--accent-3) 16%, transparent), transparent 14rem),
        linear-gradient(145deg, var(--panel), transparent);
    box-shadow: 0 28px 80px var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.capability-card:hover {
    transform: translateY(-10px);
    border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
}

.capability-card > span {
    display: inline-flex;
    margin-bottom: 34px;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.capability-card h2 {
    margin-bottom: 22px;
    font-size: clamp(30px, 3.2vw, 52px);
    line-height: 0.98;
}

.capability-card p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

.demo-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: end;
    gap: 50px;
}

.demo-note {
    padding: 28px;
    border: 1px solid color-mix(in srgb, var(--accent) 36%, var(--line));
    border-radius: 34px;
    background: var(--panel);
    box-shadow: 0 28px 80px var(--shadow);
}

.demo-note span {
    display: block;
    margin-bottom: 18px;
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    font-style: italic;
    line-height: 1;
}

.demo-note p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
}

.form-section {
    padding-bottom: 120px;
}

.demo-form,
.admin-form {
    max-width: 980px;
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid var(--line);
    border-radius: 42px;
    background:
        radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 17rem),
        var(--panel);
    box-shadow: 0 30px 90px var(--shadow);
}

.admin-form {
    max-width: 1180px;
}

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

.demo-form label,
.admin-form label {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.demo-form label span,
.admin-form label span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 850;
    text-transform: uppercase;
}

.demo-form input,
.demo-form textarea,
.admin-form input,
.admin-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 22px;
    outline: none;
    background: color-mix(in srgb, var(--panel-strong) 72%, transparent);
    color: var(--text);
    font: inherit;
    font-size: 18px;
}

.demo-form input,
.admin-form input {
    min-height: 62px;
    padding: 0 20px;
}

.demo-form textarea,
.admin-form textarea {
    resize: vertical;
    min-height: 150px;
    padding: 18px 20px;
}

.demo-form input:focus,
.demo-form textarea:focus,
.admin-form input:focus,
.admin-form textarea:focus {
    border-color: color-mix(in srgb, var(--accent) 58%, var(--line));
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 12%, transparent);
}

.form-status,
.form-success,
.form-errors {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 20px;
    font-weight: 750;
}

.form-status {
    color: #2d2a15;
    background: #fff0b8;
}

.form-success {
    color: #163c24;
    background: #bff3ce;
}

.form-errors {
    color: #55180f;
    background: #ffd3ca;
}

.form-errors p {
    margin: 0;
}

.admin-status {
    display: none;
}

.admin-status.is-visible {
    display: block;
}

.admin-status.is-error {
    color: #55180f;
    background: #ffd3ca;
}

.admin-form button:disabled {
    cursor: wait;
    opacity: 0.68;
}

.admin-hero code {
    padding: 3px 7px;
    border-radius: 8px;
    background: var(--panel-strong);
    color: var(--accent-2);
}

.admin-section {
    padding-bottom: 120px;
}

.admin-form details {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: color-mix(in srgb, var(--panel) 72%, transparent);
    margin-bottom: 18px;
    overflow: hidden;
}

.admin-form summary {
    cursor: pointer;
    padding: 22px 26px;
    color: var(--text);
    font-size: 20px;
    font-weight: 850;
}

.admin-form details > label,
.admin-form details > .admin-grid,
.admin-form details > .admin-card {
    margin-inline: 26px;
}

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

.admin-card {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: color-mix(in srgb, var(--bg) 42%, transparent);
}

.admin-card h3 {
    margin-bottom: 18px;
    color: var(--accent-2);
    font-size: 17px;
    text-transform: uppercase;
}

.admin-actions {
    position: sticky;
    bottom: 18px;
    z-index: 20;
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 28px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(18px);
}

.screens-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.screen-card {
    min-height: 520px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: var(--panel);
    box-shadow: 0 24px 60px var(--shadow);
    backdrop-filter: blur(16px);
}

.mini-phone {
    position: relative;
    height: 358px;
    overflow: hidden;
    padding: 28px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        radial-gradient(circle at 70% 12%, rgba(255, 255, 255, 0.18), transparent 6rem),
        linear-gradient(180deg, #1c1d23, #0a0b0d);
}

.screen-media {
    height: 358px;
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: #111217;
}

.screen-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.mini-phone.amber { --card-accent: #ffb45f; }
.mini-phone.coral { --card-accent: #ff4d2e; }
.mini-phone.violet { --card-accent: #7c5cff; }
.mini-phone.blue { --card-accent: #3aa7ff; }

.mini-status {
    width: 76px;
    height: 8px;
    margin: 0 auto 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.mini-title {
    color: #fff;
    font-size: 26px;
    font-weight: 850;
}

.mini-panel {
    height: 112px;
    margin-top: 26px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--card-accent), rgba(255, 255, 255, 0.14));
}

.mini-lines {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.mini-lines i {
    height: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.screen-card h3 {
    margin: 24px 0 10px;
    font-size: 26px;
}

.screen-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
}

.feature-list {
    display: grid;
    gap: 18px;
}

.feature-row {
    min-height: 176px;
    display: grid;
    grid-template-columns: 90px 1fr 0.9fr;
    align-items: center;
    gap: 34px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: linear-gradient(135deg, var(--panel), transparent);
    transition: transform 0.25s ease, background 0.25s ease;
}

.feature-row:hover {
    transform: translateX(10px);
    background: var(--panel-strong);
}

.feature-number {
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    font-style: italic;
}

.feature-row div p {
    margin-bottom: 10px;
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.feature-row h3 {
    margin: 0;
    font-size: clamp(28px, 3vw, 48px);
    line-height: 1;
}

.feature-row > p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

.flow-card {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
    padding: clamp(34px, 6vw, 76px);
    border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line));
    border-radius: 42px;
    background:
        radial-gradient(circle at 85% 10%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 18rem),
        var(--panel);
    box-shadow: 0 30px 90px var(--shadow);
}

.flow-copy {
    min-width: 0;
}

.flow-description {
    color: var(--text);
    font-size: clamp(18px, 1.35vw, 24px);
    line-height: 1.55;
    max-width: 720px;
}

.flow-description > :first-child {
    margin-top: 0;
}

.flow-description > :last-child {
    margin-bottom: 0;
}

.flow-description p,
.flow-description ul,
.flow-description ol {
    margin: 0 0 16px;
}

.flow-description li + li {
    margin-top: 8px;
}

.flow-media {
    align-self: stretch;
    display: grid;
    margin: 0;
    min-height: 280px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
}

.flow-media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.flow-card ol {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
    list-style: none;
    counter-reset: flow;
}

.flow-card li {
    counter-increment: flow;
    min-height: 82px;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.35;
}

.flow-card li::before {
    content: counter(flow);
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--accent);
    font-weight: 850;
}

.site-footer {
    width: min(1320px, calc(100% - 44px));
    margin: 0 auto;
    padding: 34px 0 44px;
    display: grid;
    gap: 18px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer-main {
    display: grid;
    grid-template-columns: auto minmax(240px, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid color-mix(in srgb, var(--line) 62%, transparent);
    padding-top: 16px;
}

.footer-brand,
.footer-credit {
    display: flex;
    align-items: center;
}

.footer-brand {
    gap: 12px;
    color: var(--text);
    font-weight: 850;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 24%, transparent);
}

.footer-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.footer-menu a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
    transition: color 0.2s ease;
}

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

.footer-stores {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.store-badge {
    min-width: 154px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 13px;
    border: 1px solid color-mix(in srgb, #ffffff 20%, transparent);
    border-radius: 12px;
    color: #ffffff;
    background: #050505;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.store-badge:hover {
    color: #ffffff;
    border-color: color-mix(in srgb, var(--accent) 70%, #ffffff);
    transform: translateY(-2px);
}

.store-badge span:last-child {
    display: grid;
    gap: 1px;
    line-height: 1;
}

.store-badge small {
    color: rgba(255, 255, 255, 0.82);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0;
}

.store-badge strong {
    color: #ffffff;
    font-size: 18px;
    font-weight: 850;
    letter-spacing: 0;
}

.store-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
}

.play-icon {
    position: relative;
}

.play-icon::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid #24d366;
    filter: drop-shadow(7px 0 0 #26b8ff) drop-shadow(12px 0 0 #ffd348);
    transform: scaleX(0.88);
}

.apple-icon svg {
    width: 29px;
    height: 29px;
    fill: #ffffff;
}

.footer-credit {
    gap: 14px;
    justify-content: flex-end;
    text-align: right;
    max-width: 760px;
}

.footer-credit span {
    font-size: 15px;
    line-height: 1.4;
}

.footer-credit a {
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.footer-credit a:hover {
    color: var(--accent-2);
}

.footer-credit img {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid color-mix(in srgb, var(--accent) 32%, var(--line));
    box-shadow: 0 16px 38px rgba(255, 77, 46, 0.17);
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slowSpin {
    to { transform: rotate(360deg); }
}

@keyframes floatMain {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -16px; }
}

@keyframes floatBack {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 14px; }
}

@keyframes floatChip {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(2deg); }
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

@media (max-width: 1080px) {
    .site-header {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
    }

    .site-header nav {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 60;
        width: min(82vw, 340px);
        height: 100dvh;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 88px 16px 48px;
        overflow-x: hidden;
        overflow-y: scroll;
        overscroll-behavior: contain;
        touch-action: pan-y;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
        color: var(--text);
        background:
            radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 12rem),
            color-mix(in srgb, var(--bg) 94%, transparent);
        border-right: 1px solid var(--line);
        box-shadow: 26px 0 60px var(--shadow);
        backdrop-filter: blur(20px);
        transform: translateX(-104%);
        transition: transform 0.34s cubic-bezier(.22, 1, .36, 1);
    }

    .site-header nav a {
        padding: 11px 8px;
        border-bottom: 1px solid var(--line);
        font-size: 15px;
    }

    .nav-mega {
        position: static;
    }

    .nav-mega-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .nav-mega-panel {
        position: static;
        padding: 6px 0 12px;
        border: 0;
        border-radius: 0;
        color: var(--text);
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-mega-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .site-header nav .nav-feature-card {
        min-height: 0;
        display: grid;
        grid-template-columns: 22px 1fr auto;
        align-items: center;
        column-gap: 10px;
        row-gap: 2px;
        padding: 7px 9px;
        border-color: var(--line);
        border-radius: 12px;
        color: var(--text);
        background: color-mix(in srgb, var(--panel) 78%, transparent);
    }

    .site-header nav .nav-feature-card:hover {
        color: var(--text);
        transform: none;
    }

    .nav-feature-card strong {
        font-size: 13px;
        line-height: 1.15;
    }

    .nav-feature-card small {
        grid-column: 2 / 3;
        max-width: none;
        color: var(--muted);
        font-size: 10px;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .nav-feature-icon {
        grid-row: 1 / span 2;
        width: 22px;
        height: 22px;
        transform: scale(0.88);
        transform-origin: center;
    }

    .nav-feature-icon::before,
    .nav-feature-icon::after {
        max-width: 18px;
        max-height: 18px;
    }

    .nav-feature-arrow {
        grid-column: 3;
        grid-row: 1 / span 2;
        margin-top: 0;
        font-size: 14px;
    }

    .menu-toggle {
        display: grid;
    }

    .menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 55;
        display: block;
        pointer-events: none;
        background: rgba(0, 0, 0, 0.44);
        opacity: 0;
        transition: opacity 0.28s ease;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .site-header nav {
        transform: translateX(0);
    }

    body.menu-open .menu-backdrop {
        pointer-events: auto;
        opacity: 1;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 132px;
    }

    .hero-stage {
        min-height: 620px;
    }

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

    .feature-row,
    .flow-card,
    .detail-screen,
    .demo-hero {
        grid-template-columns: 1fr;
    }

    .detail-screen:nth-child(even) .detail-phone,
    .detail-screen:nth-child(even) .detail-copy {
        order: initial;
    }

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

@media (max-width: 680px) {
    .section {
        width: min(100% - 28px, 1320px);
    }

    .site-header {
        padding-inline: 14px;
    }

    .brand {
        gap: 9px;
        font-size: 18px;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .theme-toggle {
        width: 58px;
        height: 32px;
    }

    .theme-toggle::after {
        width: 24px;
        height: 24px;
        top: 4px;
        left: 4px;
    }

    .sun,
    .moon {
        top: 7px;
        width: 18px;
        height: 18px;
    }

    .sun {
        left: 7px;
    }

    .moon {
        right: 7px;
    }

    [data-theme="light"] .theme-toggle::after {
        transform: translateX(26px);
    }

    h1 {
        font-size: 55px;
    }

    .hero-stage {
        min-height: 520px;
        overflow: hidden;
    }

    .phone {
        width: 230px;
        height: 470px;
    }

    .phone-back {
        transform: rotateY(-18deg) rotateZ(8deg) translate(120px, 54px) scale(0.76);
    }

    .floating-shot {
        width: 104px;
        height: 104px;
        border-radius: 22px;
    }

    .floating-shot strong {
        font-size: 16px;
    }

    .shot-message {
        right: 10px;
    }

    .shot-call {
        right: -8px;
    }

    .shot-panel {
        left: 0;
    }

    .aurora-one {
        width: 420px;
        height: 420px;
    }

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

    .screen-card {
        min-height: auto;
    }

    .feature-row {
        padding: 24px;
    }

    .subhero {
        min-height: 38vh;
        padding-top: 96px;
        padding-bottom: 36px;
    }

    .subhero h1 {
        margin-bottom: 12px;
        font-size: 38px;
    }

    .detail-screen,
    .demo-form {
        border-radius: 28px;
        padding: 22px;
    }

    .detail-phone {
        min-height: 330px;
        border-radius: 28px;
    }

    .capability-card {
        min-height: auto;
    }

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

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

    .admin-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .site-footer {
        gap: 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 16px;
    }

    .footer-bottom {
        justify-content: flex-start;
        width: 100%;
    }

    .footer-menu {
        justify-content: flex-start;
        gap: 8px 14px;
    }

    .footer-stores {
        justify-self: start;
        justify-content: flex-start;
    }

    .store-badge {
        min-width: 148px;
        height: 46px;
    }

    .footer-credit {
        justify-content: flex-start;
        text-align: left;
    }
}
