:root {
    --bg: #ebeff5;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --ink: #111827;
    --muted: #475569;
    --line: rgba(15, 23, 42, 0.12);
    --brand: #111827;
    --brand-2: #ef7d20;
    --brand-3: #d55f09;
    --radius: 18px;
    --radius-lg: 26px;
    --shadow-soft: 0 16px 38px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 20px 52px rgba(15, 23, 42, 0.16);
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --font-head: "Rajdhani", "Trebuchet MS", sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background:
        radial-gradient(circle at 0% 0%, #dde6f5 0%, transparent 38%),
        radial-gradient(circle at 100% 10%, #f4d8bd 0%, transparent 32%),
        linear-gradient(180deg, #f3f6fb 0%, var(--bg) 100%);
}

header,
main,
footer {
    overflow-x: clip;
}

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

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

.container {
    width: min(1480px, 94vw);
    margin: 0 auto;
}

.top-strip {
    background: #0b1220;
    color: #e5e7eb;
    border-bottom: 1px solid rgba(229, 231, 235, 0.14);
}

.top-strip-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    backdrop-filter: blur(10px);
    background: rgba(248, 250, 252, 0.92);
    border-bottom: 1px solid var(--line);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.brand-logo-wrap {
    width: clamp(136px, 16vw, 184px);
    height: clamp(54px, 6.2vw, 66px);
    border-radius: 14px;
    background: #070b12;
    border: 1px solid rgba(15, 23, 42, 0.34);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 9px 22px rgba(15, 23, 42, 0.14);
    overflow: hidden;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px 10px;
}

.brand-logo-full {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.brand-word {
    display: none;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.chip {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.84);
    color: var(--muted);
    border-radius: 999px;
    padding: 0.48rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.chip:hover {
    border-color: rgba(239, 125, 32, 0.45);
    color: #111827;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.15rem 0 0.95rem;
    padding: 0.62rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.74);
    flex-wrap: wrap;
}

.primary-nav > a,
.primary-nav summary {
    font-weight: 700;
    font-size: 0.9rem;
    color: #334155;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    list-style: none;
}

.primary-nav > a:hover,
.primary-nav summary:hover {
    color: #0f172a;
    background: rgba(239, 125, 32, 0.14);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown summary::after {
    content: " +";
    font-weight: 800;
    color: var(--brand-2);
}

.nav-dropdown[open] summary {
    color: #0f172a;
    background: rgba(239, 125, 32, 0.14);
}

.mega-panel {
    position: absolute;
    left: 0;
    top: calc(100% + 0.55rem);
    width: min(980px, 92vw);
    border-radius: var(--radius);
    border: 1px solid rgba(15, 23, 42, 0.15);
    background: #ffffff;
    box-shadow: var(--shadow-strong);
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 0.8rem;
}

.mega-panel section {
    background: var(--surface-2);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    padding: 0.85rem 0.9rem;
}

.mega-panel h4 {
    margin: 0 0 0.55rem;
    font-size: 0.95rem;
    font-family: var(--font-head);
    letter-spacing: 0.05em;
    color: #0f172a;
}

.mega-panel a {
    display: block;
    font-size: 0.82rem;
    color: #475569;
    margin-bottom: 0.36rem;
}

.mega-panel a:hover {
    color: var(--brand-3);
}

.menu-parent-link {
    font-weight: 800;
    color: #0f172a !important;
    margin-bottom: 0.6rem !important;
    padding-bottom: 0.45rem;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.55);
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.74rem 1.2rem;
    font-weight: 800;
    font-size: 0.86rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    background: linear-gradient(130deg, var(--brand-2), var(--brand-3));
    color: #fff;
    box-shadow: 0 11px 24px rgba(213, 95, 9, 0.26);
}

.btn-outline {
    background: #fff;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.22);
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    border: 1px solid #1ca851;
    box-shadow: 0 11px 24px rgba(37, 211, 102, 0.26);
}

.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-1px);
}

.section {
    padding: 2.4rem 0;
}

.hero {
    padding: 2.2rem 0 1.1rem;
}

.hero-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1.1fr 0.9fr;
}

.hero-copy,
.hero-panel {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-soft);
}

