/* ============================================================
/* ============================================================
   Kartička — New Website Styles
   ============================================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #b32534;
    --red-dark: #8b1c28;
    --red-light: #d4354a;
    --red-glow: rgba(179, 37, 52, 0.25);

    /* Light mode (default) */
    --bg-dark: #0c0c0c;
    --bg-dark-elevated: #161616;
    --bg-light: #f6f5f2;
    --bg-white: #ffffff;

    --text-primary: #111111;
    --text-secondary: #555555;
    --text-muted: #888888;
    --text-on-dark: #ede9e3;
    --text-on-dark-muted: #9a958e;

    --border-light: #e4e2dd;
    --border-dark: #2a2a2a;

    /* Hero/Channels in light mode — warm light tones */
    --hero-bg: #f6f5f2;
    --hero-text: #111111;
    --hero-text-muted: #666666;
    --hero-grain-opacity: 0.025;
    --hero-glow-color: rgba(179, 37, 52, 0.08);

    --channels-bg: #f0eee9;
    --channels-elevated: #ffffff;
    --channels-border: #ddd9d2;
    --channels-text: #111111;
    --channels-text-muted: #666666;
    --channels-or-bg: #f0eee9;

    --nav-scrolled-bg: rgba(246, 245, 242, 0.92);
    --nav-scrolled-shadow: 0 1px 0 rgba(0,0,0,0.06);
    --nav-link-color: #666666;
    --nav-link-hover: #111111;
    --nav-logo-filter: none;

    --footer-bg: #1a1a1a;
    --footer-text: #ede9e3;
    --footer-text-muted: #9a958e;
    --footer-border: #2a2a2a;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.06), 0 16px 40px rgba(0,0,0,0.1);

    --font-display: 'Helvetica Neue', Inter, Helvetica, sans-serif;
    --font-body: 'Helvetica Neue', Inter, Helvetica, sans-serif;

    --container: 1200px;
    --gutter: 24px;
}

/* --- Dark mode --- */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-dark: #0c0c0c;
        --bg-dark-elevated: #161616;
        --bg-light: #1a1a1a;
        --bg-white: #111111;

        --text-primary: #ede9e3;
        --text-secondary: #a8a29e;
        --text-muted: #78716c;
        --text-on-dark: #ede9e3;
        --text-on-dark-muted: #9a958e;

        --border-light: #2a2a2a;
        --border-dark: #2a2a2a;

        --red-glow: rgba(179, 37, 52, 0.35);

        --hero-bg: #0c0c0c;
        --hero-text: #ede9e3;
        --hero-text-muted: #9a958e;
        --hero-grain-opacity: 0.035;
        --hero-glow-color: rgba(179, 37, 52, 0.25);

        --channels-bg: #0c0c0c;
        --channels-elevated: #161616;
        --channels-border: #2a2a2a;
        --channels-text: #ede9e3;
        --channels-text-muted: #9a958e;
        --channels-or-bg: #0c0c0c;

        --nav-scrolled-bg: rgba(12, 12, 12, 0.92);
        --nav-scrolled-shadow: 0 1px 0 rgba(255,255,255,0.06);
        --nav-link-color: #9a958e;
        --nav-link-hover: #ede9e3;
        --nav-logo-filter: none;

        --footer-bg: #0a0a0a;
        --footer-text: #ede9e3;
        --footer-text-muted: #9a958e;
        --footer-border: #222222;

        --shadow-card: 0 1px 3px rgba(0,0,0,0.2), 0 8px 24px rgba(0,0,0,0.3);
        --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.3), 0 16px 40px rgba(0,0,0,0.4);
    }
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* --- Typography --- */
.section-label {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin-top: 16px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn--primary {
    background: var(--red);
    color: #fff;
}

.btn--primary:hover {
    background: var(--red-light);
    box-shadow: 0 0 0 4px var(--red-glow);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--hero-text);
    border: 1.5px solid var(--channels-border);
}

.btn--ghost:hover {
    border-color: var(--red);
    color: var(--red);
    background: transparent;
}

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

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

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn svg,
.icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.35s ease;
}

.nav.scrolled {
    background: var(--nav-scrolled-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: var(--nav-scrolled-shadow);
}

.nav__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
}

