:root {
    --font-primary: "Montserrat", Arial, sans-serif;

    --color-primary: #A9202C;
    --color-primary-hover: #8a1a24;
    --color-primary-soft: rgba(169, 32, 44, 0.12);
    --color-primary-border: rgba(169, 32, 44, 0.22);

    --color-secondary: #D5B06B;
    --color-secondary-hover: #c29c58;
    --color-secondary-soft: rgba(213, 176, 107, 0.12);
    --color-secondary-border: rgba(213, 176, 107, 0.22);

    --color-bg: #0b0b0d;
    --color-bg-2: #111215;
    --color-bg-3: #17181b;

    --color-surface: rgba(255, 255, 255, 0.05);
    --color-surface-2: rgba(255, 255, 255, 0.08);
    --color-surface-3: rgba(255, 255, 255, 0.12);

    --color-surface-light: #ffffff;
    --color-surface-light-2: #f7f7f8;
    --color-surface-light-3: #f1f2f4;

    --color-text: #f5f2ef;
    --color-text-soft: rgba(245, 242, 239, 0.74);
    --color-text-muted: rgba(245, 242, 239, 0.54);

    --color-text-dark: #121316;
    --color-text-dark-soft: #4b5563;
    --color-text-dark-muted: #6b7280;

    --color-border: rgba(255, 255, 255, 0.10);

    --color-border-light: rgba(0, 0, 0, 0.06);
    --color-border-light-strong: rgba(0, 0, 0, 0.12);
    --color-success: #16a34a;
    --color-success-soft: rgba(22, 163, 74, 0.12);
    --color-warning: #d97706;
    --color-warning-soft: rgba(217, 119, 6, 0.12);
    --color-danger: #dc2626;
    --color-danger-soft: rgba(220, 38, 38, 0.12);

    --container: 1320px;
    --header-height: 92px;

    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 34px;
    --radius-pill: 999px;

    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.14);
    --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.24);
    --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.32);
    --shadow-primary: 0 18px 44px rgba(169, 32, 44, 0.20);

    --shadow-light-sm: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-light-md: 0 18px 40px rgba(0, 0, 0, 0.08);

    --transition-fast: .2s ease;
    --transition-base: .35s ease;
    --transition-slow: .55s cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    background:
        radial-gradient(circle at top left, rgba(169, 32, 44, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(213, 176, 107, 0.06), transparent 18%),
        linear-gradient(180deg, #09090b 0%, #111215 100%);
    color: var(--color-text);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.mobile-menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.03em;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.site-main {
    position: relative;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: var(--color-text);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-primary);
    transition:
        background var(--transition-base),
        border-color var(--transition-base),
        transform var(--transition-base),
        box-shadow var(--transition-base);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(169, 32, 44, 0.24);
}

.btn-primary:focus-visible {
    outline: 0;
    box-shadow:
        0 0 0 4px var(--color-primary-soft),
        var(--shadow-primary);
}

.btn-primary i {
    width: 18px;
    height: 18px;
}
.btn svg {
    width: 18px;
    height: 18px;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 10px 30px rgba(169, 32, 44, 0.06);
}

.btn-outline:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 16px 36px rgba(169, 32, 44, 0.12);
}

.w-100 {
    width: 100%;
}

/* HEADER */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    height: var(--header-height);
    z-index: 999;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(10, 10, 12, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow-sm);
}

.site-header-inner {
    height: var(--header-height);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
}

.site-logo img {
    max-height: 44px;
    width: auto;
}

/* DESKTOP NAV */
.site-nav {
    display: flex;
    justify-content: center;
    min-width: 0;
}

.site-nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.site-nav-item {
    position: relative;
}

.site-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 12px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    transition: color var(--transition-fast), opacity var(--transition-fast);
    white-space: nowrap;
}

.site-nav-link--direct {
    max-width: none;
    white-space: nowrap;
}

.site-nav-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.site-nav-item:hover>.site-nav-link,
.site-nav-item.is-open>.site-nav-link {
    color: #7d1821;
}

.site-nav-item:hover>.site-nav-link svg,
.site-nav-item.is-open>.site-nav-link svg {
    transform: rotate(180deg);
}

/* MEGA DROPDOWN */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 620px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-slow);
}

.site-nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 16px;
}

.site-nav-item:hover>.nav-dropdown,
.site-nav-item.is-open>.nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.site-nav-item:hover > .nav-dropdown,
.nav-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-dropdown-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.97);
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.20);
    padding: 26px;
}

.mega-dropdown-inner::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 18px;
    height: 18px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateX(-50%) rotate(45deg);
}

.mega-dropdown-head {
    margin-bottom: 18px;
}

.mega-dropdown-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #8f98a6;
    font-weight: 700;
}

.mega-dropdown-head p {
    margin: 0;
    color: #6c7280;
    line-height: 1.7;
    font-size: 15px;
}

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

.mega-dropdown-grid--dense {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.mega-dropdown:has(.mega-dropdown-grid--dense) {
    width: min(900px, calc(100vw - 40px));
}

.mega-link-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.mega-dropdown-grid--dense .mega-link-card {
    gap: 10px;
    padding: 10px;
}

.mega-link-card:hover {
    background: rgba(169, 32, 44, 0.06);
}

.mega-link-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #10172b;
    color: #fff;
    flex: 0 0 auto;
}

.mega-link-icon svg {
    width: 18px;
    height: 18px;
}

.mega-link-card strong {
    display: block;
    margin-bottom: 6px;
    color: #111827;
    font-size: 17px;
    line-height: 1.3;
}

.mega-dropdown-grid--dense .mega-link-card strong {
    margin-bottom: 0;
    font-size: 14px;
}

.mega-link-card p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

/* ACTIONS */
.site-header-actions {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 12px;
}

.whatsapp-btn {
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(169, 32, 44, 0.18);
    pointer-events: none;
}

.whatsapp-btn.buzzing {
    animation: subtleBuzz 2.8s ease-in-out infinite;
}

.mobile-menu-toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-toggle svg {
    width: 22px;
    height: 22px;
}

/* MOBILE SIDEBAR */
.mobile-sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 5, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1098;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-sidebar-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(92vw, 430px);
    height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(169, 32, 44, 0.10), transparent 32%),
        linear-gradient(180deg, #101114 0%, #0b0b0d 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.28);
    z-index: 1099;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.mobile-sidebar-head {
    min-height: 84px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-sidebar-logo img {
    max-height: 38px;
    width: auto;
}

.mobile-sidebar-close {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-sidebar-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 18px;
}

.mobile-sidebar-footer {
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-accordion {
    display: grid;
    gap: 14px;
}

.mobile-accordion-item {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.mobile-accordion-trigger {
    width: 100%;
    min-height: 64px;
    padding: 0 18px;
    border: 0;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
}

.mobile-accordion-trigger svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.mobile-accordion-item.active .mobile-accordion-trigger svg {
    transform: rotate(180deg);
}

.mobile-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-base);
    padding: 0 14px;
}

.mobile-accordion-item.active .mobile-accordion-panel {
    padding: 0 14px 14px;
}

.mobile-subnav-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    margin-top: 10px;
    transition: all var(--transition-fast);
}

.mobile-subnav-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.mobile-subnav-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #10172b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.mobile-subnav-icon svg {
    width: 16px;
    height: 16px;
}

.mobile-subnav-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 1.3;
}

.mobile-subnav-card p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.55;
    font-size: 13px;
}

.mobile-direct-link {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 600;
}

