:root {
    --bg: #f8fbff;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --text: #1f2355;
    --muted: #66708f;
    --line: rgba(148, 163, 184, 0.22);
    --brand: #2653d4;
    --brand-soft: #7bb1ea;
    --highlight: #6f9fe7;
    --dark: #26255d;
    --shadow: 0 24px 70px rgba(38, 37, 93, 0.14);
    --shadow-soft: 0 12px 34px rgba(38, 37, 93, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.landing-page-v2 {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(123, 177, 234, 0.18), transparent 24%),
        radial-gradient(circle at top right, rgba(38, 83, 212, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff, #f4f7ff);
}

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

button,
input,
textarea {
    font: inherit;
}

.landing-shell-v2 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.landing-shell-v2::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 34rem;
    z-index: -1;
    background:
        radial-gradient(circle at top right, rgba(111, 159, 231, 0.32), transparent 34%),
        radial-gradient(circle at top left, rgba(38, 83, 212, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 1));
}

.container-v2 {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header-v2 {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(20px);
}

.header-bar-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand-v2 {
    display: flex;
    align-items: center;
    min-width: 0;
}

.brand-v2 img {
    display: block;
    width: 138px;
    height: auto;
}

.nav-v2,
.mobile-nav-v2 {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-v2 a,
.mobile-nav-v2 a,
.footer-links-v2 a {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-v2 a:hover,
.mobile-nav-v2 a:hover,
.footer-links-v2 a:hover {
    color: var(--brand);
}

.header-cta-v2,
.btn-dark-v2,
.btn-light-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-cta-v2,
.btn-dark-v2 {
    color: #ffffff;
    background: var(--dark);
    box-shadow: var(--shadow-soft);
}

.btn-light-v2 {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.header-cta-v2:hover,
.btn-dark-v2:hover,
.btn-light-v2:hover,
.store-badge-v2:hover {
    transform: translateY(-2px);
}

.nav-toggle-v2 {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    padding: 10px;
}

.nav-toggle-v2 span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
}

.mobile-nav-v2 {
    display: none;
    overflow-x: auto;
    padding: 12px 20px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-v2 {
    padding: 56px 0 34px;
}

.hero-grid-v2,
.split-v2,
.contact-grid-v2,
.footer-grid-v2 {
    display: grid;
    gap: 64px;
}

.hero-grid-v2 {
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
}

.hero-copy-v2 {
    display: grid;
    gap: 24px;
}

.pill-v2,
.eyebrow-chip-v2,
.contact-badge-v2,
.article-tag-v2 {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    width: fit-content;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.pill-v2 {
    gap: 10px;
    padding: 10px 16px;
    color: #475569;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(38, 83, 212, 0.12);
    box-shadow: var(--shadow-soft);
}

.pill-v2::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--highlight));
}

.eyebrow-chip-v2 {
    padding: 10px 16px;
    color: #64748b;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-copy-v2 h1,
.content-card-v2 h2,
.process-copy-v2 h2,
.section-head-v2 h2,
.banner-copy-v2 h2,
.contact-side-v2 h2,
.contact-form-head-v2 h2 {
    margin: 0;
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.hero-copy-v2 h1 {
    max-width: 760px;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.hero-copy-v2 p,
.content-card-v2 p,
.process-copy-v2 p,
.section-head-v2 p,
.banner-copy-v2 span,
.article-body-v2 p,
.contact-side-v2 span,
.footer-brand-v2 p,
.footer-contact-v2 p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

.hero-actions-v2,
.store-row-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.store-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.store-icon-v2 {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--dark);
    font-size: 0.9rem;
}

.store-badge-v2 small {
    display: block;
    color: #64748b;
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.store-badge-v2 span:last-child {
    color: var(--text);
    font-weight: 600;
}

.hero-visual-v2 {
    position: relative;
}

.hero-blur-v2 {
    position: absolute;
    inset: 0;
    border-radius: 48px;
    background: linear-gradient(135deg, rgba(38, 83, 212, 0.78), rgba(38, 37, 93, 0.72), rgba(123, 177, 234, 0.72));
    filter: blur(42px);
    opacity: 0.35;
}

.hero-panel-v2 {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 48px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.18)),
        linear-gradient(135deg, #234fcb, #26255d 58%, #6f9fe7);
    box-shadow: 0 28px 90px rgba(38, 83, 212, 0.22);
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    align-items: center;
    gap: 24px;
}

.hero-panel-v2::before,
.hero-panel-v2::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.hero-panel-v2::before {
    top: -50px;
    right: -60px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel-v2::after {
    left: -40px;
    bottom: 60px;
    width: 120px;
    height: 120px;
    background: rgba(125, 211, 252, 0.28);
    filter: blur(34px);
}

.hero-side-card-v2 {
    position: relative;
    z-index: 1;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 32px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.hero-side-card-v2 p,
.banner-copy-v2 p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.hero-side-card-v2 h2 {
    margin: 14px 0 12px;
    color: #ffffff;
    font-size: 2rem;
}

.hero-side-card-v2 span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.hero-device-stack-v2 {
    position: relative;
    z-index: 1;
    max-width: 390px;
    margin: 0 auto;
}

.device-v2 {
    position: relative;
    overflow: hidden;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 38px;
    background: linear-gradient(180deg, #2448bc, #1b2c77, #020617);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.34);
}

.device-notch-v2 {
    width: 96px;
    height: 20px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
}

.device-screen-v2 {
    overflow: hidden;
    padding: 22px 18px 20px;
    border-radius: 30px;
    background: linear-gradient(180deg, #c6e3ff, #d9efff 34%, #ffffff 100%);
}

.device-head-v2 {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.device-head-v2.centered-v2 {
    margin-bottom: 18px;
}

.device-head-v2 p {
    margin: 0;
    color: var(--brand);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.device-head-v2 h3 {
    margin: 10px 0 0;
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
}

.device-head-v2 span,
.device-lines-v2 span {
    display: block;
    height: 8px;
    margin-top: 10px;
    border-radius: 999px;
    background: rgba(191, 219, 254, 0.9);
}

.device-head-v2 span.short,
.device-lines-v2 span.short {
    width: 68%;
}

.device-card-v2 {
    margin-top: 20px;
    padding: 20px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.device-badge-v2 {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand), var(--brand-soft));
}

.device-button-v2 {
    height: 40px;
    margin-top: 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--brand-soft));
}

.device-glow-v2 {
    position: absolute;
    right: 34px;
    left: 34px;
    bottom: 14px;
    height: 84px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.42);
    filter: blur(36px);
}

.floating-card-v2 {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 24px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
}

.top-card-v2 {
    top: 58px;
    left: -30px;
}

.bottom-card-v2 {
    right: -10px;
    bottom: 36px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.92);
}

.floating-card-v2 strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.floating-card-v2 small {
    display: block;
    color: inherit;
    opacity: 0.82;
    line-height: 1.55;
}

.mini-icon-v2,
.rating-icon-v2,
.step-icon-v2,
.highlight-dot-v2 {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 18px;
}

.mini-icon-v2 {
    background: rgba(255, 255, 255, 0.18);
}

.mini-icon-v2::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
}

.rating-icon-v2 {
    border-radius: 16px;
    color: var(--brand);
    background: rgba(38, 83, 212, 0.1);
    font-size: 1.1rem;
}

.stats-v2 {
    padding-bottom: 42px;
}

.stats-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card-v2 {
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-soft);
}

.stat-card-v2 strong {
    display: block;
    color: var(--brand);
    font-family: "Orbitron", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
}

.stat-card-v2 span {
    display: block;
    margin-top: 8px;
    color: #475569;
    font-weight: 600;
}

.section-v2 {
    padding: 72px 0;
}

.split-v2 {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
}

.split-v2.reverse-v2 {
    grid-template-columns: 1fr 1fr;
}

.section-tag-v2 {
    margin: 0 0 18px;
    color: var(--brand);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.section-tag-v2.light {
    color: rgba(255, 255, 255, 0.8);
}

.content-card-v2,
.showcase-card-v2,
.responsive-panel-v2,
.contact-form-shell-v2 {
    border-radius: 34px;
}

.content-card-v2 h2,
.process-copy-v2 h2,
.section-head-v2 h2,
.banner-copy-v2 h2,
.contact-side-v2 h2,
.contact-form-head-v2 h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.content-card-v2.no-bg-v2,
.process-copy-v2 {
    background: transparent;
}

.showcase-card-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.showcase-frame-v2 {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
}

.showcase-media-v2 {
    min-height: 360px;
    border-radius: 24px;
}

.showcase-media-v2.primary {
    background: linear-gradient(180deg, #2448bc, #1b2c77, #020617);
}

.showcase-media-v2.secondary {
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #9ed1ff, #eef7ff);
}

.login-card-v2 {
    width: min(250px, 100%);
    padding: 28px 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.login-brand-v2 {
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 3px solid rgba(123, 177, 234, 0.45);
    background: #ffffff url("../adminassets/img/logo.png") center/68% no-repeat;
}

.login-card-v2 span {
    display: block;
    height: 12px;
    margin-top: 14px;
    border-radius: 999px;
    background: rgba(203, 213, 225, 0.9);
}

.login-card-v2 span.short {
    width: 62%;
}

.login-button-v2 {
    height: 42px;
    margin-top: 18px;
    border-radius: 999px;
    background: rgba(123, 177, 234, 1);
}

.process-visual-v2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 620px;
}

.process-rings-v2 {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0) 0 17%, rgba(38, 83, 212, 0.1) 17.3% 17.8%, rgba(255, 255, 255, 0) 18.2%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0) 0 27%, rgba(111, 159, 231, 0.08) 27.3% 27.8%, rgba(255, 255, 255, 0) 28.2%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0) 0 37%, rgba(123, 177, 234, 0.1) 37.3% 37.8%, rgba(255, 255, 255, 0) 38.2%);
}

.compact-device-v2 {
    width: min(320px, 100%);
}

.cylinder-illustration-v2 {
    width: 110px;
    height: 150px;
    margin: 18px auto 12px;
    border-radius: 22px 22px 30px 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(226, 242, 255, 0.95));
    position: relative;
}

.cylinder-illustration-v2::before,
.cylinder-illustration-v2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.cylinder-illustration-v2::before {
    top: -12px;
    width: 44px;
    height: 22px;
    border: 5px solid #ffffff;
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
}

.cylinder-illustration-v2::after {
    top: 28px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(38, 83, 212, 0.18);
}

.pager-v2 {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 18px 0 10px;
}

.pager-v2 span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.6);
}