.hero-copy {
    background: linear-gradient(150deg, #ffffff, #f1f6fe);
    padding: 2rem;
}

.hero-panel {
    background: linear-gradient(160deg, #111827, #1f2937);
    color: #dbe4ef;
    padding: 1.7rem;
}

.kicker {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-2);
}

.hero h1,
.page-head h1,
.cta-banner h2 {
    font-family: var(--font-head);
    line-height: 1.05;
    letter-spacing: 0.03em;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin: 0.6rem 0 0.8rem;
}

.hero-copy p {
    max-width: 62ch;
    color: #334155;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.15rem;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.badge-row span {
    border-radius: 999px;
    border: 1px solid rgba(219, 228, 239, 0.34);
    padding: 0.25rem 0.62rem;
    font-size: 0.76rem;
    color: #dbe4ef;
    font-weight: 700;
}

.hero-panel h3 {
    margin: 0.9rem 0 0.55rem;
    font-size: 1.45rem;
    font-family: var(--font-head);
}

.hero-panel p {
    margin: 0;
    color: #c5d2e3;
}

.hero-list {
    margin: 1rem 0 0;
    padding-left: 1rem;
    color: #dbe4ef;
    line-height: 1.65;
    font-size: 0.88rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(255px, 300px);
    gap: 1rem;
    align-items: stretch;
}

.showcase-wrap > .container {
    width: min(1480px, 94vw);
}

.showcase-main {
    min-width: 0;
}

.showcase-side {
    display: grid;
    gap: 0.85rem;
}

.showcase-side-card {
    border-radius: var(--radius);
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: linear-gradient(145deg, #ffffff, #f5f8fc);
    box-shadow: var(--shadow-soft);
    padding: 0.95rem;
    min-height: 160px;
}

.showcase-side-card h4 {
    margin: 0;
    color: #ef7d20;
    font-size: 0.88rem;
}

.showcase-side-card h3 {
    margin: 0.3rem 0 0.45rem;
    font-family: var(--font-head);
    font-size: 1.05rem;
}

.showcase-side-card a {
    color: #475569;
    font-weight: 700;
    font-size: 0.85rem;
}

.showcase-side-card.danger {
    background: linear-gradient(155deg, #fff5f2, #ffffff);
}

.intro-slider {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(158deg, #f7f8fb, #eef3fa);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
    padding: 1.2rem 1.2rem 2.3rem;
    height: 462px;
    overflow: hidden;
}

.intro-slide {
    display: none;
    color: #0f172a;
    height: 100%;
}

.intro-slide.active {
    display: block;
    animation: fadeUp 0.35s ease;
}

.intro-slide-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
    gap: 1.25rem;
    align-items: stretch;
    height: 100%;
}

.intro-slide-copy {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.intro-eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    color: #ef7d20;
}

.intro-slide-copy h1,
.intro-slide-copy h2,
.intro-slide-copy h3 {
    margin: 0 0 0.65rem;
    font-family: var(--font-head);
    letter-spacing: 0.04em;
    font-size: clamp(1.5rem, 2.3vw, 2.05rem);
    line-height: 1.1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.intro-slide-copy p {
    margin: 0;
    color: #334155;
    max-width: 56ch;
    min-height: 2.7rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.intro-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.8rem;
}

.intro-chip-row span {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.42);
    background: rgba(255, 255, 255, 0.92);
    color: #1e293b;
    padding: 0.34rem 0.62rem;
    font-size: 0.74rem;
    font-weight: 700;
}

.intro-proof-row {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.46rem;
}

.intro-proof-row div {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.36);
    background: rgba(255, 255, 255, 0.85);
    padding: 0.45rem 0.5rem;
    display: grid;
    gap: 0.08rem;
}

.intro-proof-row strong {
    font-family: var(--font-head);
    font-size: 1.02rem;
    color: #0f172a;
    line-height: 1.05;
}

.intro-proof-row span {
    font-size: 0.71rem;
    color: #475569;
    font-weight: 700;
}

.intro-slide-copy .btn-primary {
    margin-top: auto;
    align-self: flex-start;
}

.intro-slide-media {
    height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    overflow: hidden;
    background: linear-gradient(160deg, #ffffff, #eef3fa);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.85);
    padding: 0.7rem;
    display: grid;
    grid-template-rows: 38px 1fr;
    gap: 0.55rem;
}

.intro-brand-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.3rem;
}

.intro-brand-logo-wrap {
    border: 1px solid rgba(148, 163, 184, 0.38);
    background: #ffffff;
    border-radius: 9px;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.35rem;
}

.intro-brand-logo {
    width: auto;
    height: 18px;
    object-fit: contain;
    filter: saturate(0.9) contrast(1.08);
}

.intro-device-stage {
    position: relative;
    border: 1px solid rgba(203, 213, 225, 0.7);
    border-radius: 13px;
    background: linear-gradient(155deg, #f8fafc, #e2e8f0);
    overflow: hidden;
    min-height: 0;
    height: 100%;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    padding: 0.6rem;
}

.intro-main-device {
    width: 96%;
    height: 96%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0;
}

.intro-float {
    display: none;
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-float-a {
    right: 10px;
    bottom: 10px;
}

.intro-float-b {
    right: 90px;
    bottom: 22px;
}

.intro-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.intro-arrow.prev {
    left: 14px;
}

.intro-arrow.next {
    right: 14px;
}

.intro-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    gap: 0.35rem;
    justify-content: center;
}

.intro-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 0;
    background: rgba(148, 163, 184, 0.45);
    cursor: pointer;
}

.intro-dot.active {
    background: #ef7d20;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
}

.section-head h2 {
    margin: 0;
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    letter-spacing: 0.04em;
}

.section-head a {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-3);
}

.category-grid {
    display: grid;
    gap: 0.95rem;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.category-card {
    border-radius: var(--radius);
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    padding: 1.15rem;
}

.category-card h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-head);
    font-size: 1.12rem;
}