.nav__logo {
    flex-shrink: 0;
}

.nav__logo img {
    height: 32px;
    width: auto;
}

.nav__logo-dark {
    display: none;
}

@media (prefers-color-scheme: dark) {
    .nav__logo-light {
        display: none;
    }
    .nav__logo-dark {
        display: block;
    }
}

.nav__links {
    display: flex;
    gap: 36px;
    flex: 1;
    justify-content: center;
}

.nav__links a {
    color: var(--nav-link-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav__links a:hover {
    color: var(--nav-link-hover);
}

.nav__links > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    border-radius: 1px;
    transition: width 0.25s ease;
}

.nav__links > a:hover::after {
    width: 100%;
}

.nav__buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.nav__cta {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.nav__mobile-buttons {
    display: none;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--hero-text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    background: var(--hero-bg);
    background-image:
        radial-gradient(ellipse 60% 50% at 75% 55%, rgba(179, 37, 52, 0.18), transparent 70%),
        radial-gradient(ellipse 40% 40% at 15% 75%, rgba(179, 37, 52, 0.14), transparent 70%);
    padding: 160px 0 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (prefers-color-scheme: dark) {
    .hero {
        background-image:
            radial-gradient(ellipse 60% 50% at 75% 55%, rgba(179, 37, 52, 0.3), transparent 70%),
            radial-gradient(ellipse 40% 40% at 15% 75%, rgba(179, 37, 52, 0.22), transparent 70%);
    }
}

.hero__grain {
    position: absolute;
    inset: 0;
    opacity: var(--hero-grain-opacity);
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.hero__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--hero-glow-color), transparent 70%);
    top: 20%;
    right: 10%;
    pointer-events: none;
    filter: blur(80px);
}

.hero__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero__content {
    color: var(--hero-text);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__title span {
    color: var(--red-light);
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--hero-text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.hero__note {
    font-size: 0.85rem;
    color: var(--hero-text-muted);
    margin-bottom: 40px;
}

.hero__integrations {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid var(--channels-border);
}

.hero__integrations-label {
    font-size: 0.8rem;
    color: var(--hero-text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.hero__integration-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.hero__integration-logos img {
    height: 28px;
    width: auto;
    max-width: calc(25% - 9px);
    object-fit: contain;
    opacity: 0.55;
    transition: opacity 0.2s;
}

.hero__integration-logos img:hover {
    opacity: 0.9;
}

@media (prefers-color-scheme: dark) {
    .hero__integration-logos img {
        filter: brightness(0) invert(1);
    }

    .integration-card__logo {
        filter: brightness(0) invert(1);
    }

    .integration-card__logo--no-invert {
        filter: none;
        border-radius: var(--radius-sm);
    }

    .marquee__track img {
        filter: brightness(0) invert(1);
        opacity: 0.7;
    }

    .marquee__track img:hover {
        filter: brightness(0) invert(1);
        opacity: 1;
    }
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__phone {
    max-height: 580px;
    width: auto;
}

/* ============================================================
   CALLBACK REQUEST
   ============================================================ */
.callback {
    background: var(--red);
    padding: 20px 0;
}

.callback__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.callback__text {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 0.95rem;
    white-space: nowrap;
}

.callback__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: 0.85;
}

.callback__form {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.callback__input {
    padding: 12px 18px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 200px;
    outline: none;
    transition: background 0.2s;
}

.callback__input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.callback__input:focus {
    background: rgba(255, 255, 255, 0.3);
}

.callback__btn {
    background: #fff;
    color: var(--red);
    font-weight: 700;
    padding: 12px 24px;
}

.callback__btn:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .callback__inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .callback__text {
        white-space: normal;
        justify-content: center;
    }

    .callback__form {
        width: 100%;
    }

    .callback__input {
        flex: 1;
    }
}

@media (prefers-color-scheme: dark) {
    .callback {
        background: linear-gradient(135deg, #1a0a0d, #2a1015, #1a0a0d);
        border-top: 1px solid rgba(179, 37, 52, 0.3);
        border-bottom: 1px solid rgba(179, 37, 52, 0.3);
    }

    .callback__text {
        color: rgba(255, 255, 255, 0.9);
    }

    .callback__icon {
        color: var(--red-light);
    }

    .callback__input {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(179, 37, 52, 0.3);
        color: #fff;
    }

    .callback__input::placeholder {
        color: rgba(255, 255, 255, 0.35);
    }

    .callback__input:focus {
        background: rgba(255, 255, 255, 0.12);
        border-color: var(--red);
    }

    .callback__btn {
        background: var(--red);
        color: #fff;
    }

    .callback__btn:hover {
        background: var(--red-light);
        box-shadow: 0 4px 24px rgba(179, 37, 52, 0.4);
    }
}

/* --- Popup --- */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: var(--gutter);
}

.popup-overlay.active {
    display: flex;
}

.popup {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    animation: popupIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.popup__close:hover {
    color: var(--text-primary);
}

.popup__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.popup__subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.popup__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.popup__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.popup__input {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-white);
    outline: none;
    transition: border-color 0.2s;
}

.popup__input:focus {
    border-color: var(--red);
}

.popup__input::placeholder {
    color: var(--text-muted);
}

.popup__textarea {
    resize: vertical;
    min-height: 60px;
    font-family: var(--font-body);
}

.popup__radios {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.popup__radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.popup__radio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s;
}

.popup__radio input[type="radio"]:checked {
    border-color: var(--red);
}

.popup__radio input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}

.popup__submit {
    margin-top: 8px;
    width: 100%;
}

.popup__state--thanks {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.popup.popup--thanks .popup__state--form {
    display: none;
}

.popup.popup--thanks .popup__state--thanks {
    display: block;
}

.popup__thanks-icon {
    width: 48px;
    height: 48px;
    color: var(--red);
    margin: 0 auto 16px;
}

.popup__error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #b91c1c;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.popup__success {
    text-align: center;
    padding: 24px 0;
}

.popup__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.popup__checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.popup__checkbox a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 480px) {
    .popup {
        padding: 28px 24px;
    }
}

/* ============================================================
   PARTNERS MARQUEE
   ============================================================ */
.partners {
    background: var(--bg-light);
    padding: 56px 0;
    border-bottom: 1px solid var(--border-light);
}

.partners__label {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.partners__label strong {
    color: var(--text-primary);
    font-weight: 700;
}

.marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee__track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marquee 300s linear infinite;
}

.marquee__track img {
    height: 40px;
    width: auto;
    opacity: 0.45;
    filter: grayscale(100%);
    transition: all 0.3s;
    flex-shrink: 0;
}

.marquee__track img:hover {
    opacity: 0.9;
    filter: grayscale(0%);
}

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

@media (prefers-color-scheme: dark) {
    .partners {
        background: #2a2a2a;
        border-bottom-color: #3a3a3a;
    }

    .marquee__track img {
        filter: grayscale(100%) invert(1);
    }

    .marquee__track img:hover {
        opacity: 0.45;
        filter: grayscale(100%) invert(1);
    }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
    padding: 120px 0;
    background: var(--bg-white);
}

.features__header {
    text-align: center;
    margin-bottom: 72px;
}

.features__header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(179, 37, 52, 0.08), rgba(179, 37, 52, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--red);
}

.feature-card__icon svg {
    width: 24px;
    height: 24px;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}

.feature-card__desc {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* All feature cards get gradient */
.feature-card {
    background: linear-gradient(145deg, #fdf2f3, var(--bg-white));
    border-color: rgba(179, 37, 52, 0.12);
}

@media (prefers-color-scheme: dark) {
    .feature-card {
        background: linear-gradient(145deg, #1e1214, var(--bg-white));
        border-color: rgba(179, 37, 52, 0.15);
    }
}

/* ============================================================
   CHANNELS (App vs Wallet)
   ============================================================ */
.channels {
    padding: 80px 0 120px;
    background: var(--channels-bg);
    position: relative;
    overflow: hidden;
}

.channels__grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.channels__header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.channels__header .section-title {
    color: var(--channels-text);
}

.channels__header .section-subtitle {
    color: var(--channels-text-muted);
    margin-left: auto;
    margin-right: auto;
}

.channels__grid {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    gap: 0;
    position: relative;
    z-index: 1;
}

.channels__grid > .channel-card:first-child {
    margin-right: -14px;
}

.channels__grid > .channel-card:last-child {
    margin-left: -14px;
}

.channel-card {
    background: var(--channels-elevated);
    border: 1px solid var(--channels-border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.channel-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.channel-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.channel-card__badge--app {
    background: rgba(179, 37, 52, 0.1);
    color: var(--red);
}

.channel-card__badge--wallet {
    background: rgba(0, 0, 0, 0.05);
    color: var(--channels-text-muted);
}

@media (prefers-color-scheme: dark) {
    .channel-card__badge--wallet {
        background: rgba(255, 255, 255, 0.08);
    }
}

.channel-card__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--channels-text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.channel-card__desc {
    font-size: 1rem;
    color: var(--channels-text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.channel-card__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.channel-card__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.925rem;
    color: var(--channels-text);
}

.channel-card__feature svg {
    width: 18px;
    height: 18px;
    color: var(--red-light);
    flex-shrink: 0;
}

.channel-card__stores {
    display: flex;
    gap: 12px;
}

.channel-card__stores img {
    height: 44px;
    width: auto;
    border-radius: 8px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.channel-card__stores img:hover {
    opacity: 1;
}

.channel-card__wallet-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.channel-card__wallet-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--channels-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--channels-text);
    transition: all 0.2s;
}

.channel-card__wallet-icon:hover {
    border-color: var(--channels-border);
}

@media (prefers-color-scheme: dark) {
    .channel-card__wallet-icon {
        background: rgba(255, 255, 255, 0.06);
    }
}

.channel-card__wallet-icon svg {
    width: 26px;
    height: 26px;
}

.channels__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.channels__or {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--channels-or-bg);
    border: 2px solid var(--channels-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--channels-text-muted);
    flex-shrink: 0;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.industries__left .section-subtitle {
    margin-top: 16px;
}

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

.industry-tag {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    transition: all 0.25s ease;
    cursor: default;
}

.industry-tag:hover {
    border-color: var(--red);
    color: var(--red);
    box-shadow: 0 0 0 3px var(--red-glow);
}

.industry-tag--lg {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ============================================================
   INTEGRATIONS
   ============================================================ */
.integrations {
    padding: 120px 0;
    background: var(--bg-white);
}

.integrations__header {
    text-align: center;
    margin-bottom: 64px;
}

.integrations__header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.integrations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.integration-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.integration-card:hover {
    border-color: var(--red);
    box-shadow: 0 0 0 4px var(--red-glow);
    transform: translateY(-4px);
}

.integration-card__logo {
    height: 48px;
    width: auto;
    margin: 0 auto 20px;
    object-fit: contain;
}

.integration-card__logo--sm {
    height: 28px;
    max-width: 100px;
}

.integration-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.integration-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    margin-top: 8px;
}

.integration-card__badge svg {
    width: 14px;
    height: 14px;
}

.integrations__info-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 14px 24px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e5aa8;
    line-height: 1.5;
}

.integrations__info-badge svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #3b82f6;
}

.integrations__info-badge a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(30, 90, 168, 0.3);
    transition: text-decoration-color 0.2s;
}

.integrations__info-badge a:hover {
    text-decoration-color: currentColor;
}

@media (prefers-color-scheme: dark) {
    .integrations__info-badge {
        background: rgba(59, 130, 246, 0.1);
        color: #7db4fa;
    }

    .integrations__info-badge svg {
        color: #5b9cf5;
    }
}

.integration-card--soon {
    opacity: 0.55;
    border-style: dashed;
}

.integration-card--soon:hover {
    border-color: var(--border-light);
    box-shadow: none;
    transform: none;
}

.integration-card__badge--soon {
    color: var(--text-muted);
}

.integrations__note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 24px;
}

.integrations__note a {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(179, 37, 52, 0.3);
    text-underline-offset: 3px;
}

.integrations__note a:hover {
    text-decoration-color: var(--red);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
    padding: 120px 0 60px;
    background: var(--bg-light);
}

.pricing__header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing__header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 840px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.pricing-card--featured {
    border-color: var(--red);
    box-shadow: 0 0 0 1px var(--red), var(--shadow-card);
}

.pricing-card__popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 18px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-card__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.pricing-card__amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-card__currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-card__period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.pricing-card__divider {
    height: 1px;
    background: var(--border-light);
    margin-bottom: 28px;
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.pricing-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.pricing-card__feature svg {
    width: 18px;
    height: 18px;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card__cta {
    width: 100%;
    text-align: center;
}

.pricing-card__trial {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ============================================================
   SWITCH BANNER
   ============================================================ */
.switch-banner {
    padding: 40px 0;
    background: var(--bg-light);
}

.switch-banner__inner {
    background: linear-gradient(135deg, var(--red-dark), var(--red), var(--red-light));
    border-radius: var(--radius-xl);
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.switch-banner__inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.switch-banner__inner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.switch-banner__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.switch-banner__text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.switch-banner__btn {
    background: #fff;
    color: var(--red);
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.switch-banner__btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .switch-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }

    .switch-banner__btn {
        width: 100%;
    }
}

@media (prefers-color-scheme: dark) {
    .switch-banner__inner {
        background: linear-gradient(135deg, #1a0a0d, #2a1218, #1a0a0d);
        border: 1px solid rgba(179, 37, 52, 0.25);
    }

    .switch-banner__inner::before {
        background: rgba(179, 37, 52, 0.1);
    }

    .switch-banner__inner::after {
        background: rgba(179, 37, 52, 0.06);
    }

    .switch-banner__title {
        color: #fff;
    }

    .switch-banner__text {
        color: rgba(255, 255, 255, 0.65);
    }

    .switch-banner__btn {
        background: var(--red);
        color: #fff;
    }

    .switch-banner__btn:hover {
        background: var(--red-light);
        box-shadow: 0 8px 32px rgba(179, 37, 52, 0.4);
    }
}

/* ============================================================
   MŮJ PODNIK APP
   ============================================================ */
.app-podnik {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.app-podnik__layout {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 72px;
    align-items: center;
}

.app-podnik__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.app-podnik__visual img {
    max-height: 520px;
    width: auto;
}

.app-podnik__content .section-title {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.app-podnik__content .section-label {
    color: var(--red);
}

.app-podnik__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 32px;
}

.app-podnik__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
    margin-bottom: 36px;
}

.app-podnik__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.app-podnik__feature svg {
    width: 18px;
    height: 18px;
    color: var(--red);
    flex-shrink: 0;
}

.app-podnik__stores {
    display: flex;
    gap: 12px;
}

.app-podnik__stores img {
    height: 44px;
    width: auto;
    border-radius: 8px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.app-podnik__stores img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .app-podnik {
        padding: 60px 0;
    }

    .app-podnik__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .app-podnik__content {
        order: 1;
    }

    .app-podnik__visual {
        order: 2;
        display: none;
    }

    .app-podnik__features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 8px;
    }
}

/* --- Section Divider --- */
.section-divider {
    background: var(--bg-white);
}

.section-divider hr {
    border: none;
    height: 1px;
    background: var(--border-light);
    margin: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 120px 0;
    background: var(--bg-white);
}

.about__layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: center;
}

.about__content .section-title {
    margin-bottom: 24px;
}

.about__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about__text strong {
    color: var(--text-primary);
}

.about__text:last-child {
    margin-bottom: 0;
}

.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about__stat {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
}

.about__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}

.about__stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .about__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__stats {
        gap: 10px;
    }

    .about__stat {
        padding: 14px 12px;
        border-radius: var(--radius-sm);
    }

    .about__stat-number {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .about__stat-label {
        font-size: 0.7rem;
    }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials__header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0 var(--gutter);
}

.testimonial {
    width: calc(33% - 12px);
    max-width: 400px;
}

.testimonial {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s ease;
}

.testimonial:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.testimonial__stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial__text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-primary);
    font-style: italic;
    flex: 1;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.testimonial__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial__avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial__name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial__role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .testimonial {
        width: calc(50% - 8px);
    }
}

@media (max-width: 768px) {
    .testimonial {
        width: 100%;
        max-width: 540px;
    }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--red-dark), var(--red), var(--red-light));
    position: relative;
    overflow: hidden;
}