.mobile-direct-link svg {
    width: 16px;
    height: 16px;
    color: var(--color-secondary);
    flex: 0 0 auto;
}

.floating-call-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px 0 16px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(213, 176, 107, 0.34);
    background:
        linear-gradient(135deg, rgba(169, 32, 44, 0.96), rgba(116, 19, 28, 0.96)),
        var(--color-primary);
    color: #fff;
    box-shadow: 0 18px 44px rgba(169, 32, 44, 0.34), 0 8px 22px rgba(0, 0, 0, 0.22);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.floating-call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 54px rgba(169, 32, 44, 0.42), 0 10px 26px rgba(0, 0, 0, 0.24);
}

.floating-call-button svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

/* FADE ANIMATION SYSTEM */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .8s ease,
        transform .8s ease,
        filter .8s ease;
    filter: blur(4px);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

[data-animate="left"] {
    transform: translateX(-28px);
}

[data-animate="right"] {
    transform: translateX(28px);
}

[data-animate="zoom"] {
    transform: scale(.96);
}

/* ANIMATIONS */
@keyframes subtleBuzz {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    6% {
        transform: translate3d(.5px, 0, 0);
    }

    12% {
        transform: translate3d(-.5px, 0, 0);
    }

    18% {
        transform: translate3d(.7px, 0, 0);
    }

    24% {
        transform: translate3d(-.7px, 0, 0);
    }

    30% {
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 1280px) {

    .site-nav,
    .desktop-header-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .site-header-inner {
        grid-template-columns: auto 1fr auto;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }

    .container {
        width: min(100% - 24px, var(--container));
    }

    .site-logo img {
        max-height: 36px;
    }

    .mobile-sidebar {
        width: min(100vw, 390px);
    }

    .floating-call-button {
        right: 16px;
        bottom: 16px;
        width: 58px;
        height: 58px;
        min-height: 58px;
        padding: 0;
        border-radius: 50%;
    }

    .floating-call-button span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
}

/* =========================================================
   HERO SECTION
   ========================================================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #0c0c10;
}

.hero-vanta,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-vanta {
    z-index: 0;
}

.hero-overlay {
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 30%, rgba(169, 32, 44, 0.22), transparent 28%),
        radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.05), transparent 18%),
        linear-gradient(180deg, rgba(10, 10, 12, 0.18) 0%, rgba(10, 10, 12, 0.42) 100%);
}

.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-container {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 30px;
    width: 100%;
    min-height: calc(100vh - var(--header-height) - 110px);
}

.hero-content {
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-title {
    margin: 24px 0 22px;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: #fff;
    max-width: 820px;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.25),
        0 0 18px rgba(169, 32, 44, 0.12);
}

.hero-desc {
    max-width: 650px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.7;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    min-width: 270px;
    padding: 0 34px;
    border-radius: 0 0 18px 18px;
    background: linear-gradient(180deg, #b62531 0%, #A9202C 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 24px 50px rgba(169, 32, 44, 0.26);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.hero-cta::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 86%;
    height: 5px;
    border-radius: 999px;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 32px 65px rgba(169, 32, 44, 0.34);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transform-origin: center center;
    will-change: transform;
}

.hero-visual img {
    width: min(100%, 860px);
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35)) drop-shadow(0 10px 20px rgba(169, 32, 44, 0.18));
}

/* bottom logos */
.hero-bottom-strip {
    position: relative;
    z-index: 2;
    margin-top: -24px;
    padding-bottom: 22px;
}

.payment-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 26px;
    padding: 16px 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.payment-logo-item {
    min-height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.66);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f7480;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* =========================================================
   REUSABLE ANIMATION SYSTEM
   ========================================================= */

[data-animate] {
    opacity: 0;
    transition:
        opacity .9s cubic-bezier(.22, 1, .36, 1),
        transform .9s cubic-bezier(.22, 1, .36, 1),
        filter .9s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform, filter;
    filter: blur(6px);
}

[data-animate="fade-up"] {
    transform: translate3d(0, 34px, 0);
}

[data-animate="fade-down"] {
    transform: translate3d(0, -34px, 0);
}

[data-animate="fade-left"] {
    transform: translate3d(-34px, 0, 0);
}

[data-animate="fade-right"] {
    transform: translate3d(34px, 0, 0);
}

[data-animate="zoom-in"] {
    transform: scale(.96);
}

[data-animate].animated {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

/* reusable scroll motion helpers */
.parallax-float {
    will-change: transform;
}

.scroll-drift-sm {
    will-change: transform;
}

.scroll-drift-md {
    will-change: transform;
}

/* =========================================================
   RESPONSIVE HERO
   ========================================================= */

@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    }

    .hero-visual img {
        width: min(100%, 640px);
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding-top: calc(var(--header-height) + 30px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
        padding-top: 30px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-badge {
        margin-inline: auto;
    }

    .hero-desc {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-visual img {
        width: min(100%, 620px);
    }

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

@media (max-width: 576px) {
    .hero-title {
        font-size: clamp(40px, 12vw, 58px);
    }

    .hero-desc {
        font-size: 17px;
    }

    .hero-cta {
        min-width: 100%;
        min-height: 66px;
        font-size: 18px;
    }

    .payment-logos {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .payment-logo-item {
        min-height: 60px;
    }
}

/* =========================================================
   PAYMENT MARQUEE SECTION
   ========================================================= */

.payment-marquee-section {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.payment-marquee-head {
    text-align: center;
    margin-bottom: 34px;
}

.payment-marquee-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(169, 32, 44, 0.08);
    color: #A9202C;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.payment-marquee-title {
    margin: 18px 0 12px;
    color: #17181b;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.payment-marquee-desc {
    max-width: 760px;
    margin: 0 auto;
    color: #646b78;
    font-size: 17px;
    line-height: 1.8;
}

.payment-marquee-wrap {
    position: relative;
    overflow: hidden;
    padding: 18px 0;
}

.payment-marquee-wrap::before,
.payment-marquee-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.payment-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.payment-marquee-wrap::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.payment-marquee-track {
    display: flex;
    width: max-content;
    animation: paymentMarquee 26s linear infinite;
    will-change: transform;
}

.payment-marquee-group {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-right: 22px;
}

.payment-marquee-item {
    width: 230px;
    min-width: 230px;
    height: 110px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(20, 24, 27, 0.08);
    box-shadow: 0 14px 32px rgba(16, 17, 20, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 26px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.payment-marquee-item:hover {
    transform: translateY(-4px);
    border-color: rgba(169, 32, 44, 0.18);
    box-shadow: 0 18px 40px rgba(16, 17, 20, 0.10);
}

.payment-marquee-item img {
    max-width: 100%;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0);
    opacity: 0.96;
}

.payment-marquee-wrap:hover .payment-marquee-track {
    animation-play-state: paused;
}

@keyframes paymentMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 991px) {
    .payment-marquee-section {
        padding: 72px 0;
    }

    .payment-marquee-item {
        width: 190px;
        min-width: 190px;
        height: 96px;
        border-radius: 20px;
        padding: 18px 20px;
    }

    .payment-marquee-item img {
        max-height: 34px;
    }
}

@media (max-width: 576px) {
    .payment-marquee-title {
        font-size: clamp(28px, 9vw, 38px);
    }

    .payment-marquee-desc {
        font-size: 15px;
    }

    .payment-marquee-wrap::before,
    .payment-marquee-wrap::after {
        width: 52px;
    }

    .payment-marquee-item {
        width: 160px;
        min-width: 160px;
        height: 82px;
        padding: 14px 16px;
    }

    .payment-marquee-item img {
        max-height: 28px;
    }
}

/* =========================================================
   SOLUTIONS SECTION
   ========================================================= */

.solutions-section {
    position: relative;
    padding: 110px 0;
    background: rgb(255, 255, 255);
    overflow: hidden;
}

.solutions-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.solutions-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(169, 32, 44, 0.08);
    color: #A9202C;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.solutions-title {
    margin: 18px 0 0;
    color: #17181b;
    font-size: clamp(38px, 4.8vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

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

.solution-card {
    position: relative;
    min-height: 760px;
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .4s ease, box-shadow .4s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
}

.solution-card--primary {
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(180deg, #8d1622 0%, #A9202C 100%);
    box-shadow: 0 24px 60px rgba(169, 32, 44, 0.20);
}

.solution-card--light {
    background:
        radial-gradient(circle at 82% 16%, rgba(169, 32, 44, 0.06), transparent 18%),
        linear-gradient(180deg, #f1e9e8 0%, #e9dfde 100%);
    border: 1px solid rgba(143, 24, 36, 0.08);
    box-shadow: 0 24px 60px rgba(24, 28, 34, 0.08);
}

.solution-card__content {
    position: relative;
    z-index: 2;
    padding: 42px 42px 10px;
    max-width: 640px;
}

.solution-card__icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #14171c;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    margin-bottom: 28px;
}

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

.solution-card__icon--dark {
    background: #ffffff;
    color: #14171c;
}

.solution-card__title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.solution-card__title--dark {
    color: var(--color-primary);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.solution-card__desc {
    margin: 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    line-height: 1.8;
}

.solution-card__desc--dark {
    color: #6c6570;
}

.solution-card__visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 24px 0;
    will-change: transform;
}

.solution-card__visual img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.solution-card__visual--phones {
    min-height: 430px;
}

.solution-card__visual--phones img {
    width: min(100%, 520px);
    filter: drop-shadow(0 26px 45px rgba(0, 0, 0, 0.24));
}

.solution-card__visual--dashboard {
    min-height: 430px;
}

.solution-card__visual--dashboard img {
    width: min(100%, 720px);
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.12));
}

/* decorative ambient layers */
.solution-card--primary::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(10px);
}

.solution-card--light::after {
    content: "";
    position: absolute;
    left: -60px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(169, 32, 44, 0.05);
    filter: blur(12px);
}

@media (max-width: 1200px) {
    .solution-card {
        min-height: 700px;
    }

    .solution-card__content {
        padding: 36px 34px 10px;
    }

    .solution-card__desc {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .solutions-section {
        padding: 84px 0;
    }

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

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

    .solution-card__visual--phones,
    .solution-card__visual--dashboard {
        min-height: auto;
        padding-top: 20px;
    }

    .solution-card__visual--phones img {
        width: min(100%, 420px);
    }

    .solution-card__visual--dashboard img {
        width: min(100%, 560px);
    }
}

@media (max-width: 576px) {
    .solutions-title {
        font-size: clamp(30px, 9vw, 42px);
    }

    .solution-card {
        border-radius: 28px;
    }

    .solution-card__content {
        padding: 28px 24px 6px;
    }

    .solution-card__title {
        font-size: 30px;
    }

    .solution-card__desc {
        font-size: 16px;
        line-height: 1.75;
    }

    .solution-card__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 22px;
    }

    .solution-card__icon svg {
        width: 22px;
        height: 22px;
    }
}

/* =========================================================
   TESTIMONIALS SECTION
   ========================================================= */

.testimonials-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(169, 32, 44, 0.14), transparent 24%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.04), transparent 16%),
        linear-gradient(180deg, #0c0c10 0%, #111216 100%);
    overflow: hidden;
}

.testimonials-head {
    max-width: 860px;
    margin: 0 auto 48px;
    text-align: center;
}

.testimonials-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f0c7cc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonials-title {
    margin: 20px 0 14px;
    color: #ffffff;
    font-size: clamp(38px, 4.8vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.testimonials-desc {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.74);
    font-size: 18px;
    line-height: 1.85;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.testimonial-card {
    position: relative;
    min-height: 100%;
    padding: 32px 30px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(169, 32, 44, 0.12), transparent 28%);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(169, 32, 44, 0.22);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.24);
}

.testimonial-card--featured {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(180deg, #891722 0%, #A9202C 100%);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 26px 60px rgba(169, 32, 44, 0.24);
    transform: translateY(-8px);
}

.testimonial-card--featured:hover {
    transform: translateY(-14px);
    box-shadow: 0 30px 70px rgba(169, 32, 44, 0.30);
}

.testimonial-card__stars {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    color: #f2c46d;
}

.testimonial-card__stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: currentColor;
}

.testimonial-card__quote {
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.95;
    letter-spacing: -0.01em;
}

.testimonial-card:not(.testimonial-card--featured) .testimonial-card__quote {
    color: rgba(255, 255, 255, 0.78);
}

.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-card__avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #ead7d9 100%);
    color: #8f1824;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    flex: 0 0 auto;
}

.testimonial-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-card__meta strong {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.2;
}

.testimonial-card__meta span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .testimonials-section {
        padding: 84px 0;
    }

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

    .testimonial-card--featured {
        transform: none;
    }

    .testimonial-card--featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 576px) {
    .testimonials-title {
        font-size: clamp(30px, 9vw, 42px);
    }

    .testimonials-desc {
        font-size: 16px;
    }

    .testimonial-card {
        padding: 26px 22px;
        border-radius: 24px;
    }

    .testimonial-card__quote {
        font-size: 16px;
        line-height: 1.85;
    }

    .testimonial-card__avatar {
        width: 48px;
        height: 48px;
        font-size: 15px;
    }
}