.category-card p {
    margin: 0;
    color: #475569;
    min-height: 46px;
    font-size: 0.88rem;
}

.category-card a {
    display: inline-flex;
    margin-top: 0.8rem;
    color: var(--brand-3);
    font-size: 0.85rem;
    font-weight: 800;
}

.card-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.product-card,
.empty-card {
    border-radius: var(--radius);
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    padding: 0.95rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.12);
}

.product-card h3 {
    margin: 0 0 0.45rem;
    font-size: 0.98rem;
    min-height: 40px;
}

.product-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.84rem;
    min-height: 48px;
}

.image-wrap {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0.7rem;
    background:
        radial-gradient(circle at 18% 12%, rgba(239, 125, 32, 0.08), transparent 30%),
        linear-gradient(145deg, #ffffff, #f3f6fb);
    border: 1px solid rgba(203, 213, 225, 0.58);
    display: grid;
    place-items: center;
    contain: paint;
}

.image-wrap img {
    width: calc(100% - 0.9rem);
    height: calc(100% - 0.9rem);
    max-width: calc(100% - 0.9rem);
    max-height: calc(100% - 0.9rem);
    object-fit: contain;
    object-position: center;
    padding: 0;
    margin: auto;
}

.img-fallback {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #0f172a;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.72rem;
}

.meta-row strong {
    font-size: 0.94rem;
}

.meta-row a {
    font-size: 0.81rem;
    font-weight: 800;
    color: var(--brand-3);
}

.price-stack {
    display: grid;
    gap: 0.08rem;
    line-height: 1.1;
}

.price-stack.compact {
    gap: 0.02rem;
}

.price-old {
    font-size: 0.76rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 700;
}

.price-new {
    font-size: 0.98rem;
    color: #0f172a;
    font-weight: 800;
}

.discount-badge {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: linear-gradient(130deg, #ef7d20, #d55f09);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.18rem 0.52rem;
    letter-spacing: 0.02em;
}

.price-note {
    display: inline-flex;
    margin-top: 0.3rem;
    font-size: 0.74rem;
    color: #64748b;
}

.muted {
    background: rgba(255, 255, 255, 0.58);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.value-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.value-grid article {
    border-radius: var(--radius);
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: #fff;
    box-shadow: var(--shadow-soft);
    padding: 1rem;
}

.value-grid h3 {
    margin-top: 0;
    margin-bottom: 0.55rem;
}

.value-grid p {
    margin: 0;
    color: #475569;
    font-size: 0.88rem;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.7rem;
}

.launch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.95rem;
}

.launch-card {
    border-radius: var(--radius);
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    padding: 1rem;
}

.launch-card h3 {
    margin: 0 0 0.45rem;
    font-family: var(--font-head);
    font-size: 1.05rem;
}

.launch-card p {
    margin: 0 0 0.45rem;
    color: #64748b;
    font-size: 0.85rem;
}

.launch-list {
    margin: 0;
    padding-left: 1rem;
    color: #334155;
    font-size: 0.84rem;
    line-height: 1.55;
}

.launch-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.9rem;
}

.step-card {
    border-radius: var(--radius);
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #fff;
    box-shadow: var(--shadow-soft);
    padding: 0.9rem;
}

.step-media {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.28);
    margin-bottom: 0.55rem;
    background: #f8fafc;
}