.cta-section__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2) 0%, transparent 50%);
}

.cta-section__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.cta-section__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-section .btn--white {
    background: #fff;
    color: var(--red);
    font-weight: 700;
}

.cta-section .btn--white:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

@media (prefers-color-scheme: dark) {
    .cta-section {
        background: linear-gradient(135deg, #1a0a0d, #2a1218, #1a0a0d);
        border-top: 1px solid rgba(179, 37, 52, 0.25);
    }

    .cta-section__pattern {
        opacity: 0.08;
        background-image:
            radial-gradient(circle at 20% 50%, rgba(179, 37, 52, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(179, 37, 52, 0.3) 0%, transparent 50%);
    }

    .cta-section__subtitle {
        color: rgba(255, 255, 255, 0.6);
    }

    .cta-section .btn--white {
        background: var(--red);
        color: #fff;
    }

    .cta-section .btn--white:hover {
        background: var(--red-light);
        box-shadow: 0 8px 32px rgba(179, 37, 52, 0.4);
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--footer-bg);
    padding: 80px 0 40px;
    color: var(--footer-text);
}

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

.footer__brand p {
    font-size: 0.9rem;
    color: var(--footer-text-muted);
    margin-top: 20px;
    max-width: 300px;
    line-height: 1.7;
}

.footer__brand img {
    height: 28px;
    width: auto;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--footer-text-muted);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a,
.footer__links span {
    font-size: 0.9rem;
    color: var(--footer-text-muted);
    transition: color 0.2s;
}

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

.footer__bottom {
    border-top: 1px solid var(--footer-border);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--footer-text-muted);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    font-size: 0.8rem;
    color: var(--footer-text-muted);
    transition: color 0.2s;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__integrations {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__phone {
        max-height: 420px;
    }

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

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--nav-scrolled-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px var(--gutter);
        gap: 16px;
        border-bottom: 1px solid var(--channels-border);
    }

    .nav__links.active {
        display: flex;
    }

    .nav__buttons {
        display: none;
    }

    .nav__toggle {
        display: flex;
        margin-left: auto;
    }

    .nav__mobile-buttons {
        display: flex;
        gap: 8px;
        padding-bottom: 16px;
        margin-bottom: 8px;
        border-bottom: 1px solid var(--channels-border);
    }

    .nav__mobile-buttons .btn {
        flex: 1;
        text-align: center;
        background: var(--red);
        color: #fff;
        border-color: var(--red);
    }

    .nav__mobile-buttons .btn:hover {
        background: var(--red);
        color: #fff;
        border-color: var(--red);
        transform: none;
        box-shadow: none;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-card {
        padding: 18px 16px;
        display: grid;
        grid-template-columns: 34px 1fr;
        grid-template-rows: auto auto;
        gap: 0 12px;
    }

    .feature-card__icon {
        width: 34px;
        height: 34px;
        margin-bottom: 0;
        grid-row: 1;
        grid-column: 1;
        align-self: center;
    }

    .feature-card__icon svg {
        width: 18px;
        height: 18px;
    }

    .feature-card__title {
        font-size: 0.95rem;
        margin-bottom: 0;
        grid-row: 1;
        grid-column: 2;
        align-self: center;
    }

    .feature-card__desc {
        font-size: 0.8rem;
        line-height: 1.5;
        grid-row: 2;
        grid-column: 1 / -1;
        margin-top: 8px;
    }

    .channels__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .channels__grid > .channel-card:first-child {
        margin-right: 0;
    }

    .channels__grid > .channel-card:last-child {
        margin-left: 0;
    }

    .channels__divider {
        display: flex;
        height: auto;
    }

    .channels__or {
        width: 44px;
        height: 44px;
        font-size: 0.8rem;
    }

    .industries__layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .industries__left .section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .industries__tags {
        justify-content: center;
    }

    .integrations__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .integration-card {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 20px;
        text-align: left;
    }

    .integration-card__logo {
        height: 32px;
        margin: 0;
        flex-shrink: 0;
    }

    .integration-card__name {
        display: none;
    }

    .integration-card__badge {
        margin-top: 0;
        margin-left: auto;
        white-space: nowrap;
    }

    .pricing {
        padding: 30px 0 40px;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

@media (max-width: 480px) {
    :root {
        --gutter: 16px;
    }

    .hero__integrations {
        flex-direction: column;
        gap: 12px;
    }

    .channel-card {
        padding: 32px 24px;
    }

    .pricing-card {
        padding: 36px 28px;
    }
}