/* =========================================================
   PAYMENT GATEWAY SECTION
   ========================================================= */

.gateway-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(169, 32, 44, 0.14), transparent 24%),
        radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.04), transparent 16%),
        linear-gradient(180deg, #0b0b10 0%, #111216 100%);
}

.gateway-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

.gateway-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
    gap: 40px;
    align-items: center;
}

.gateway-content {
    max-width: 720px;
}

.gateway-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f0c7cc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gateway-title {
    margin: 22px 0 18px;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.03;
    letter-spacing: -0.05em;
    max-width: 780px;
}

.gateway-desc {
    margin: 0 0 30px;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.9;
}

.gateway-list {
    display: grid;
    gap: 16px;
}

.gateway-list-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 20px 20px 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.gateway-list-item:hover {
    transform: translateY(-5px);
    border-color: rgba(169, 32, 44, 0.20);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.gateway-list-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(169, 32, 44, 0.16);
    border: 1px solid rgba(169, 32, 44, 0.22);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(169, 32, 44, 0.12);
}

.gateway-list-icon svg {
    width: 22px;
    height: 22px;
}

.gateway-list-item strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.gateway-list-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.75;
}

/* visual side */
.gateway-visual {
    position: relative;
}

.gateway-visual__frame {
    position: relative;
    min-height: 760px;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 20%, rgba(169, 32, 44, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.gateway-visual__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(46px);
    pointer-events: none;
}

.gateway-visual__glow--one {
    width: 220px;
    height: 220px;
    background: rgba(169, 32, 44, 0.18);
    top: 8%;
    right: 8%;
}

.gateway-visual__glow--two {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.06);
    bottom: 10%;
    left: 8%;
}