.step-media img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.step-card strong {
    display: inline-flex;
    margin-bottom: 0.35rem;
    font-family: var(--font-head);
    color: #ef7d20;
}

.step-card p {
    margin: 0;
    color: #334155;
    font-size: 0.86rem;
}

.launch-downloads {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.9rem;
}

.download-card {
    border-radius: var(--radius);
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: linear-gradient(155deg, #ffffff, #f6f9fe);
    box-shadow: var(--shadow-soft);
    padding: 0.95rem;
    display: grid;
    gap: 0.35rem;
}

.download-card strong {
    font-size: 0.92rem;
    color: #0f172a;
}

.download-card span {
    font-size: 0.8rem;
    color: #475569;
}

.brand-card {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: linear-gradient(150deg, #ffffff, #f5f8fc);
    box-shadow: var(--shadow-soft);
    min-height: 96px;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-items: center;
    gap: 0.35rem;
    padding: 0.6rem;
    font-family: var(--font-head);
    font-size: 0.86rem;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.brand-logo-box {
    width: 100%;
    height: 46px;
    display: grid;
    place-items: center;
}

.brand-logo-box img {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cta-banner {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(160deg, #111827, #232f41);
    color: #e5e7eb;
    box-shadow: var(--shadow-strong);
    padding: 2rem;
}

.cta-banner h2 {
    margin: 0 0 0.7rem;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.cta-banner p {
    margin: 0;
    max-width: 65ch;
    color: #ced7e3;
}

.rate-pill {
    display: inline-flex;
    margin-top: 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    padding: 0.27rem 0.7rem;
    font-size: 0.78rem;
    color: #1e293b;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.82);
}

.cta-banner .rate-pill {
    border-color: rgba(226, 232, 240, 0.35);
    color: #dbe4ef;
    background: transparent;
}

.page-head {
    margin-bottom: 1.15rem;
}

.page-head h1 {
    margin: 0.5rem 0 0.6rem;
    font-size: clamp(1.65rem, 2.9vw, 2.5rem);
}

.page-head p {
    margin: 0;
    color: #475569;
    max-width: 70ch;
}

.category-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.1rem;
}

.category-links a {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    color: #334155;
    padding: 0.35rem 0.72rem;
}

.category-links a:hover {
    border-color: rgba(239, 125, 32, 0.45);
    color: #0f172a;
}

.category-guide {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 0 1.15rem;
}

.category-guide-card,
.faq-card {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background:
        radial-gradient(circle at 10% 0%, rgba(239, 125, 32, 0.08), transparent 34%),
        linear-gradient(145deg, #ffffff, #f8fafc);
    box-shadow: var(--shadow-soft);
    padding: 1.05rem;
}

.category-guide-card h2,
.category-faq h2,
.faq-card h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-head);
    letter-spacing: 0.03em;
    color: #0f172a;
}

.category-guide-card h2 {
    font-size: 1.12rem;
}

.category-guide-card p,
.faq-card p {
    margin: 0;
    color: #475569;
    line-height: 1.62;
}

.category-guide-card ul {
    display: grid;
    gap: 0.42rem;
    margin: 0.8rem 0 0;
    padding: 0;
    list-style: none;
}

.category-guide-card li {
    position: relative;
    padding-left: 1rem;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 700;
}

.category-guide-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef7d20;
}

.category-faq {
    margin-top: 1.4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.faq-card h3 {
    font-size: 1rem;
}

.product-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.1rem;
}

.product-media {
    border-radius: var(--radius);
    border: 1px solid rgba(148, 163, 184, 0.22);
    background:
        radial-gradient(circle at 12% 10%, rgba(239, 125, 32, 0.08), transparent 32%),
        linear-gradient(145deg, #ffffff, #f5f8fc);
    box-shadow: var(--shadow-soft);
    padding: 0.95rem;
    display: grid;
    place-items: center;
    min-width: 0;
}

.product-media img,
.img-fallback.large {
    width: min(100%, 760px);
    height: clamp(320px, 44vw, 520px);
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff, #eef3fb);
    padding: 0.65rem;
}

.img-fallback.large {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #e8eef9, #f8fbff);
}

.product-info {
    border-radius: var(--radius);
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #fff;
    box-shadow: var(--shadow-soft);
    padding: 1.2rem;
}

.product-info h1 {
    margin: 0.5rem 0 0.65rem;
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    line-height: 1.15;
}

.product-info p {
    color: #475569;
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.72rem;
}

.product-badges span {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 0.24rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
}

.product-note {
    margin-top: 0.9rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.45);
    padding-top: 0.8rem;
}

.product-note p {
    margin: 0;
    font-size: 0.84rem;
}

.product-detail-section {
    padding-top: 0;
}

.product-detail-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: start;
}

.product-detail-card {
    border-radius: var(--radius);
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    padding: 1.25rem;
}

.product-detail-card:first-child {
    grid-row: span 2;
}

.product-detail-card h2 {
    margin: 0 0 0.8rem;
    font-family: var(--font-head);
    font-size: 1.42rem;
    letter-spacing: 0.03em;
    color: #0f172a;
}

.product-detail-card p {
    margin: 0;
    color: #334155;
    line-height: 1.78;
    white-space: pre-line;
}

.product-detail-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.product-detail-card li {
    position: relative;
    padding-left: 1.05rem;
    color: #334155;
    line-height: 1.55;
}

.product-detail-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand-2);
}

