:root {
    --oke-primary: #ff7c00;
    --oke-primary-dark: #de6500;
    --oke-blue: #2994d1;
    --oke-blue-dark: #1f6f9c;
    --oke-teal: #00a8a8;
    --oke-ink: #0a0c10;
    --oke-dark: #0f1115;
    --oke-soft: #1a1e23;
    --oke-soft-2: #242930;
    --oke-white: #ffffff;
    --oke-text: #e2e8f0;
    --oke-muted: #94a3b8;
    --oke-border: rgba(255, 255, 255, 0.08);
    --oke-shadow: 0 14px 42px rgba(0, 0, 0, 0.4);
    --oke-shadow-strong: 0 24px 70px rgba(0, 0, 0, 0.6);
    --font-main: 'Inter', sans-serif;
    --font-accent: 'Dancing Script', cursive;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--oke-text);
    background: var(--oke-dark);
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.oke-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    padding: 26px 0;
    transition: all 0.25s ease;
}

.oke-header.sticky {
    position: fixed;
    padding: 14px 0;
    background: rgba(14, 18, 23, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-link,
.nav-menu {
    display: flex;
    align-items: center;
}

.brand-link {
    gap: 10px;
    text-decoration: none;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--oke-primary);
    color: var(--oke-white);
    font-weight: 900;
    font-size: 1.48rem;
}

.brand-name {
    color: var(--oke-white);
    font-weight: 900;
    font-size: 1.45rem;
}

.brand-name span,
.footer-grid h3 span {
    color: var(--oke-primary);
}

.nav-menu {
    gap: 26px;
}

.nav-link,
.nav-cta {
    color: var(--oke-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    font-weight: 800;
}

.nav-link:hover {
    color: var(--oke-primary);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--oke-primary);
    box-shadow: 0 12px 26px rgba(255, 124, 0, 0.28);
}

.mobile-menu-toggle,
.mobile-menu-close {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--oke-white);
    cursor: pointer;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 91;
    width: min(84vw, 340px);
    padding: 20px;
    background: #11151b;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.48);
    transform: translateX(100%);
    transition: transform 0.24s ease;
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-head .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
}

.mobile-nav-head .brand-name {
    font-size: 1.05rem;
}

.mobile-nav-links {
    display: grid;
    gap: 10px;
    padding-top: 20px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 10px;
    color: var(--oke-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.86rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.055);
}

.mobile-nav-links a:hover {
    background: rgba(255, 124, 0, 0.14);
    color: var(--oke-primary);
}

.mobile-nav-links .mobile-nav-cta {
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    background: var(--oke-primary);
    color: var(--oke-white);
    box-shadow: 0 14px 30px rgba(255, 124, 0, 0.24);
}

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

body.mobile-nav-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.mobile-nav-open .mobile-nav-drawer {
    transform: translateX(0);
}

.oke-hero,
.product-hero {
    position: relative;
    color: var(--oke-white);
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 124, 0, 0.24), transparent 28%),
        radial-gradient(circle at 78% 28%, rgba(41, 148, 209, 0.22), transparent 26%),
        linear-gradient(135deg, #15181d 0%, #202832 58%, #111418 100%);
}

.oke-hero::before,
.product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.32;
}

.home-hero {
    padding: 178px 0 100px;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1060px;
    margin: 0 auto;
    text-align: center;
}

.home-hero h1,
.product-hero h1 {
    margin: 0;
    color: var(--oke-white);
    font-size: clamp(3rem, 4.35vw, 4.45rem);
    line-height: 1.03;
    font-weight: 900;
}

.home-hero h1 {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
}

.home-hero h1 span,
.section-header h2 span,
.support-copy h2 span,
.product-about-section h2 span {
    color: var(--oke-primary);
    font-family: var(--font-accent);
    font-weight: 700;
}

.home-hero h1 span {
    font-size: 1.13em;
}

.home-hero-copy,
.product-hero-copy p,
.section-header > p:last-child {
    color: var(--oke-muted);
    line-height: 1.75;
}

.home-hero-copy {
    max-width: 820px;
    margin: 24px auto 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
}