.gateway-visual__main {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    will-change: transform;
}

.gateway-visual__main img {
    width: min(100%, 760px);
    height: auto;
    object-fit: contain;
    display: block;
    filter:
        drop-shadow(0 30px 60px rgba(0, 0, 0, 0.28)) drop-shadow(0 10px 24px rgba(169, 32, 44, 0.12));
}

.gateway-floating {
    min-width: 270px;
    max-width: 290px;
    padding: 16px 18px;
    align-items: flex-start;
    position: absolute;
    z-index: 3;
    display: flex;
    gap: 12px;
    min-width: 270px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(12, 12, 16, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    will-change: transform;
}

.gateway-floating--top {
    top: 50px;
    left: 30px;
}

.gateway-floating--bottom {
    right: 30px;
    bottom: 120px;
}

.gateway-floating__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(169, 32, 44, 0.16);
    border: 1px solid rgba(169, 32, 44, 0.20);
    color: #ffffff;
    flex: 0 0 auto;
}

.gateway-floating__icon svg {
    width: 18px;
    height: 18px;
}

.gateway-floating strong {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.35;
    white-space: normal;
    display: block;
    color: #ffffff;
}

.gateway-floating p {
    font-size: 12px;
    line-height: 1.6;
    white-space: normal;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1200px) {
    .gateway-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    }

    .gateway-visual__frame {
        min-height: 680px;
        padding: 32px;
    }

    .gateway-floating--top {
        top: 40px;
        left: 30px;
    }

    .gateway-floating--bottom {
        right: 30px;
        bottom: 120px;
    }
}

@media (max-width: 991px) {
    .gateway-section {
        padding: 84px 0;
    }

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

    .gateway-content {
        max-width: 100%;
    }

    .gateway-visual__frame {
        min-height: 560px;
        padding: 24px;
    }

    .gateway-visual__main img {
        width: min(100%, 620px);
    }

    .gateway-floating {
        min-width: auto;
        max-width: 240px;
        padding: 14px 16px;
    }
}

@media (max-width: 576px) {
    .gateway-title {
        font-size: clamp(30px, 9vw, 42px);
    }

    .gateway-desc {
        font-size: 16px;
    }

    .gateway-list-item {
        grid-template-columns: 50px 1fr;
        padding: 16px;
        border-radius: 20px;
    }

    .gateway-list-icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .gateway-visual__frame {
        min-height: 460px;
        border-radius: 26px;
        padding: 18px;
    }

    .gateway-floating--top {
        top: 16px;
        left: 16px;
    }

    .gateway-floating--bottom {
        right: 16px;
        bottom: 16px;
    }

    .gateway-floating {
        max-width: 200px;
        gap: 10px;
        padding: 12px 14px;
        border-radius: 18px;
    }

    .gateway-floating__icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .gateway-floating strong {
        font-size: 14px;
    }

    .gateway-floating p {
        font-size: 12px;
    }
}

/* =========================================================
   SECTION BRIDGE SYSTEM
   ========================================================= */

.section-bridge-bottom,
.section-bridge-top {
    position: relative;
    isolation: isolate;
}

/* üst section'ın altını yumuşatır */
.section-bridge-bottom::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 140px;
    pointer-events: none;
    z-index: 5;
    background: linear-gradient(180deg,
            rgba(11, 11, 16, 0) 0%,
            rgba(11, 11, 16, 0.18) 32%,
            rgba(11, 11, 16, 0.52) 68%,
            rgba(11, 11, 16, 0.92) 100%);
}

/* alt section'ın üstünü yumuşatır */
.section-bridge-top::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 140px;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(11, 11, 16, 0.92) 0%,
            rgba(11, 11, 16, 0.52) 38%,
            rgba(11, 11, 16, 0.18) 72%,
            rgba(11, 11, 16, 0) 100%);
}

/* kırmızı markalı hafif glow isteyen geçiş */
.section-bridge-red::after,
.section-bridge-red::before {
    background:
        radial-gradient(circle at 50% 50%, rgba(169, 32, 44, 0.10), transparent 42%),
        linear-gradient(180deg,
            rgba(11, 11, 16, 0.92) 0%,
            rgba(11, 11, 16, 0.50) 38%,
            rgba(11, 11, 16, 0.16) 72%,
            rgba(11, 11, 16, 0) 100%);
}

/* =========================================================
   ESSENTIAL SOLUTIONS SECTION
   ========================================================= */

.essential-solutions-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(169, 32, 44, 0.06), transparent 22%),
        radial-gradient(circle at 80% 30%, rgba(169, 32, 44, 0.04), transparent 18%),
        linear-gradient(180deg, #ffffff 0%, #f8f5f3 100%);
    overflow: hidden;
}

.essential-solutions-head {
    max-width: 1080px;
    margin: 0 auto 46px;
    text-align: center;
}

.essential-solutions-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(169, 32, 44, 0.08);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.essential-solutions-title {
    margin: 20px 0 0;
    color: #17181b;
    font-size: clamp(34px, 4.6vw, 64px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.essential-slider {
    position: relative;
    padding: 0 74px 46px;
}

.essential-slider-stage {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.essential-slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100%, 360px);
    transform-origin: center center;
    transition:
        transform .7s cubic-bezier(.22, 1, .36, 1),
        opacity .7s cubic-bezier(.22, 1, .36, 1),
        filter .7s cubic-bezier(.22, 1, .36, 1),
        z-index .01s linear;
    will-change: transform, opacity, filter;
}

.essential-slide-hit {
    position: absolute;
    inset: 0;
    z-index: 5;
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 34px;
}

.essential-slide-card {
    position: relative;
    min-height: 560px;
    padding: 28px 28px 30px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f6 100%);
    border: 1px solid rgba(143, 24, 36, 0.08);
    box-shadow: 0 18px 50px rgba(22, 22, 26, 0.10);
    transition:
        box-shadow .5s ease,
        border-color .5s ease,
        background .5s ease;
}

.essential-slide-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(169, 32, 44, 0.08), transparent 24%),
        radial-gradient(circle at bottom left, rgba(169, 32, 44, 0.05), transparent 22%);
    pointer-events: none;
}

.essential-slide-visual {
    position: relative;
    z-index: 2;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 0;
}

.essential-slide-visual img {
    max-width: 100%;
    max-height: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 34px rgba(0,0,0,0.10));
}

.essential-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 14px;
}

.essential-slide-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(143, 24, 36, 0.70);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.essential-slide-content h3 {
    margin: 0 0 12px;
    color: #8f1824;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.essential-slide-content p {
    max-width: 290px;
    margin: 0 auto;
    color: #6d6671;
    font-size: 15px;
    line-height: 1.75;
}

/* states */
.essential-slide.is-left {
    z-index: 1;
    opacity: .72;
    filter: blur(.4px);
    transform: translateX(-142%) scale(.84);
}

.essential-slide.is-right {
    z-index: 1;
    opacity: .72;
    filter: blur(.4px);
    transform: translateX(42%) scale(.84);
}

.essential-slide.is-active {
    z-index: 3;
    opacity: 1;
    filter: blur(0);
    transform: translateX(-50%) scale(1);
}