.paytr-frame {
    width: 100%;
    min-height: 620px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    background: #fff;
}

.prose {
    border-radius: var(--radius);
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: #fff;
    box-shadow: var(--shadow-soft);
    padding: 1.2rem;
}

.prose h1 {
    margin-top: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.contact-grid form.grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 0.72rem;
}

.contact-grid form.grid > div {
    display: grid;
    gap: 0.34rem;
}

.contact-grid form.grid label {
    display: block;
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.2;
    font-weight: 700;
    color: #334155;
}

.contact-grid form.grid input,
.contact-grid form.grid select,
.contact-grid form.grid textarea {
    width: 100%;
    min-width: 0;
    height: 44px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    border-radius: 10px;
    background: #fff;
    padding: 0.56rem 0.72rem;
    font-size: 0.92rem;
    color: #0f172a;
}

.contact-grid form.grid textarea {
    min-height: 120px;
    height: auto;
    resize: vertical;
}

.contact-grid form.grid input:focus,
.contact-grid form.grid select:focus,
.contact-grid form.grid textarea:focus {
    outline: none;
    border-color: rgba(239, 125, 32, 0.8);
    box-shadow: 0 0 0 3px rgba(239, 125, 32, 0.14);
}

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
    padding-bottom: 0.3rem;
}