.section-kicker {
    margin: 0 0 12px;
    color: var(--oke-primary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 900;
}

.hero-buttons,
.detail-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.oke-btn,
.oke-btn-detail,
.oke-btn-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 13px 26px;
    border-radius: 999px;
    border: 0;
    color: var(--oke-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    font-weight: 900;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.oke-btn:hover,
.oke-btn-detail:hover,
.oke-btn-demo:hover {
    transform: translateY(-3px);
}

.oke-btn-primary,
.oke-btn-detail {
    background: linear-gradient(135deg, var(--oke-primary), #ff9d3b);
    box-shadow: 0 12px 28px rgba(255, 124, 0, 0.24);
}

.oke-btn-blue,
.oke-btn-demo {
    background: linear-gradient(135deg, var(--oke-blue), #43afe8);
    box-shadow: 0 12px 28px rgba(41, 148, 209, 0.22);
}

.oke-btn-whatsapp {
    background: linear-gradient(135deg, #18b96f, #24d887);
    box-shadow: 0 12px 28px rgba(24, 185, 111, 0.22);
}

.oke-btn-video {
    background: #e64545;
}

.oke-wave-divider {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    line-height: 0;
}

.oke-wave-divider svg {
    display: block;
    width: calc(100% + 2px);
    height: 94px;
}

.shape-fill {
    fill: var(--oke-dark);
}

.section-header {
    max-width: 780px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-header h2 {
    margin: 0 0 14px;
    color: var(--oke-white);
    font-size: clamp(2rem, 4vw, 3.05rem);
    line-height: 1.1;
    font-weight: 900;
}

.section-header-light h2,
.section-header-light p {
    color: var(--oke-white);
}

.oke-benefits,
.products-section,
.features-section,
.gallery-section,
.detail-pricing-section,
.faq-section,
.why-section,
.pricing-section,
.testimonials-section,
.support-section {
    padding: 96px 0;
    background: var(--oke-dark) !important;
}

.oke-benefits {
    background: var(--oke-soft);
}

.services-grid,
.trust-grid,
.products-grid,
.feature-list-grid,
.gallery-grid,
.pricing-grid,
.pricing-detail-grid,
.included-grid,
.footer-grid {
    display: grid;
    gap: 28px;
}

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

.oke-benefit-item,
.oke-product-card,
.feature-detail-card,
.pricing-card,
.testimonial-card,
.about-points article,
.included-card,
.faq-list details {
    background: var(--oke-soft);
    border: 1px solid var(--oke-border);
    box-shadow: var(--oke-shadow);
}

.oke-benefit-item {
    min-height: 260px;
    padding: 38px 26px;
    border-radius: 18px;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.oke-benefit-item:hover,
.oke-product-card:hover,
.feature-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--oke-shadow-strong);
}

.oke-benefit-item i {
    margin-bottom: 22px;
    color: var(--oke-primary);
    font-size: 3rem;
}

.oke-benefit-item:nth-child(2) i {
    color: #21759b;
}

.oke-benefit-item:nth-child(3) i {
    color: var(--oke-blue);
}

.oke-benefit-item:nth-child(4) i {
    color: #9b59b6;
}

.oke-benefit-item h3,
.oke-case-item h3,
.feature-detail-card h3,
.about-points h3 {
    margin: 0 0 10px;
    color: var(--oke-text);
    font-size: 1.05rem;
    font-weight: 900;
}

.oke-benefit-item p,
.oke-case-item p,
.feature-detail-card p,
.about-points p,
.pricing-card li,
.faq-list p {
    margin: 0;
    color: var(--oke-muted);
    line-height: 1.65;
    font-size: 0.94rem;
}

.trust-section {
    padding: 72px 0 34px;
}

#services,
#products,
#pricing,
#contact {
    scroll-margin-top: 82px;
}

.oke-use-cases {
    position: relative;
    overflow: hidden;
    padding: 72px;
    border-radius: 28px;
    color: var(--oke-white);
    background: linear-gradient(135deg, #263747 0%, var(--oke-blue) 100%);
    box-shadow: var(--oke-shadow-strong);
}

.oke-use-cases::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -160px;
    border-radius: 50%;
    border: 42px solid rgba(255, 255, 255, 0.1);
}

.trust-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oke-case-item {
    text-align: center;
}

.oke-case-item i {
    margin-bottom: 22px;
    color: var(--oke-white);
    font-size: 3.3rem;
}

.oke-case-item h3,
.oke-case-item p {
    color: var(--oke-white);
}

.products-section {
    background: var(--oke-dark);
}

.products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.oke-product-card {
    display: flex;
    min-height: 100%;
    overflow: hidden;
    border-radius: 20px;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.oke-product-image {
    position: relative;
    display: block;
    height: 238px;
    overflow: hidden;
    background: var(--oke-soft-2);
}

.oke-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.45s ease;
}

.oke-product-card:hover .oke-product-image img {
    transform: scale(1.06);
}

.oke-product-image::after {
    content: '';
    position: absolute;
    inset: 30% 0 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.78));
}

.oke-product-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 18px;
}

.oke-product-title {
    margin: 0;
    color: var(--oke-white);
    font-size: 1.08rem;
    line-height: 1.3;
}

.oke-product-body {
    display: flex;
    flex: 1;
    padding: 24px 22px 22px;
    flex-direction: column;
    text-align: center;
}

.oke-product-price {
    margin-bottom: 13px;
    color: var(--oke-primary);
    font-size: 1.22rem;
    font-weight: 900;
}

.oke-product-body p {
    min-height: 72px;
    margin: 0 0 22px;
    color: var(--oke-muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.oke-product-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
}

.why-section,
.pricing-section,
.testimonials-section,
.support-section,
.included-section,
.product-about-section,
.seo-copy-section,
.video-section {
    padding: 96px 0;
}

.why-section,
.seo-copy-section,
.included-section {
    background: var(--oke-soft);
}

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

.why-media {
    border-radius: 28px;
    overflow: hidden;
    background: var(--oke-white);
    box-shadow: var(--oke-shadow);
}

.why-media img {
    width: 100%;
    display: block;
}

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

.why-list article {
    padding: 24px;
    border-radius: 18px;
    background: var(--oke-white);
    border: 1px solid var(--oke-border);
}

.why-list i {
    color: var(--oke-primary);
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.pricing-section {
    background: linear-gradient(180deg, var(--oke-white), var(--oke-soft));
}

.pricing-grid,
.pricing-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
    margin: 0 auto;
}

.pricing-card {
    padding: 34px;
    border-radius: 24px;
}

.pricing-card.featured {
    border-color: rgba(255, 124, 0, 0.35);
    box-shadow: 0 24px 70px rgba(255, 124, 0, 0.14);
}

.pricing-label {
    margin: 0 0 10px;
    color: var(--oke-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.76rem;
    font-weight: 900;
}

.pricing-card h3 {
    margin: 0;
    color: var(--oke-text);
    font-size: 1.55rem;
}

.pricing-price {
    margin: 20px 0;
    color: var(--oke-text);
    font-size: 2.4rem;
    font-weight: 900;
}

.pricing-price.small {
    font-size: 2rem;
}

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

.pricing-card li::before,
.check-list li::before {
    content: '\f00c';
    margin-right: 10px;
    color: #23b26d;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.testimonials-section {
    background: var(--oke-white);
}

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

.testimonial-card {
    padding: 28px;
    border-radius: 20px;
}

.stars {
    color: #ffc107;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: var(--oke-muted);
    line-height: 1.7;
}

.testimonial-card h3 {
    margin: 20px 0 0;
    color: var(--oke-text);
    font-size: 1rem;
}

.support-section {
    background: var(--oke-soft);
}

.support-panel,
.split-section,
.product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: center;
}

.support-panel {
    max-width: 1080px;
    margin: 0 auto;
    padding: 58px;
    border-radius: 36px;
    background: linear-gradient(145deg, #1e242c, #161a1f);
    box-shadow: var(--oke-shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 58px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.support-panel::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 124, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.support-copy h2,
.split-section h2 {
    margin: 0 0 18px;
    color: var(--oke-white) !important;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.1;
    font-weight: 900;
}

.support-copy p:not(.section-kicker),
.rich-copy {
    color: var(--oke-muted) !important;
    line-height: 1.8;
    font-size: 1.02rem;
}

.support-visual {
    overflow: hidden;
    border-radius: 26px;
    background: #111418;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.support-visual img {
    width: 100%;
    display: block;
}

.product-hero {
    padding: 150px 0 90px;
}

.product-hero-grid {
    position: relative;
    z-index: 1;
}

.product-hero-copy p:not(.section-kicker) {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    font-size: 1.08rem;
}

.product-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.product-tags span {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--oke-white);
    font-size: 0.82rem;
    font-weight: 800;
}

.product-buy-card {
    padding: 22px;
    border-radius: 28px;
    background: var(--oke-soft);
    color: var(--oke-text);
    box-shadow: var(--oke-shadow-strong);
    border: 1px solid var(--oke-border);
}

.product-preview {
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--oke-soft);
    position: relative;
}

.product-preview img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(0);
    transition: transform 4s ease-in-out;
}

.product-preview:hover img {
    transform: translateY(min(0px, calc(-100% + 300px)));
}

.license-label {
    margin: 22px 0 0;
    color: var(--oke-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
    font-size: 0.78rem;
}

.detail-price {
    margin: 8px 0;
    color: var(--oke-text);
    font-size: 2.55rem;
    font-weight: 900;
}

.price-note {
    margin: 0 0 20px;
    color: var(--oke-muted);
}

.included-card {
    padding: 34px;
    border-radius: 24px;
}

.included-card h2 {
    margin: 0 0 24px;
    color: var(--oke-text);
    font-size: 1.8rem;
}

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

.included-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 18px;
    border-radius: 16px;
    background: var(--oke-soft);
    font-weight: 800;
}

.included-grid i {
    color: var(--oke-primary);
    font-size: 1.35rem;
}

.about-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

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

.about-points article {
    display: flex;
    gap: 18px;
    padding: 24px;
    border-radius: 18px;
}

.about-points i {
    color: var(--oke-primary);
    font-size: 1.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.about-points h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 900;
}

.feature-detail-card i {
    color: var(--oke-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    height: 520px;
    border-radius: 22px;
    background: var(--oke-white);
    box-shadow: var(--oke-shadow);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(0);
    transition: transform 6s ease-in-out;
}

.gallery-item:hover img {
    transform: translateY(min(0px, calc(-100% + 520px)));
}

.gallery-item span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--oke-white);
    background: rgba(17, 20, 24, 0.76);
    font-size: 0.9rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.features-section {
    background: var(--oke-dark);
}

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

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

.feature-showcase-card {
    overflow: hidden;
    border: 1px solid var(--oke-border);
    border-radius: 24px;
    background: var(--oke-soft);
    box-shadow: var(--oke-shadow);
}

.feature-showcase-image {
    height: 460px;
    background: var(--oke-soft);
    overflow: hidden;
}

.feature-showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(0);
    transition: transform 6s ease-in-out;
}

.feature-showcase-card:hover .feature-showcase-image img {
    transform: translateY(min(0px, calc(-100% + 460px)));
}

.feature-showcase-copy {
    padding: 28px;
}

.feature-showcase-copy i {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--oke-primary);
    background: rgba(255, 124, 0, 0.1);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-showcase-copy h3 {
    margin: 0;
    color: var(--oke-text);
    font-size: 1.25rem;
    font-weight: 900;
}

.feature-showcase-copy p {
    margin: 0;
    color: var(--oke-muted);
    line-height: 1.7;
}

.feature-detail-card {
    min-height: 190px;
    padding: 28px;
    border-radius: 20px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.split-section.compact {
    align-items: start;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--oke-text);
    line-height: 1.7;
}

.check-list.muted {
    color: var(--oke-muted);
}

.oke-video-container {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 24px;
    background: var(--oke-dark);
    box-shadow: var(--oke-shadow-strong);
}

.oke-video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.detail-pricing-section {
    background: var(--oke-soft);
}

.faq-list {
    display: grid;
    max-width: 880px;
    gap: 14px;
    margin: 0 auto;
}

.faq-list details {
    padding: 22px 26px;
    border-radius: 18px;
}

.faq-list summary {
    cursor: pointer;
    color: var(--oke-text);
    font-weight: 900;
}

.faq-list p {
    margin-top: 12px;
}

.oke-footer-skyline {
    padding: 74px 0 28px;
    color: var(--oke-white);
    background:
        linear-gradient(135deg, rgba(255, 124, 0, 0.12), transparent 28%),
        linear-gradient(180deg, #111418 0%, #1a1e23 100%);
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 38px;
    margin-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-cta h2 {
    max-width: 720px;
    margin: 0;
    color: var(--oke-white);
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    line-height: 1.15;
}

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

.footer-grid h3,
.footer-grid h4 {
    margin: 0 0 16px;
    color: var(--oke-white);
}

.footer-grid p,
.footer-grid a {
    display: block;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
}

.footer-grid a:hover {
    color: var(--oke-white);
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
    font-size: 0.9rem;
}

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

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

@media (max-width: 820px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav-menu {
        display: none;
    }

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

    .home-hero,
    .product-hero {
        padding-top: 126px;
    }

    .support-panel,
    .split-section,
    .product-hero-grid,
    .why-grid,
    .pricing-grid,
    .pricing-detail-grid,
    .footer-grid,
    .footer-cta {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        display: grid;
    }

    .support-panel,
    .oke-use-cases {
        padding: 30px;
    }

    .trust-grid,
    .gallery-grid,
    .feature-showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .services-grid,
    .products-grid,
    .feature-list-grid,
    .included-grid,
    .testimonial-grid,
    .why-list {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding: 90px 0 34px !important;
    }

    .home-hero h1, .product-hero h1 {
        font-size: 2.1rem !important;
    }

    .oke-benefits,
    .products-section,
    .features-section,
    .gallery-section,
    .detail-pricing-section,
    .faq-section,
    .why-section,
    .pricing-section,
    .testimonials-section,
    .support-section,
    .included-section,
    .product-about-section,
    .seo-copy-section,
    .video-section {
        padding: 34px 0 !important;
    }

    .services-grid,
    .trust-grid,
    .products-grid,
    .feature-list-grid,
    .gallery-grid,
    .pricing-grid,
    .pricing-detail-grid,
    .included-grid,
    .footer-grid {
        gap: 12px !important;
    }

    .oke-benefit-item,
    .oke-product-card,
    .feature-detail-card,
    .pricing-card,
    .testimonial-card,
    .about-points article,
    .included-card {
        padding: 18px 16px !important;
    }

    .oke-benefit-item {
        min-height: 0 !important;
        border-radius: 14px !important;
    }

    .oke-benefit-item i, .oke-case-item i {
        margin-bottom: 8px !important;
        font-size: 2rem !important;
    }

    .oke-benefit-item h3 {
        margin-bottom: 6px !important;
        font-size: 1rem !important;
    }

    .oke-benefit-item p {
        line-height: 1.45 !important;
        font-size: 0.9rem !important;
    }

    .support-panel {
        padding: 24px 18px !important;
        gap: 24px !important;
    }

    .about-points {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .section-header {
        margin-bottom: 22px !important;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }

    .section-kicker {
        margin-bottom: 6px !important;
    }

    .oke-product-footer,
    .hero-buttons,
    .detail-actions {
        grid-template-columns: 1fr;
        display: grid;
        width: 100%;
    }

    .product-preview {
        height: 380px;
    }

    .product-preview img {
        height: auto;
        transform: translateY(0);
    }

    .product-preview:hover img {
        transform: translateY(min(0px, calc(-100% + 380px)));
    }

    .gallery-item {
        height: 380px;
    }

    .gallery-item img {
        height: auto;
        transform: translateY(0);
    }

    .gallery-item:hover img {
        transform: translateY(min(0px, calc(-100% + 380px)));
    }

    .brand-name {
        font-size: 1.08rem;
    }
}

.why-list article {
    padding: 24px;
    background: var(--oke-white) !important;
    border-radius: 20px;
    box-shadow: var(--oke-shadow);
}

.why-list h3 {
    margin: 0 0 10px;
    color: var(--oke-ink) !important;
    font-size: 1.05rem;
    font-weight: 900;
}

.why-list p {
    margin: 0;
    color: #4b5563 !important;
    line-height: 1.6;
    font-size: 0.94rem;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--oke-primary);
    color: var(--oke-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(255, 124, 0, 0.4);
    font-size: 1.2rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--oke-primary-dark);
}