.essential-slide.is-active .essential-slide-card {
    background:
        radial-gradient(circle at top right, rgba(169, 32, 44, 0.10), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
    border-color: rgba(169, 32, 44, 0.18);
    box-shadow:
        0 28px 80px rgba(22, 22, 26, 0.14),
        0 0 0 1px rgba(169, 32, 44, 0.06);
}

.essential-slide.is-active .essential-slide-visual img {
    transform: scale(1.06);
}

.essential-slide.is-left .essential-slide-card,
.essential-slide.is-right .essential-slide-card {
    box-shadow: 0 14px 34px rgba(22, 22, 26, 0.08);
}

.essential-slide.is-left .essential-slide-content,
.essential-slide.is-right .essential-slide-content {
    opacity: .88;
}

/* nav */
.essential-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(143, 24, 36, 0.12);
    background: rgba(255,255,255,0.86);
    color: #8f1824;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        border-color .3s ease;
    z-index: 8;
    box-shadow: 0 14px 30px rgba(22,22,26,0.08);
}

.essential-slider-nav:hover {
    background: #ffffff;
    border-color: rgba(169, 32, 44, 0.18);
    box-shadow: 0 18px 36px rgba(22,22,26,0.12);
}

.essential-slider-nav--prev {
    left: 0;
}

.essential-slider-nav--next {
    right: 0;
}

.essential-slider-nav svg {
    width: 20px;
    height: 20px;
}

/* dots */
.essential-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.essential-slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(143, 24, 36, 0.18);
    cursor: pointer;
    transition:
        width .3s ease,
        border-radius .3s ease,
        background .3s ease,
        transform .3s ease;
}

.essential-slider-dots button.is-active {
    width: 34px;
    border-radius: 999px;
    background: var(--color-primary);
}

/* responsive */
@media (max-width: 1200px) {
    .essential-slider-stage {
        min-height: 580px;
    }

    .essential-slide {
        width: min(100%, 320px);
    }

    .essential-slide-card {
        min-height: 530px;
    }

    .essential-slide.is-left {
        transform: translateX(-132%) scale(.82);
    }

    .essential-slide.is-right {
        transform: translateX(32%) scale(.82);
    }
}

@media (max-width: 991px) {
    .essential-solutions-section {
        padding: 84px 0;
    }

    .essential-slider {
        padding: 0 0 44px;
    }

    .essential-slider-stage {
        min-height: auto;
        display: block;
    }

    .essential-slide {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        display: none;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
    }

    .essential-slide.is-active {
        display: block;
    }

    .essential-slide-card {
        min-height: auto;
        border-radius: 28px;
    }

    .essential-slide-visual {
        min-height: 220px;
    }

    .essential-slide-visual img {
        max-height: 220px;
    }

    .essential-slider-nav {
        top: auto;
        bottom: -2px;
        transform: none;
        width: 50px;
        height: 50px;
    }

    .essential-slider-nav--prev {
        left: calc(50% - 62px);
    }

    .essential-slider-nav--next {
        right: calc(50% - 62px);
    }
}

@media (max-width: 576px) {
    .essential-solutions-title {
        font-size: clamp(30px, 9vw, 40px);
    }

    .essential-slide-card {
        padding: 22px 20px 24px;
    }

    .essential-slide-content h3 {
        font-size: 26px;
    }

    .essential-slide-content p {
        font-size: 14px;
    }
}

/* =========================================================
   PAYMENT STATS / CONTACT SECTION
   ========================================================= */