.site-footer {
    margin-top: 2rem;
    background: #0b1220;
    color: #dbe4ef;
    padding: 2rem 0;
}

.footer-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-brand img {
    width: 148px;
    height: 58px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(203, 213, 225, 0.28);
    background: #070b12;
    padding: 6px 10px;
}

.footer-brand h4 {
    margin: 0;
}

.footer-grid h4 {
    margin: 0 0 0.7rem;
}

.footer-grid a,
.footer-grid p {
    display: block;
    margin-bottom: 0.45rem;
    color: #c9d3df;
    font-size: 0.9rem;
}

.footer-grid a:hover {
    color: #fff;
}

@media (max-width: 1120px) {
    .chip {
        display: none;
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .product-shell {
        grid-template-columns: 1fr;
    }

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

    .product-detail-card:first-child {
        grid-row: auto;
    }

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

    .intro-slider {
        height: auto;
        min-height: 0;
        overflow: visible;
        padding-bottom: 1rem;
    }

    .intro-slide {
        height: auto;
    }

    .intro-slide-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .intro-slide-media {
        height: auto;
        min-height: 300px;
        grid-template-rows: 40px minmax(220px, 1fr);
    }

    .intro-proof-row {
        max-width: 520px;
    }

    .intro-slide-copy {
        gap: 0.52rem;
    }

    .intro-slide-copy h1,
    .intro-slide-copy h2,
    .intro-slide-copy h3 {
        min-height: 3.1rem;
        -webkit-line-clamp: 2;
    }

    .intro-slide-copy p {
        min-height: 2.7rem;
        max-width: 100%;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .intro-device-stage {
        min-height: 230px;
        height: clamp(230px, 52vw, 320px);
        aspect-ratio: auto;
    }

    .intro-main-device {
        max-width: 94%;
        max-height: 94%;
    }

    .primary-nav {
        padding: 0.6rem;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown summary {
        width: 100%;
    }

    .mega-panel {
        position: static;
        width: 100%;
        margin-top: 0.6rem;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .top-strip-inner {
        justify-content: flex-start;
        padding: 0.6rem 0;
        gap: 0.45rem;
    }

    .brand-logo-wrap {
        width: 132px;
        height: 52px;
    }

    .intro-slider {
        padding: 1rem 1rem 0.85rem;
        height: auto;
    }

    .intro-slide-copy h1,
    .intro-slide-copy h2,
    .intro-slide-copy h3 {
        font-size: 1.42rem;
        min-height: 3rem;
    }

    .intro-brand-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .intro-slide-media {
        height: auto;
        min-height: 272px;
        grid-template-rows: 36px minmax(206px, 1fr);
    }

    .intro-device-stage {
        min-height: 206px;
        height: clamp(206px, 56vw, 280px);
    }

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

    .intro-float {
        display: none;
    }

    .intro-arrow {
        width: 30px;
        height: 30px;
    }

    .header-cta .btn-outline {
        padding: 0.58rem 0.9rem;
        font-size: 0.78rem;
    }

    .hero-copy,
    .hero-panel,
    .cta-banner {
        padding: 1.3rem;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }
}

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

.promo-strip {
    background: #e21d24;
    color: #fff;
    min-height: 38px;
    display: flex;
    align-items: center;
}

.promo-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.83rem;
    font-weight: 700;
}

.commerce-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: #f8fafc;
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-main {
    min-height: 74px;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 0.8rem;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    white-space: normal;
    min-width: 0;
}

.menu-trigger,
.header-links > a,
.header-dropdown summary {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 700;
    color: #334155;
    padding: 0.3rem 0.2rem;
    list-style: none;
}

.header-dropdown summary::-webkit-details-marker {
    display: none;
}

.header-dropdown {
    position: relative;
}

.header-dropdown-panel {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    width: 280px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.15);
    padding: 0.65rem;
    z-index: 30;
}

.header-dropdown-panel a {
    display: block;
    padding: 0.38rem 0.25rem;
    font-size: 0.83rem;
    color: #334155;
}

.header-search {
    display: flex;
    align-items: center;
    border: 1px solid rgba(148, 163, 184, 0.5);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}

.header-search input {
    border: 0;
    padding: 0.52rem 0.85rem;
    min-width: 0;
    width: 100%;
    font-size: 0.84rem;
}

.header-search button {
    border: 0;
    background: #fff;
    color: #334155;
    font-weight: 700;
    padding: 0.52rem 0.85rem;
    cursor: pointer;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.16rem 0.22rem;
    border: 1px solid #dbe3ef;
    border-radius: 14px;
    background: #fff;
}

.language-switcher select {
    width: 132px;
    max-width: 32vw;
    border: 0;
    outline: 0;
    background: transparent;
    color: #0f172a;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 800;
}

.header-icons a {
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
}

body {
    top: 0 !important;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    z-index: 95;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: min(330px, 92vw);
    height: 100vh;
    background: #fff;
    border-right: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.24);
    transform: translateX(-102%);
    transition: 0.22s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.side-menu.open {
    transform: translateX(0);
}

.side-menu-head {
    min-height: 54px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.side-menu-head h3 {
    margin: 0;
    font-family: var(--font-head);
    letter-spacing: 0.04em;
}

.side-menu-head button {
    border: 0;
    background: transparent;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
}

.side-menu-body {
    padding: 0.8rem;
    overflow-y: auto;
}

.side-menu-body h4 {
    margin: 0 0 0.65rem;
    font-family: var(--font-head);
    letter-spacing: 0.04em;
}

.side-menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 10px;
    padding: 0.48rem 0.58rem;
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
    color: #334155;
}

.side-menu-row strong {
    color: #0f172a;
    font-size: 0.8rem;
}

.side-menu-links {
    margin-top: 0.85rem;
    border-top: 1px solid rgba(148, 163, 184, 0.32);
    padding-top: 0.8rem;
}

.side-menu-links a {
    display: block;
    font-size: 0.83rem;
    color: #334155;
    padding: 0.35rem 0;
}

@media (max-width: 1080px) {
    .category-guide {
        grid-template-columns: 1fr;
    }

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

    .header-main {
        grid-template-columns: auto 1fr auto;
        gap: 0.6rem;
    }

    .header-links {
        order: 3;
        grid-column: 1 / -1;
        border-top: 1px solid rgba(148, 163, 184, 0.25);
        padding-top: 0.35rem;
        margin-bottom: 0.45rem;
        overflow: visible;
        flex-wrap: wrap;
        row-gap: 0.35rem;
    }

    .header-dropdown {
        position: static;
        width: 100%;
    }

    .header-dropdown summary {
        display: inline-flex;
        align-items: center;
        width: auto;
    }

    .header-dropdown-panel {
        position: static;
        width: 100%;
        margin-top: 0.4rem;
    }
}

@media (max-width: 760px) {
    .header-main {
        grid-template-columns: auto 1fr auto;
        row-gap: 0.5rem;
    }

    .header-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.4rem;
        align-items: stretch;
    }

    .menu-trigger,
    .header-links > a,
    .header-dropdown summary {
        width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0.46rem 0.5rem;
        font-size: 0.8rem;
        border: 1px solid rgba(148, 163, 184, 0.35);
        border-radius: 10px;
        background: #ffffff;
    }

    .header-dropdown {
        grid-column: 1 / -1;
    }

    .header-dropdown-panel a {
        padding: 0.5rem 0.35rem;
    }

    .header-search {
        display: none;
    }

    .header-icons > a:first-of-type {
        display: none;
    }
}

@media (max-width: 420px) {
    .header-links {
        grid-template-columns: 1fr;
    }

    .intro-slide-media {
        height: auto;
        min-height: 236px;
        grid-template-rows: 34px minmax(188px, 1fr);
    }

    .intro-device-stage {
        min-height: 188px;
        height: clamp(188px, 60vw, 240px);
    }

    .intro-slider {
        height: auto;
    }

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