.steps-v2 {
    display: grid;
    gap: 22px;
    margin: 30px 0;
}

.step-card-v2 {
    display: flex;
    gap: 20px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.step-icon-v2 {
    background: linear-gradient(135deg, var(--brand), var(--brand-soft));
}

.step-card-v2 small {
    display: inline-block;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.step-card-v2 h3,
.article-body-v2 h3,
.footer-v2 h3 {
    margin: 0;
    font-size: 1.28rem;
    font-weight: 700;
}

.step-card-v2 p {
    margin-top: 8px;
}

.responsive-panel-v2 {
    padding: 32px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.responsive-window-v2 {
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f8fafc, #eff6ff, #eef2ff);
}

.responsive-grid-v2 {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
}

.responsive-grid-v2.bottom {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 16px;
}

.responsive-box-v2.large,
.responsive-card-v2,
.responsive-line-v2 {
    border-radius: 22px;
}

.responsive-box-v2.large {
    min-height: 240px;
    background: linear-gradient(135deg, var(--brand), var(--brand-soft));
}

.responsive-stack-v2 {
    padding: 18px;
    border-radius: 22px;
    background: #f0f9ff;
}

.responsive-line-v2 {
    height: 12px;
    background: #cbd5e1;
}

.responsive-line-v2.short {
    width: 54%;
}

.responsive-card-v2 {
    min-height: 80px;
    margin-top: 14px;
    background: #ffffff;
}

.responsive-card-v2.blue {
    background: #eff6ff;
}

.highlight-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.highlight-item-v2 {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 24px;
    background: #f8fafc;
}

.highlight-dot-v2 {
    width: 28px;
    height: 28px;
    margin-top: 4px;
    border-radius: 50%;
    background: rgba(38, 83, 212, 0.12);
    position: relative;
}

.highlight-dot-v2::before {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: var(--brand);
}

.highlight-item-v2 p {
    color: #334155;
}

.banner-v2 {
    padding: 0 0 24px;
}

.banner-shell-v2 {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 48px 56px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 44px;
    background: linear-gradient(90deg, rgba(194, 226, 255, 0.92), rgba(38, 83, 212, 0.95), rgba(38, 37, 93, 0.96));
    box-shadow: 0 28px 90px rgba(62, 79, 161, 0.24);
}

.banner-copy-v2 {
    color: #ffffff;
}

.banner-copy-v2 h2 {
    margin: 12px 0;
    max-width: 780px;
    color: #ffffff;
}

.banner-copy-v2 span {
    max-width: 760px;
    display: block;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.shot-card-v2 {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.shot-card-inner-v2 {
    padding: 16px;
    border-radius: 26px;
}

.shot-card-v2.sky .shot-card-inner-v2 {
    background: linear-gradient(180deg, #bfdbfe, #ffffff, #e0f2fe);
}

.shot-card-v2.slate .shot-card-inner-v2 {
    background: linear-gradient(180deg, #e2e8f0, #ffffff, #f8fafc);
}

.shot-card-v2.indigo .shot-card-inner-v2 {
    background: linear-gradient(180deg, #dbeafe, #ffffff, #e0e7ff);
}

.shot-card-v2.zinc .shot-card-inner-v2 {
    background: linear-gradient(180deg, #e4e4e7, #ffffff, #f1f5f9);
}

.shot-card-v2.cyan .shot-card-inner-v2 {
    background: linear-gradient(180deg, #dbeafe, #ffffff, #cffafe);
}

.shot-label-v2 {
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-align: center;
    text-transform: uppercase;
}

.shot-ui-v2 {
    margin-top: 16px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
}

.shot-row-v2 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.shot-row-v2 span,
.shot-stack-v2 div {
    display: block;
    border-radius: 999px;
}

.shot-row-v2 span {
    height: 12px;
    width: 64%;
    background: #dbeafe;
}

.shot-row-v2 .small {
    width: 36%;
    background: #e2e8f0;
}

.shot-stack-v2 {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.shot-stack-v2 div {
    height: 44px;
    background: #ffffff;
}

.news-v2 {
    background: rgba(255, 255, 255, 0.72);
}

.article-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.article-card-v2 {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.article-cover-v2 {
    height: 220px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(194, 226, 255, 1), rgba(38, 83, 212, 0.92), rgba(38, 37, 93, 0.88));
}

.article-cover-overlay-v2 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.article-cover-overlay-v2 p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.article-cover-overlay-v2 h3 {
    margin-top: 8px;
    font-family: "Orbitron", sans-serif;
    font-size: 1.6rem;
    color: #ffffff;
}

.article-cover-overlay-v2 span {
    font-size: 1.8rem;
    opacity: 0.74;
}

.article-body-v2 {
    padding: 26px;
}

.article-tag-v2 {
    padding: 8px 12px;
    color: var(--brand);
    background: rgba(38, 83, 212, 0.1);
}

.article-body-v2 h3 {
    margin-top: 18px;
    font-size: 1.36rem;
    line-height: 1.4;
}

.article-body-v2 p {
    margin-top: 14px;
}

.contact-grid-v2 {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: stretch;
}

.contact-side-v2 {
    padding: 40px;
    border-radius: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), #26255d);
    box-shadow: 0 28px 80px rgba(38, 83, 212, 0.24);
}

.contact-side-v2 h2 {
    color: #ffffff;
    margin: 14px 0;
}

.contact-points-v2 {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.contact-points-v2 div {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
}

.contact-form-shell-v2 {
    padding: 34px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.contact-form-head-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-badge-v2 {
    padding: 10px 14px;
    color: #475569;
    background: #f8fafc;
}

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

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

.contact-form-v2 .full-v2 {
    grid-column: 1 / -1;
}

.contact-form-v2 span {
    color: #334155;
    font-size: 0.92rem;
    font-weight: 500;
}

.contact-form-v2 input,
.contact-form-v2 textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #f8fafc;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form-v2 input:focus,
.contact-form-v2 textarea:focus {
    border-color: rgba(38, 83, 212, 0.5);
    background: #ffffff;
}

.footer-v2 {
    padding: 26px 0 50px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

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

.footer-brand-v2 {
    display: grid;
    gap: 20px;
}

.footer-links-v2,
.footer-contact-v2 {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.socials-v2 {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.socials-v2 span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #64748b;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .hero-grid-v2,
    .split-v2,
    .split-v2.reverse-v2,
    .contact-grid-v2,
    .footer-grid-v2,
    .article-grid-v2,
    .stats-grid-v2,
    .shot-grid-v2,
    .showcase-card-v2,
    .highlight-grid-v2,
    .banner-shell-v2 {
        grid-template-columns: 1fr;
    }

    .hero-panel-v2 {
        grid-template-columns: 1fr;
    }

    .top-card-v2,
    .bottom-card-v2 {
        position: relative;
        inset: auto;
        margin-top: 18px;
    }

    .hero-device-stack-v2 {
        max-width: 420px;
    }
}

@media (max-width: 860px) {
    .nav-v2,
    .header-cta-v2 {
        display: none;
    }

    .nav-toggle-v2 {
        display: block;
    }

    .mobile-nav-v2.is-open {
        display: flex;
    }

    .hero-v2 {
        padding-top: 34px;
    }

    .contact-form-head-v2 {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .contact-form-v2 .full-v2 {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .container-v2 {
        width: min(100% - 28px, 1200px);
    }

    .header-bar-v2 {
        padding: 14px 0;
    }

    .brand-v2 img {
        width: 112px;
    }

    .hero-copy-v2 h1 {
        font-size: 2.4rem;
    }

    .hero-panel-v2,
    .contact-side-v2,
    .contact-form-shell-v2,
    .responsive-panel-v2,
    .banner-shell-v2 {
        padding: 22px;
        border-radius: 28px;
    }

    .store-row-v2,
    .hero-actions-v2 {
        flex-direction: column;
    }

    .store-badge-v2,
    .btn-dark-v2,
    .btn-light-v2 {
        width: 100%;
    }

    .section-v2 {
        padding: 56px 0;
    }
}