.payment-stats-section {
    position: relative;
    padding: 110px 0 120px;
    background:
        radial-gradient(circle at 20% 18%, rgba(169, 32, 44, 0.05), transparent 20%),
        linear-gradient(180deg, #ffffff 0%, #f8f4f2 100%);
    overflow: hidden;
}

.payment-stats-head {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.payment-stats-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(169, 32, 44, 0.08);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.payment-stats-title {
    margin: 18px 0 0;
    color: #17181b;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.payment-stats-grid {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 360px) 1fr;
    grid-template-areas:
        "card1 center card3"
        "card2 center card4";
    gap: 22px;
    align-items: stretch;
}

.payment-stats-grid > :nth-child(1) { grid-area: card1; }
.payment-stats-grid > :nth-child(2) { grid-area: card2; }
.payment-stats-grid > :nth-child(3) { grid-area: center; }
.payment-stats-grid > :nth-child(4) { grid-area: card3; }
.payment-stats-grid > :nth-child(5) { grid-area: card4; }

.payment-stat-card,
.payment-contact-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(21, 22, 26, 0.10);
    border: 1px solid rgba(143, 24, 36, 0.08);
    min-height: 230px;
}

.payment-stat-card {
    padding: 28px 28px 26px;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.payment-stat-card:hover,
.payment-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(21, 22, 26, 0.14);
}

.payment-stat-card__glow {
    position: absolute;
    inset: auto -20px -20px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    filter: blur(24px);
    opacity: .35;
    pointer-events: none;
}

.payment-stat-card--lime {
    background: linear-gradient(180deg, #eef3d7 0%, #e8efcb 100%);
}

.payment-stat-card--lime .payment-stat-card__glow {
    background: rgba(194, 221, 84, 0.60);
}

.payment-stat-card--peach {
    background: linear-gradient(180deg, #f6e2d4 0%, #f0d5c1 100%);
}

.payment-stat-card--peach .payment-stat-card__glow {
    background: rgba(255, 181, 117, 0.55);
}

.payment-stat-card--ice {
    background: linear-gradient(180deg, #e7eef9 0%, #dfe8f5 100%);
}

.payment-stat-card--ice .payment-stat-card__glow {
    background: rgba(157, 192, 255, 0.50);
}

.payment-stat-card--mint {
    background: linear-gradient(180deg, #daf0e4 0%, #d1eadc 100%);
}

.payment-stat-card--mint .payment-stat-card__glow {
    background: rgba(123, 217, 172, 0.55);
}

.payment-stat-card__number {
    position: relative;
    z-index: 2;
    margin: 0 0 14px;
    color: #a31f2b;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1;
    letter-spacing: -0.05em;
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.payment-stat-card__number small {
    font-size: .56em;
    line-height: 1.1;
    margin-top: 4px;
    font-weight: 700;
}

.payment-stat-card__text {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: 320px;
    color: #7c3941;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
}

/* center form card */
.payment-contact-card {
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 20%),
        linear-gradient(180deg, #7e2330 0%, #5e1a27 100%);
    min-height: 482px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.payment-contact-card__inner {
    width: 100%;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.payment-contact-card__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.86);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.payment-contact-card__title {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.payment-contact-card__desc {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.8;
}

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

.payment-contact-form__group {
    width: 100%;
}

.payment-contact-input {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    outline: none;
    transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.payment-contact-input::placeholder {
    color: rgba(255,255,255,0.52);
}

.payment-contact-input:focus {
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
}

.payment-contact-submit {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, #c92a37 0%, #A9202C 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        filter .3s ease;
    box-shadow: 0 18px 38px rgba(169, 32, 44, 0.26);
}

.payment-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(169, 32, 44, 0.34);
}

.payment-contact-submit svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 1100px) {
    .payment-stats-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "center center"
            "card1 card3"
            "card2 card4";
    }

    .payment-contact-card {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .payment-stats-section {
        padding: 84px 0 92px;
    }

    .payment-stats-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "center"
            "card1"
            "card2"
            "card3"
            "card4";
    }

    .payment-stat-card,
    .payment-contact-card {
        min-height: auto;
    }

    .payment-contact-card__inner {
        padding: 28px 22px;
    }
}

@media (max-width: 576px) {
    .payment-stats-title {
        font-size: clamp(30px, 9vw, 40px);
    }

    .payment-stat-card {
        padding: 22px 20px;
        border-radius: 22px;
    }

    .payment-contact-card {
        border-radius: 24px;
    }

    .payment-contact-card__title {
        font-size: 30px;
    }

    .payment-stat-card__text,
    .payment-contact-card__desc {
        font-size: 14px;
    }
}
/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    position: relative;
    padding: 80px 0 40px;
    background:
        radial-gradient(circle at 20% 20%, rgba(169, 32, 44, 0.08), transparent 24%),
        linear-gradient(180deg, #050507 0%, #0b0b10 100%);
    color: #ffffff;
    overflow: hidden;
}

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

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.footer-logo span {
    color: var(--color-primary);
}

.footer-desc {
    margin: 16px 0 22px;
    max-width: 360px;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background: rgba(169, 32, 44, 0.18);
    border-color: rgba(169, 32, 44, 0.30);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color .3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.50);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.50);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 60px 0 30px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
[data-animate] {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity 0.8s var(--transition-slow),
        transform 0.8s var(--transition-slow);
    will-change: opacity, transform;
}

[data-animate="fade-up"] {
    transform: translate3d(0, 30px, 0);
}

[data-animate="fade-scale"] {
    transform: translate3d(0, 24px, 0) scale(0.96);
}

[data-animate="fade-left"] {
    transform: translate3d(-32px, 0, 0);
}

[data-animate="fade-right"] {
    transform: translate3d(32px, 0, 0);
}

[data-animate="zoom-in"] {
    transform: scale(0.92);
}

[data-animate].animated {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
.page-banner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 150px 0 80px;
}

.page-banner--sm {
    padding: 130px 0 56px;
}

.page-banner--md {
    padding: 150px 0 80px;
}

.page-banner--lg {
    padding: 180px 0 110px;
}

.page-banner--dark {
    background:
        radial-gradient(circle at top left, var(--color-primary-soft), transparent 30%),
        radial-gradient(circle at right center, var(--color-secondary-soft), transparent 28%),
        linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-2) 100%);
    color: var(--color-text);
}

.page-banner--light {
    background:
        radial-gradient(circle at top left, var(--color-primary-soft), transparent 30%),
        radial-gradient(circle at right center, var(--color-secondary-soft), transparent 28%),
        linear-gradient(180deg, var(--color-surface-light) 0%, var(--color-surface-light-2) 100%);
    color: var(--color-text-dark);
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.page-banner-grid {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(to right, currentColor 1px, transparent 1px),
        linear-gradient(to bottom, currentColor 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 85%);
}

.page-banner--light .page-banner-grid {
    opacity: 0.04;
}

.page-banner-glow,
.page-banner-orb {
    position: absolute;
    border-radius: 999px;
    will-change: transform;
}

.page-banner-glow {
    filter: blur(80px);
}

.page-banner-glow--1 {
    top: -40px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: rgba(169, 32, 44, 0.24);
    animation: pageBannerFloat 9s ease-in-out infinite;
}

.page-banner-glow--2 {
    right: -80px;
    top: 20px;
    width: 300px;
    height: 300px;
    background: rgba(213, 176, 107, 0.18);
    animation: pageBannerFloat 11s ease-in-out infinite reverse;
}

.page-banner-orb--1 {
    left: 18%;
    top: 30%;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(30px);
    animation: pageBannerOrb 8s ease-in-out infinite;
}

.page-banner-orb--2 {
    right: 20%;
    top: 22%;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.06);
    filter: blur(24px);
    animation: pageBannerOrb 10s ease-in-out infinite reverse;
}

.page-banner--light .page-banner-orb--1,
.page-banner--light .page-banner-orb--2 {
    background: rgba(169, 32, 44, 0.08);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.page-banner--center .page-banner-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.page-banner-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.8;
}

.page-banner--center .page-banner-breadcrumb {
    justify-content: center;
}

.page-banner-breadcrumb a,
.page-banner-breadcrumb span {
    color: inherit;
    text-decoration: none;
}

.page-banner-breadcrumb a:hover {
    color: var(--color-secondary);
}

.page-banner-breadcrumb-separator {
    opacity: 0.45;
}

.page-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}

.page-banner--light .page-banner-eyebrow {
    background: var(--color-primary-soft);
    border-color: var(--color-primary-border);
    color: var(--color-primary);
}

.page-banner-title {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.page-banner-description {
    margin: 20px 0 0;
    max-width: 680px;
    font-size: 1.04rem;
    line-height: 1.8;
    opacity: 0.82;
}

.page-banner--center .page-banner-description {
    margin-left: auto;
    margin-right: auto;
}

@keyframes pageBannerFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, 18px, 0) scale(1.05);
    }
}

@keyframes pageBannerOrb {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(14px, -16px, 0);
    }
}

.section-space {
    padding: 110px 0;
}

.section-space--tight {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: var(--color-primary-soft);
    border: 1px solid var(--color-primary-border);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--color-text-dark);
}

.section-text {
    margin: 18px 0 0;
    color: var(--color-text-dark-soft);
    font-size: 1.02rem;
    line-height: 1.85;
}

.ps-intro-section {
    position: relative;
    overflow: hidden;
    background: var(--color-surface-light);
}

.ps-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
    align-items: center;
}

.ps-highlight-list {
    display: grid;
    gap: 16px;
    margin-top: 34px;
}

.ps-highlight-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: var(--color-surface-light);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-light-sm);
}

.ps-highlight-icon,
.ps-feature-icon,
.ps-related-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-text);
    box-shadow: var(--shadow-primary);
}

.ps-highlight-card h3,
.ps-feature-card h3,
.ps-mini-card h3,
.ps-flow-step h3,
.ps-related-card h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.ps-highlight-card p,
.ps-feature-card p,
.ps-mini-card p,
.ps-flow-step p,
.ps-related-card p {
    margin: 0;
    color: var(--color-text-dark-soft);
    line-height: 1.75;
}

.ps-intro-visual {
    position: relative;
}

.ps-device-card {
    position: relative;
    padding: 28px;
    border-radius: 32px;
    background: linear-gradient(180deg, var(--color-bg-2) 0%, var(--color-bg-3) 100%);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.ps-device-card img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
}

.ps-device-glow {
    position: absolute;
    inset: auto;
    top: -40px;
    right: -20px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(169, 32, 44, 0.28), transparent 70%);
    filter: blur(30px);
    animation: psFloatGlow 7s ease-in-out infinite;
}

.ps-feature-band {
    background: var(--color-surface-light-2);
}

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

.ps-feature-card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--color-surface-light);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-light-sm);
}

.ps-trust-section {
    background: var(--color-surface-light);
}

.ps-trust-shell {
    padding: 38px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-2) 100%);
    color: var(--color-text);
    box-shadow: var(--shadow-md);
}

.ps-trust-shell .section-title,
.ps-trust-shell .section-text {
    color: var(--color-text);
}

.ps-trust-shell .section-text {
    opacity: 0.8;
}

.ps-trust-shell .section-badge {
    background: var(--color-primary-soft);
    border-color: var(--color-primary-border);
    color: var(--color-secondary);
}

.ps-trust-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.ps-mini-card {
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

.ps-mini-card i {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.ps-mini-card h3,
.ps-mini-card p {
    color: var(--color-text);
}

.ps-mini-card p {
    opacity: 0.78;
}

.ps-flow-section {
    background: var(--color-surface-light-2);
}

.ps-flow-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ps-flow-step {
    position: relative;
    padding: 34px 28px 28px;
    min-height: 260px;
    border-radius: var(--radius-lg);
    background: var(--color-surface-light);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-light-sm);
}

.ps-flow-number {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: rgba(169, 32, 44, 0.22);
}

.ps-why-section {
    background: var(--color-surface-light);
}

.ps-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
}

.ps-accordion {
    display: grid;
    gap: 14px;
}

.ps-accordion-item {
    border-radius: var(--radius-md);
    background: var(--color-surface-light);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-light-sm);
    overflow: hidden;
}

.ps-accordion-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    cursor: pointer;
}

.ps-accordion-trigger i {
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.ps-accordion-item.active .ps-accordion-trigger i {
    transform: rotate(45deg);
}

.ps-accordion-content {
    display: none;
    padding: 0 24px 24px;
    color: var(--color-text-dark-soft);
    line-height: 1.8;
}

.ps-accordion-item.active .ps-accordion-content {
    display: block;
}

.ps-accordion-content p {
    margin: 0;
}

.ps-related-section {
    background: var(--color-surface-light-2);
}

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

.ps-related-card {
    position: relative;
    padding: 30px;
    border-radius: 30px;
    background: var(--color-surface-light);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-light-sm);
}

.ps-related-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.ps-related-tag {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    background: var(--color-secondary-soft);
    color: var(--color-secondary-hover);
    font-size: 12px;
    font-weight: 700;
}

.ps-related-card .btn {
    margin-top: 24px;
}

.ps-cta-section {
    background: var(--color-surface-light);
}

.ps-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--color-bg-2) 0%, var(--color-bg-3) 100%);
    box-shadow: var(--shadow-md);
}

.ps-cta-box .section-title,
.ps-cta-box .section-text {
    color: var(--color-text);
}

.ps-cta-box .section-text {
    opacity: 0.82;
}

.ps-cta-box .section-badge {
    background: var(--color-primary-soft);
    border-color: var(--color-primary-border);
    color: var(--color-secondary);
}

.ps-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    flex-shrink: 0;
}

.reveal-up,
.reveal-scale {
    animation: fadeUpSoft 0.8s ease both;
}

.reveal-scale {
    animation-name: fadeScaleSoft;
}

@keyframes psFloatGlow {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-10px, 18px, 0) scale(1.08);
    }
}

@keyframes fadeUpSoft {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeScaleSoft {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1199px) {
    .ps-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ps-trust-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .page-banner,
    .page-banner--md,
    .page-banner--lg {
        padding: 125px 0 70px;
    }

    .page-banner-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .page-banner-description {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .section-space {
        padding: 84px 0;
    }

    .ps-intro-grid,
    .ps-why-grid,
    .ps-related-grid,
    .ps-flow-track {
        grid-template-columns: 1fr;
    }

    .ps-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .page-banner {
        padding: 110px 0 56px;
    }

    .page-banner-breadcrumb {
        gap: 8px;
        margin-bottom: 14px;
        font-size: 12px;
    }

    .page-banner-eyebrow {
        margin-bottom: 14px;
        padding: 7px 12px;
        font-size: 11px;
    }

    .page-banner-description {
        margin-top: 16px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

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

    .ps-highlight-card,
    .ps-feature-card,
    .ps-related-card,
    .ps-flow-step,
    .ps-mini-card,
    .ps-cta-box,
    .ps-trust-shell {
        padding: 22px;
        border-radius: 22px;
    }

    .ps-accordion-trigger {
        padding: 20px;
    }

    .ps-accordion-content {
        padding: 0 20px 20px;
    }
}
.paylink-visual-wrap {
    position: relative;
}

.paylink-hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paylink-hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(50px);
    pointer-events: none;
}

.paylink-hero-glow--1 {
    left: 10%;
    top: 8%;
    width: 180px;
    height: 180px;
    background: rgba(169, 32, 44, 0.18);
}

.paylink-hero-glow--2 {
    right: 12%;
    bottom: 10%;
    width: 220px;
    height: 220px;
    background: rgba(213, 176, 107, 0.16);
}

.paylink-phone {
    position: relative;
    width: 320px;
    max-width: 100%;
    padding: 14px;
    border-radius: 38px;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-2) 100%);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.paylink-phone-notch {
    width: 92px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 auto 12px;
}

.paylink-phone-screen {
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, var(--color-surface-light) 0%, var(--color-surface-light-2) 100%);
    min-height: 470px;
}

.paylink-phone-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.paylink-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--color-primary);
}

.paylink-phone-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.paylink-link-box {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    background: var(--color-surface-light);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-light-sm);
}

.paylink-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    flex-shrink: 0;
}

.paylink-link-copy strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-text-dark);
    font-size: 0.92rem;
    line-height: 1.4;
}

.paylink-link-copy span {
    display: block;
    color: var(--color-text-dark-soft);
    font-size: 0.84rem;
}

.paylink-amount-card {
    margin-top: 16px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-text);
    box-shadow: var(--shadow-primary);
}

.paylink-amount-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-soft);
    font-size: 0.84rem;
}

.paylink-amount-card strong {
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.paylink-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.paylink-methods span,
.paylink-action-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--color-surface-light);
    border: 1px solid var(--color-border-light);
    color: var(--color-text-dark);
    font-size: 0.84rem;
    font-weight: 600;
}

.paylink-phone-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.paylink-action-chip.is-primary {
    background: var(--color-secondary-soft);
    border-color: var(--color-secondary-border);
    color: var(--color-secondary-hover);
}

.paylink-floating-card,
.paylink-floating-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-light-md);
    color: var(--color-text-dark);
    font-size: 0.88rem;
    font-weight: 700;
}

.paylink-floating-card i,
.paylink-floating-badge i {
    color: var(--color-primary);
}

.paylink-floating-card--top {
    top: 12%;
    left: 0;
}

.paylink-floating-card--right {
    right: -10px;
    top: 46%;
}

.paylink-floating-badge--bottom {
    bottom: 10%;
    left: 12%;
}

.ps-flow-track--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ps-flow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 20px;
    background: var(--color-primary-soft);
    border: 1px solid var(--color-primary-border);
    color: var(--color-primary);
}

.ps-flow-icon i {
    width: 32px;
    height: 32px;
}

@media (max-width: 1199px) {
    .ps-flow-track--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .paylink-floating-card--top,
    .paylink-floating-card--right,
    .paylink-floating-badge--bottom {
        position: static;
    }

    .paylink-hero-visual {
        min-height: auto;
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .ps-flow-track--four {
        grid-template-columns: 1fr;
    }

    .paylink-phone {
        width: 100%;
        max-width: 340px;
    }

    .paylink-phone-screen {
        min-height: auto;
    }
}
.ps-logos-section {
    background: var(--color-surface-light);
}

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

.ps-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--color-surface-light);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-light-sm);
}

.ps-logo-card img {
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .ps-logos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ps-logos-grid {
        grid-template-columns: 1fr;
    }

    .ps-logo-card {
        min-height: 110px;
    }
}
.ps-gateway-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 18px;
    align-items: center;
}

.ps-gateway-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--color-surface-light);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-light-md);
}

.ps-gateway-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ps-gateway-card--one {
    min-height: 520px;
}

.ps-gateway-card--two,
.ps-gateway-card--three {
    min-height: 245px;
}

.ps-gateway-card--three {
    margin-top: 18px;
}

@media (max-width: 991px) {
    .ps-gateway-collage {
        grid-template-columns: 1fr;
    }

    .ps-gateway-card--one,
    .ps-gateway-card--two,
    .ps-gateway-card--three {
        min-height: 260px;
        margin-top: 0;
    }
}
.security-intro-section {
    background: var(--color-surface-light);
}

.security-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: center;
}

.security-visual-card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, var(--color-bg-2) 0%, var(--color-bg-3) 100%);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.security-visual-card img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    height: auto;
}

.security-visual-glow {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(169, 32, 44, 0.26), transparent 70%);
    filter: blur(32px);
}

.security-benefits-section {
    background: var(--color-surface-light-2);
}

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

.security-benefit-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--color-surface-light);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-light-sm);
}

.security-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: var(--color-primary-soft);
    border: 1px solid var(--color-primary-border);
    color: var(--color-primary);
}

.security-benefit-card h3 {
    margin: 0 0 10px;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.security-benefit-card p {
    margin: 0;
    color: var(--color-text-dark-soft);
    line-height: 1.75;
}

.security-impact-section {
    background: var(--color-surface-light);
}

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

.security-impact-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--color-surface-light);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-light-md);
}

.security-impact-media {
    height: 260px;
    overflow: hidden;
    background: var(--color-surface-light-2);
}

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

.security-impact-copy {
    padding: 28px;
}

.security-impact-badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.security-impact-card--safe .security-impact-badge {
    background: var(--color-secondary-soft);
    color: var(--color-secondary-hover);
}

.security-impact-card--alert .security-impact-badge {
    background: var(--color-primary-soft);
    color: var(--color-primary);
}

.security-impact-copy h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: var(--color-text-dark);
}

.security-impact-copy p {
    margin: 0;
    color: var(--color-text-dark-soft);
    line-height: 1.8;
}

.security-note-section {
    background: var(--color-surface-light-2);
}

.security-note-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    border-radius: var(--radius-xl);
    background: var(--color-surface-light);
    border: 1px solid var(--color-primary-border);
    box-shadow: var(--shadow-light-sm);
}

.security-note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    flex-shrink: 0;
}

.security-note-copy .section-text p {
    margin: 0 0 14px;
}

.security-note-copy .section-text p:last-child {
    margin-bottom: 0;
}

.security-cta-section {
    background: var(--color-surface-light);
}

@media (max-width: 1199px) {
    .security-benefit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .security-intro-grid,
    .security-impact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .security-benefit-card,
    .security-impact-copy,
    .security-note-box {
        padding: 22px;
    }

    .security-note-box {
        grid-template-columns: 1fr;
    }

    .security-impact-media {
        height: 220px;
    }
}
.contact-section {
    background: var(--color-surface-light);
}

.contact-grid {
    display: grid;
    /* grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr); */
    gap: 28px;
    align-items: start;
}

.contact-form-card,
.contact-info-card {
    border-radius: var(--radius-xl);
    background: var(--color-surface-light);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-light-md);
}

.contact-form-card {
    padding: 34px;
}

.contact-info-card {
    padding: 30px;
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.contact-form {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

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

.contact-field {
    display: grid;
    gap: 9px;
}

.contact-field label {
    color: var(--color-text-dark);
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-field sup {
    color: var(--color-primary);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    background: var(--color-surface-light-2);
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    font-size: 0.96rem;
    outline: none;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.contact-field input {
    height: 56px;
    padding: 0 18px;
}

.contact-field textarea {
    resize: vertical;
    min-height: 160px;
    padding: 18px;
}

.contact-field input:focus,
.contact-field textarea:focus {
    background: var(--color-surface-light);
    border-color: var(--color-primary-border);
    box-shadow: 0 0 0 4px var(--color-primary-soft);
}

.contact-info-title {
    margin: 0 0 24px;
    color: var(--color-text-dark);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.contact-info-list {
    display: grid;
    gap: 14px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: var(--color-surface-light-2);
    border: 1px solid var(--color-border-light);
    color: inherit;
    text-decoration: none;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-info-item:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary-border);
    box-shadow: var(--shadow-light-sm);
}

.contact-info-icon,
.contact-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 18px;
    background: var(--color-primary-soft);
    border: 1px solid var(--color-primary-border);
    color: var(--color-primary);
}

.contact-info-item small {
    display: block;
    margin-bottom: 4px;
    color: var(--color-text-dark-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-info-item strong {
    color: var(--color-text-dark);
    font-size: 0.98rem;
}

.contact-info-divider {
    height: 1px;
    margin: 26px 0;
    background: var(--color-border-light);
}

.contact-detail-block {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 18px;
}

.contact-detail-block h3 {
    margin: 0 0 7px;
    color: var(--color-text-dark);
    font-size: 1rem;
}

.contact-detail-block p {
    margin: 0;
    color: var(--color-text-dark-soft);
    line-height: 1.7;
}

.contact-closed {
    color: var(--color-primary) !important;
    font-weight: 700;
}

.contact-map-section {
    padding: 0 0 110px;
    background: var(--color-surface-light);
}

.contact-map-card {
    overflow: hidden;
    min-height: 440px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-light-md);
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 440px;
    border: 0;
}

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

    .contact-info-card {
        position: relative;
        top: auto;
    }

    .contact-map-section {
        padding-bottom: 84px;
    }
}

@media (max-width: 640px) {
    .contact-form-card,
    .contact-info-card {
        padding: 22px;
        border-radius: var(--radius-lg);
    }

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

    .contact-map-card,
    .contact-map-card iframe {
        min-height: 360px;
        height: 360px;
    }
}
.contact-info-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.sector-detail-section {
    background: var(--color-surface-light);
}

.sector-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: flex-start;
    padding: 42px;
    border-radius: var(--radius-xl);
    background: var(--color-surface-light);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-light-md);
}

.sector-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 26px;
    background: var(--color-primary-soft);
    border: 1px solid var(--color-primary-border);
    color: var(--color-primary);
    flex-shrink: 0;
}

.sector-detail-icon i {
    width: 36px;
    height: 36px;
}

.sector-detail-content {
    max-width: 850px;
}

@media (max-width: 767px) {
    .sector-detail-card {
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: var(--radius-lg);
    }

    .sector-detail-icon {
        width: 68px;
        height: 68px;
        border-radius: 22px;
    }

    .sector-detail-icon i {
        width: 30px;
        height: 30px;
    }
}
/* LEGAL PAGES */
.legal-container {
    width: min(100% - 40px, 980px);
}

.legal-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3.2vw, 44px);
    box-shadow: var(--shadow-md);
}

.legal-card h2 {
    font-size: clamp(1.22rem, 2.1vw, 1.5rem);
    line-height: 1.35;
    margin: 34px 0 12px;
}

.legal-card h3 {
    font-size: clamp(1.02rem, 1.7vw, 1.16rem);
    line-height: 1.45;
    margin: 20px 0 10px;
    color: var(--color-secondary);
}

.legal-card p,
.legal-card li {
    color: var(--color-text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.legal-card p {
    margin: 0 0 12px;
}

.legal-card ul {
    list-style: disc;
    margin: 0 0 14px 22px;
    padding: 0;
}

.legal-card li {
    margin-bottom: 8px;
}

.legal-card a {
    color: var(--color-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-card strong {
    color: var(--color-text);
}

@media (max-width: 767px) {
    .legal-card {
        border-radius: var(--radius-md);
        padding: 22px 18px;
    }

    .legal-card h2 {
        margin-top: 28px;
    }
}
