/* 
    ==========================================================================
    Conecta Ponto e Acesso - CSS Principal
    ==========================================================================
    Estrutura:
    1. Variáveis e Reset
    2. Componentes Globais (Botões, Container)
    3. Cabeçalho e Navegação
    4. Mega Menu
    5. Seções (Hero, Bento, Soluções)
    6. Rodapé
    7. Responsividade
    ==========================================================================
*/

:root {
    /* Cores Principais */
    --primary: #00C878;
    --primary-dark: #00A663;
    --dark: #07141F;
    --bg: #F7FAF8;
    --text: #10201A;
    --muted: #66736D;
    --card: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.8);
    
    /* Bordas e Sombras */
    --radius-lg: 40px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Reset Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    gap: 12px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 200, 120, 0.2);
}

.btn-dark {
    background-color: var(--dark);
    color: white;
}

.btn-dark:hover {
    background-color: #0c1f2e;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(7, 20, 31, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #E2E8F0;
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-4px);
}

/* =============================
   Barra Superior de Acesso Rápido (Top Access Bar)
   ============================= */
.top-access-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background-color: var(--dark);
    border-bottom: 1px solid rgba(0, 200, 120, 0.15);
    z-index: 2100;
    display: flex;
    align-items: center;
}

.top-access-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-info {
    font-size: 12px;
    color: #94A3B8;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.top-bar-info i {
    color: var(--primary);
    margin-right: 6px;
}

.top-bar-info a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.top-bar-info a:hover {
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-link {
    font-size: 12px;
    color: #94A3B8;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.top-bar-link:hover {
    color: white;
}

.top-bar-link i {
    font-size: 11px;
    color: var(--primary);
}

/* Pill destacado para CTA de Acesso */
.top-bar-link.top-bar-highlight {
    background-color: var(--primary);
    color: var(--dark) !important;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 200, 120, 0.15);
}

.top-bar-link.top-bar-highlight i {
    color: var(--dark) !important;
}

.top-bar-link.top-bar-highlight:hover {
    background-color: var(--primary-dark);
    color: white !important;
    box-shadow: 0 6px 16px rgba(0, 200, 120, 0.25);
    transform: translateY(-1px);
}

.top-bar-link.top-bar-highlight:hover i {
    color: white !important;
}

@media (max-width: 1024px) {
    .top-access-bar {
        display: none;
    }
    header {
        top: 0 !important;
    }
}

/* Header - empurrado para baixo pela top bar */
header {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    z-index: 2000; /* High z-index to stay above hero */
    padding: 24px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

header.scrolled .logo img {
    filter: none !important;
}

header.on-banner:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
}

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

nav ul {
    display: flex;
    gap: 32px;
}

nav ul li a {
    font-weight: 500;
    font-size: 15px;
    color: var(--muted); /* Default dark for white backgrounds */
    transition: var(--transition);
}

header.on-banner:not(.scrolled) nav ul li a {
    color: white; /* White only when on a dark banner */
}

header.scrolled nav ul li a {
    color: var(--muted) !important;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li.has-mega > a.nav-link,
nav ul li.has-mega.active > a.nav-link,
nav ul li.has-mega:hover > a.nav-link,
header.on-banner:not(.scrolled) nav ul li.has-mega > a.nav-link,
header.scrolled nav ul li.has-mega > a.nav-link {
    color: var(--primary) !important;
}

.header-cta .btn {
    padding: 12px 24px;
    font-size: 14px;
}

/* Mega Menu */
.has-mega {
    position: static;
}

/* --- Novo Mega Menu (Estilo Orbix Studio - 3 Categorias) --- */
.mega-menu.flex-layout {
    position: fixed;
    top: 126px;
    left: 0;
    right: 0;
    width: 100vw;
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(7, 20, 31, 0.08);
    border-bottom: 1px solid rgba(7, 20, 31, 0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 2100;
    padding: 60px 0;
}

.mega-menu.flex-layout::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 40px;
    background: transparent;
    z-index: -1;
}

header.scrolled .mega-menu.flex-layout {
    top: 102px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
}

.has-mega:hover .mega-menu.flex-layout,
.has-mega.active .mega-menu.flex-layout {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
}

/* Container interno centralizado */
.mega-menu-inner {
    display: grid;
    grid-template-columns: 0.8fr 2.2fr;
    column-gap: 60px;
    row-gap: 24px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Coluna de Detalhes (Esquerda) */
.mega-menu-details {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(7, 20, 31, 0.08);
    padding-right: 40px;
}

.mega-details-title {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.mega-details-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.mega-details-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary) !important;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
    padding-top: 20px;
    align-self: flex-start;
}

.mega-details-link:hover {
    color: var(--primary-dark) !important;
}

.mega-details-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mega-details-link:hover i {
    transform: translateX(4px);
}

/* Grid de Cartões (Direita) */
.mega-menu-grid-3 {
    grid-column: 2;
    grid-row: 1;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    animation: fadeEffect 0.4s ease;
}
.mega-menu-grid-3.active {
    display: grid;
}

.mega-menu-grid-4 {
    grid-column: 2;
    grid-row: 2;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    animation: fadeEffect 0.4s ease;
}
.mega-menu-grid-4.active {
    display: grid;
}

@keyframes fadeEffect {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.mega-grid-card {
    background: #10201A;
    border: 1px solid rgba(7, 20, 31, 0.08);
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3 / 4;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.mega-grid-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(16, 32, 26, 0.15) 0%, rgba(16, 32, 26, 0.65) 55%, rgba(16, 32, 26, 0.96) 100%);
    z-index: 2;
    transition: opacity 0.4s ease, background 0.4s ease;
}

.mega-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 200, 120, 0.15);
    border-color: var(--primary);
}

.mega-grid-card:hover::before {
    background: linear-gradient(to bottom, rgba(0, 200, 120, 0.15) 0%, rgba(16, 32, 26, 0.5) 55%, rgba(16, 32, 26, 0.96) 100%);
}

.mega-card-body {
    padding: 24px;
    z-index: 3;
    position: relative;
}

.mega-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.mega-grid-card:hover .mega-card-title {
    color: var(--primary);
}

.mega-card-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* Área de Imagem do Cartão */
.mega-card-image-box {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.mega-card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-grid-card:hover .mega-card-image-box img {
    transform: scale(1.06);
}

.nav-link {
    position: relative;
    padding-bottom: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Landing pages de produtos de acesso */
.landing-brief {
    padding: 96px 0;
    background: #ffffff;
}

.landing-brief-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: start;
}

.landing-copy h2 {
    font-size: clamp(32px, 4vw, 54px);
    margin: 14px 0 22px;
    color: var(--dark);
}

.landing-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    max-width: 620px;
}

.landing-proof-list {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.landing-proof-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #334155;
    font-weight: 600;
}

.landing-proof-list i {
    color: var(--primary);
    margin-top: 4px;
}

.landing-panel {
    background: var(--dark);
    color: #ffffff;
    border-radius: 28px;
    padding: 36px;
}

.landing-panel h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.landing-panel p,
.landing-panel li {
    color: #B7C3CC;
}

.landing-panel ul {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.landing-panel li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.landing-panel i {
    color: var(--primary);
    margin-top: 4px;
}

.orientation-band {
    padding: 96px 0;
    background: var(--bg);
}

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

.orientation-item {
    background: #ffffff;
    border: 1px solid rgba(7, 20, 31, 0.08);
    border-radius: 22px;
    padding: 28px;
}

.orientation-item span {
    color: var(--primary);
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 14px;
}

.orientation-item h3 {
    margin: 12px 0 10px;
    font-size: 22px;
}

.orientation-item p {
    color: var(--muted);
}

.solution-form-section {
    padding: 96px 0;
    background: #ffffff;
}

.solution-form-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: start;
}

.solution-form {
    background: #F8FAFC;
    border: 1px solid rgba(7, 20, 31, 0.08);
    border-radius: 28px;
    padding: 32px;
}

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

.solution-form-field {
    display: grid;
    gap: 8px;
}

.solution-form-field.full {
    grid-column: 1 / -1;
}

.solution-form label {
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
}

.solution-form input,
.solution-form select,
.solution-form textarea {
    width: 100%;
    border: 1px solid rgba(7, 20, 31, 0.12);
    border-radius: 14px;
    padding: 14px 16px;
    font: inherit;
    color: var(--dark);
    background: #ffffff;
    outline: none;
}

.solution-form textarea {
    min-height: 112px;
    resize: vertical;
}

.solution-form input:focus,
.solution-form select:focus,
.solution-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 200, 120, 0.12);
}

.solution-form-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
}

.solution-form-note i {
    color: var(--primary);
    margin-top: 4px;
}

/* Landing page de alta segurança */
.high-security-page .landing-brief,
.high-security-page .orientation-band,
.high-security-page .security-applications,
.high-security-page .solution-form-section {
    padding: 80px 0;
}

.high-security-page .security-solutions-section,
.high-security-page .security-process {
    padding: 88px 0;
}

.high-security-page .section-header {
    margin-bottom: 52px;
}

.high-security-page .cta-final {
    padding: 88px 0;
}

.high-security-page .cta-final h2 {
    margin-bottom: 28px;
}

.high-security-page .cta-final p {
    margin-top: -8px;
    margin-bottom: 28px;
}

.product-hero.full-hero.high-security-hero {
    background-position: center center;
}

.product-hero.full-hero.high-security-hero .product-info {
    max-width: 650px;
    padding-top: 124px;
}

.hero-proof-list {
    display: grid;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-proof-list span {
    color: rgba(255, 255, 255, 0.94);
    font-weight: 600;
}

.hero-proof-list i {
    color: var(--primary);
    margin-right: 8px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.security-solutions-section {
    padding: 104px 0;
    background: #ffffff;
}

.security-solution-row {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 64px;
    align-items: center;
    padding: 44px 0;
    border-top: 1px solid rgba(7, 20, 31, 0.1);
}

.security-solution-row.reverse {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.security-solution-row.reverse .security-solution-media {
    order: 2;
}

.security-solution-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #E8ECEF;
}

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

.portal-detector-media img {
    object-position: 58% center;
}

.security-solution-copy {
    max-width: 560px;
}

.security-number {
    display: block;
    color: var(--primary);
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}

.security-solution-copy h3 {
    font-size: clamp(32px, 4vw, 50px);
    margin-bottom: 18px;
}

.security-solution-copy > p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.security-solution-copy ul {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.security-solution-copy li {
    position: relative;
    padding-left: 24px;
    color: #334155;
    line-height: 1.55;
}

.security-solution-copy li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.security-portal-visual {
    min-height: 460px;
    border-radius: var(--radius-md);
    background: #101820;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 22px;
    padding: 54px;
    overflow: hidden;
}

.portal-frame {
    width: min(62%, 280px);
    height: 350px;
    border: 20px solid #C8D0D5;
    border-bottom-width: 14px;
    position: relative;
    display: grid;
    place-items: end center;
    color: #EAF1F4;
}

.portal-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.portal-frame > i {
    font-size: 116px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.82);
}

.portal-status {
    position: absolute;
    top: -14px;
    right: 12px;
    width: 44px;
    height: 8px;
    background: var(--primary);
}

.portal-control {
    width: 76px;
    height: 150px;
    display: grid;
    place-items: center;
    background: #27343D;
    color: var(--primary);
    font-size: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.security-applications {
    padding: 96px 0;
    background: #ffffff;
}

.security-applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(7, 20, 31, 0.1);
    border-bottom: 1px solid rgba(7, 20, 31, 0.1);
}

.security-applications-grid > div {
    padding: 32px 28px;
    border-right: 1px solid rgba(7, 20, 31, 0.1);
}

.security-applications-grid > div:last-child {
    border-right: 0;
}

.security-applications-grid i {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 28px;
}

.security-applications-grid h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.security-applications-grid p {
    color: var(--muted);
    line-height: 1.6;
}

.security-process {
    padding: 104px 0;
    background: var(--dark);
}

.security-process .landing-copy h2 {
    color: #ffffff;
}

.security-process .landing-copy p {
    color: #A7B5BF;
}

.security-process-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: start;
}

.security-process-list {
    display: grid;
}

.security-process-list li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.security-process-list li > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: 'Sora', sans-serif;
    font-weight: 800;
}

.security-process-list strong {
    display: block;
    color: #ffffff;
    font-size: 19px;
    margin-bottom: 6px;
}

.security-process-list p {
    color: #A7B5BF;
}

.solution-form-submit {
    width: 100%;
    margin-top: 22px;
}

.cta-final p {
    max-width: 680px;
    margin: -18px auto 32px;
    font-size: 18px;
    line-height: 1.65;
}

/* Landing page de self-checkout */
.self-checkout-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 140px 0 52px;
    background: #101820;
    overflow: hidden;
}

.self-checkout-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 56px;
    align-items: center;
}

.self-checkout-hero-copy {
    color: #ffffff;
    max-width: 670px;
}

.self-checkout-hero-copy h1 {
    color: #ffffff;
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1.04;
    margin: 18px 0 24px;
}

.self-checkout-hero-copy > p {
    max-width: 620px;
    color: #B8C4CC;
    font-size: 19px;
    line-height: 1.65;
}

.self-checkout-hero-media {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    background: #F1F4F5;
    border-radius: var(--radius-md);
    padding: 38px;
}

.self-checkout-hero-media img {
    width: 100%;
    max-width: 520px;
    height: 440px;
    object-fit: contain;
}

.self-checkout-hero-media > span {
    position: absolute;
    left: 24px;
    bottom: 20px;
    color: #52616B;
    font-size: 12px;
    font-weight: 700;
}

.checkout-config-section {
    padding: 104px 0;
    background: #F4F7F8;
}

.checkout-config-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.checkout-config-grid article {
    background: #ffffff;
    padding: 22px;
    border: 1px solid rgba(7, 20, 31, 0.08);
}

.checkout-config-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #F7F8F9;
    margin-bottom: 22px;
}

.checkout-config-grid article > span {
    color: var(--primary);
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.checkout-config-grid h3 {
    font-size: 23px;
    margin: 10px 0;
}

.checkout-config-grid p {
    color: var(--muted);
    line-height: 1.65;
}

.checkout-features {
    padding: 104px 0;
    background: #ffffff;
}

.checkout-feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(7, 20, 31, 0.1);
    border-left: 1px solid rgba(7, 20, 31, 0.1);
}

.checkout-feature-list > div {
    min-height: 240px;
    padding: 30px;
    border-right: 1px solid rgba(7, 20, 31, 0.1);
    border-bottom: 1px solid rgba(7, 20, 31, 0.1);
}

.checkout-feature-list i {
    color: var(--primary);
    font-size: 25px;
    margin-bottom: 34px;
}

.checkout-feature-list h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.checkout-feature-list p {
    color: var(--muted);
    line-height: 1.62;
}

.checkout-security-band {
    padding: 104px 0;
    background: #EAF0F2;
}

.checkout-security-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 64px;
    align-items: center;
}

.checkout-security-media {
    min-height: 520px;
    display: grid;
    place-items: center;
    background: #ffffff;
    padding: 34px;
}

.checkout-security-media img {
    width: 100%;
    height: 460px;
    object-fit: contain;
}

.checkout-gallery {
    padding: 104px 0;
    background: #ffffff;
}

.checkout-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.checkout-gallery-grid figure {
    background: #F5F7F8;
    border: 1px solid rgba(7, 20, 31, 0.08);
}

.checkout-gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: contain;
    padding: 18px;
}

.checkout-gallery-grid figcaption {
    padding: 14px 18px 18px;
    color: var(--dark);
    font-weight: 700;
}

.checkout-source {
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
}

.checkout-process {
    background: #101820;
}

@media (max-width: 900px) {
    .landing-brief-grid,
    .solution-form-wrap,
    .security-solution-row,
    .security-solution-row.reverse,
    .security-process-grid,
    .self-checkout-hero-grid,
    .checkout-security-grid {
        grid-template-columns: 1fr;
    }

    .orientation-grid,
    .solution-form-grid {
        grid-template-columns: 1fr;
    }

    .security-solution-row.reverse .security-solution-media {
        order: 0;
    }

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

    .security-applications-grid > div:nth-child(2) {
        border-right: 0;
    }

    .security-applications-grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(7, 20, 31, 0.1);
    }

    .self-checkout-hero {
        padding-top: 150px;
    }

    .self-checkout-hero-media {
        min-height: 480px;
    }

    .checkout-config-grid,
    .checkout-feature-list {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .high-security-page .landing-brief,
    .high-security-page .orientation-band,
    .high-security-page .security-applications,
    .high-security-page .solution-form-section,
    .high-security-page .security-solutions-section,
    .high-security-page .security-process {
        padding: 68px 0;
    }

    .high-security-page .section-header {
        margin-bottom: 42px;
    }

    .high-security-page .landing-brief-grid,
    .high-security-page .solution-form-wrap,
    .high-security-page .security-process-grid {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .product-hero.full-hero.high-security-hero .product-info {
        padding-top: 84px;
    }

    .security-solutions-section,
    .security-applications,
    .security-process {
        padding: 72px 0;
    }

    .security-solution-row {
        gap: 28px;
        padding: 32px 0;
    }

    .high-security-page .landing-brief,
    .high-security-page .orientation-band,
    .high-security-page .security-applications,
    .high-security-page .solution-form-section,
    .high-security-page .security-solutions-section,
    .high-security-page .security-process {
        padding: 52px 0;
    }

    .high-security-page .section-header {
        margin-bottom: 32px;
    }

    .high-security-page .landing-brief-grid,
    .high-security-page .solution-form-wrap,
    .high-security-page .security-process-grid {
        gap: 32px;
    }

    .high-security-page .landing-copy h2 {
        margin: 12px 0 16px;
    }

    .high-security-page .landing-proof-list {
        margin-top: 24px;
    }

    .high-security-page .landing-panel,
    .high-security-page .solution-form {
        padding: 24px;
    }

    .high-security-page .orientation-grid {
        gap: 16px;
    }

    .high-security-page .orientation-item {
        padding: 24px;
    }

    .high-security-page .security-applications-grid > div {
        padding: 26px 22px;
    }

    .high-security-page .security-applications-grid i {
        margin-bottom: 18px;
    }

    .high-security-page .security-process-list li {
        padding: 20px 0;
    }

    .high-security-page .cta-final {
        padding: 60px 0;
    }

    .security-portal-visual {
        min-height: 360px;
        padding: 34px 24px;
    }

    .portal-frame {
        height: 270px;
        border-width: 15px;
    }

    .portal-frame > i {
        font-size: 86px;
    }

    .portal-control {
        width: 56px;
        height: 118px;
    }

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

    .security-applications-grid > div,
    .security-applications-grid > div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(7, 20, 31, 0.1);
    }

    .security-applications-grid > div:last-child {
        border-bottom: 0;
    }

    .self-checkout-hero {
        min-height: auto;
        padding: 120px 0 64px;
    }

    .self-checkout-hero-copy h1 {
        font-size: 38px;
    }

    .self-checkout-hero-copy > p {
        font-size: 16px;
    }

    .self-checkout-hero-media {
        min-height: 390px;
        padding: 24px;
    }

    .self-checkout-hero-media img {
        height: 340px;
    }

    .checkout-config-section,
    .checkout-features,
    .checkout-security-band,
    .checkout-gallery {
        padding: 72px 0;
    }

    .checkout-config-grid,
    .checkout-feature-list,
    .checkout-gallery-grid {
        grid-template-columns: 1fr;
    }

    .checkout-feature-list > div {
        min-height: 0;
    }

    .checkout-security-media {
        min-height: 390px;
        padding: 22px;
    }

    .checkout-security-media img {
        height: 340px;
    }
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex !important;
    }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(100vw, 400px);
        max-width: 100vw;
        height: 100vh;
        background: var(--dark);
        z-index: 2000;
        padding: 88px 22px 28px;
        transition: var(--transition);
        box-shadow: -20px 0 60px rgba(7, 20, 31, 0.3);
        display: flex !important;
        flex-direction: column;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        overflow-x: hidden;
        transform: translateX(100%);
        visibility: hidden;
    }

    nav.active {
        transform: translateX(0);
        visibility: visible;
        background: var(--dark) !important;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        font-size: 18px;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    header.on-banner nav.active > ul > li > a,
    header.on-banner nav.active > ul > li > .nav-link,
    nav.active > ul > li > a,
    nav.active > ul > li > .nav-link-item {
        color: #ffffff !important;
    }

    header.on-banner nav.active > ul > li.has-mega > a.nav-link,
    nav.active > ul > li.has-mega > a.nav-link,
    nav.active > ul > li.nav-dropdown-wrapper > .nav-link-item {
        color: var(--primary) !important;
    }

    /* Mega Menu no Mobile (Estilo Orbix Studio - 3 Categorias) */
    .mega-menu.flex-layout,
    .mega-menu-premium.flex-layout {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        box-shadow: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
        display: block !important;
        min-height: 0;
        background: rgba(255, 255, 255, 0.02) !important;
        border-radius: var(--radius-sm);
    }
    .mega-menu-inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        padding: 0 !important;
    }

    .has-mega.active .mega-menu.flex-layout,
    .nav-dropdown-wrapper.active .mega-menu-premium.flex-layout {
        max-height: calc(100vh - 190px);
        margin-top: 12px;
        display: flex !important;
        flex-direction: column;
        gap: 16px;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mega-menu-details {
        display: block !important;
        border-right: none !important;
        padding-right: 0 !important;
        margin-bottom: 12px !important;
    }
    .mega-details-content {
        display: none !important;
    }
    .mega-portfolio-toggle {
        display: none !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        color: var(--primary) !important;
        font-weight: 700 !important;
        font-size: 15px !important;
        padding: 11px 14px !important;
        background: rgba(0, 200, 120, 0.06) !important;
        border: 1px solid rgba(0, 200, 120, 0.15) !important;
        border-radius: 100px !important;
        width: 100% !important;
        transition: var(--transition) !important;
    }
    .mega-portfolio-toggle:hover {
        background: rgba(0, 200, 120, 0.12) !important;
        color: var(--primary-dark) !important;
    }

    .mega-menu-grid-3, .mega-menu-grid-4 {
        display: none !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }
    .mega-menu-grid-3.active, .mega-menu-grid-4.active {
        display: flex !important;
    }

    .has-mega.active .mega-menu-grid-4:not(.active),
    .nav-dropdown-wrapper.active .mega-menu-grid-4:not(.active) {
        display: flex !important;
    }

    .mega-grid-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        padding: 10px 12px !important;
        background: rgba(255, 255, 255, 0.01) !important;
        border-radius: 12px !important;
        aspect-ratio: auto !important;
        min-height: 72px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        text-decoration: none;
        transition: var(--transition);
        width: 100% !important;
    }

    .mega-grid-card::before {
        display: none !important;
    }

    .mega-grid-card:hover {
        transform: none !important;
        background-color: rgba(255, 255, 255, 0.04) !important;
        border-color: rgba(255, 255, 255, 0.12) !important;
    }

    .mega-card-body {
        padding: 0 !important;
        flex: 1 !important;
        z-index: auto !important;
        position: static !important;
        min-width: 0 !important;
    }

    .mega-card-title {
        color: #ffffff !important;
        font-size: 15px !important;
        margin-bottom: 4px !important;
    }

    .mega-card-desc {
        font-size: 11px !important;
        color: rgba(255, 255, 255, 0.72) !important;
        display: block !important;
        line-height: 1.35 !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
    }

    .mega-card-image-box {
        position: static !important;
        inset: auto !important;
        width: 56px !important;
        height: 56px !important;
        flex: 0 0 56px !important;
        margin-top: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        z-index: auto !important;
    }

    .mega-card-image-box img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .header-cta {
        display: none;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2001;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--dark); /* Default dark */
    transition: var(--transition);
}

header.on-banner:not(.scrolled) .menu-toggle span {
    background: white; /* White only on banner */
}

header.on-banner:not(.scrolled) .menu-toggle.active span,
.menu-toggle.active span,
.menu-toggle-premium.active span {
    background: #ffffff !important;
}

header.scrolled .menu-toggle span {
    background: var(--dark) !important;
}

header.scrolled .menu-toggle.active span {
    background: #ffffff !important;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
    nav .mega-portfolio-toggle {
        display: none !important;
    }

    .has-mega.active .mega-menu.flex-layout .mega-menu-grid-4,
    .has-mega.active .mega-menu.flex-layout .mega-menu-grid-4.active,
    .nav-dropdown-wrapper.active .mega-menu-premium.flex-layout .mega-menu-grid-4,
    .nav-dropdown-wrapper.active .mega-menu-premium.flex-layout .mega-menu-grid-4.active {
        display: flex !important;
    }
}

/* Hero */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    overflow: hidden;
    position: relative;
}

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

.hero-text {
    text-align: center;
    grid-column: 1 / span 3;
    max-width: 900px;
    margin: 0 auto 80px auto;
}

.hero-text h1 {
    font-size: 72px;
    margin-bottom: 24px;
    letter-spacing: -2px;
    opacity: 1; /* Visible by default */
}

.hero-text p {
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1; /* Visible by default */
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    opacity: 1; /* Visible by default */
}

/* Mosaic Cards */
.mosaic-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.mosaic-card {
    background: var(--card);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 1; /* Visible by default */
}

.mosaic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.mosaic-card img {
    border-radius: var(--radius-sm);
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 16px;
}

.mosaic-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.mosaic-card p {
    font-size: 14px;
    color: var(--muted);
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 56px;
    }

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 40px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero {
        padding-top: 140px;
    }
}

/* Trusted By */
.trusted {
    padding: 80px 0;
    background-color: var(--card);
}

.trusted-title {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 40px;
}

.trusted-scroll {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.trusted-flex {
    display: flex;
    gap: 60px;
    animation: scroll 40s linear infinite;
}

.trusted-item {
    font-size: 24px;
    font-weight: 700;
    color: #CBD5E0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
}

.trusted-item i {
    font-size: 32px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Main Value - Bento Grid */
.bento-section {
    padding: 120px 0;
}

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

.section-header h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.bento-item {
    background: var(--card);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
}

.bento-item:hover {
    border-color: var(--primary);
}

.bento-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
}

.bento-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.bento-item p {
    color: var(--muted);
    font-size: 16px;
}

.bento-item.large {
    grid-column: span 2;
    background: var(--dark);
    color: white;
}

.bento-item.large i {
    color: var(--primary);
}

.bento-item.large p {
    color: #94A3B8;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-item.large {
        grid-column: span 2;
    }
}

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

    .bento-item.large {
        grid-column: span 1;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

/* Solutions */
.solutions {
    padding: 120px 0;
    background-color: var(--dark);
    color: white;
    border-radius: var(--radius-lg);
    margin: 0 20px;
}

.solutions-header {
    margin-bottom: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.solutions-header h2 {
    font-size: 48px;
    max-width: 600px;
}

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

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-12px);
}

.solution-card img {
    border-radius: var(--radius-sm);
    height: 240px;
    object-fit: cover;
}

.solution-card h3 {
    font-size: 24px;
}

.solution-card p {
    color: #94A3B8;
}

.solution-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 200, 120, 0.2);
    color: var(--primary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .solutions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .solutions-header h2 {
        font-size: 32px;
    }
}

/* Legal Security */
.legal {
    padding: 140px 0;
    background: linear-gradient(to bottom, #F7FAF8, #FFFFFF);
}

.legal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.legal-badge {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 40px 80px rgba(0, 200, 120, 0.1);
    position: relative;
}

.legal-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    opacity: 0.2;
    transform: scale(1.05);
}

.legal-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.legal-item i {
    width: 48px;
    height: 48px;
    background: rgba(0, 200, 120, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

@media (max-width: 768px) {
    .legal-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* How it Works */
.how {
    padding: 120px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 64px;
    height: 64px;
    background: var(--card);
    border: 2px solid #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 20px;
    transition: var(--transition);
}

.step:hover .step-num {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.1);
}

.step p {
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* FAQ Accordion */
.faq-section {
    max-width: 800px;
    margin: 80px auto 0;
}

.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    background: white;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: var(--text);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 24px;
    color: var(--muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

@media (max-width: 768px) {
    .faq-section {
        margin-top: 48px;
    }

    .faq-question {
        padding: 18px 16px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 16px;
    }
}

/* Footer / Final CTA */
.cta-final {
    padding: 120px 0;
    background: var(--primary);
    color: white;
    text-align: center;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.cta-final h2 {
    font-size: 56px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .cta-final h2 {
        font-size: 32px;
    }
}

footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 40px 0;
}

/* Rodapé premium padronizado em todas as páginas */
.footer-premium-section {
    background-color: var(--dark);
    color: white;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-premium-section .footer-grid-layout {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.footer-premium-section .footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-premium-section .footer-logo-img {
    height: 38px;
    width: auto;
    margin-bottom: 24px;
}

.footer-premium-section .footer-brand-desc {
    max-width: 320px;
    margin-bottom: 30px;
    color: #94A3B8;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-premium-section .footer-partner-seal {
    width: 180px;
    height: 150px;
    margin-top: 28px;
    overflow: visible;
}

.footer-premium-section .footer-partner-seal iframe {
    width: 180px;
    height: 150px;
    display: block;
    border: 0;
    overflow: visible;
}

.footer-premium-section .footer-social-link-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-premium-section .footer-social-link-circle:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-premium-section .footer-social-link-circle i {
    font-size: 16px;
}

.footer-premium-section .footer-links-col h4 {
    margin-bottom: 24px;
    color: #FFFFFF;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-premium-section .footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-premium-section .footer-link-anchor {
    color: #94A3B8;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-premium-section .footer-link-anchor:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-premium-section .footer-contact-note {
    color: #94A3B8;
    font-size: 14px;
}

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

.footer-premium-section .footer-copy-text,
.footer-premium-section .footer-bottom-link-anchor {
    color: #94A3B8;
    font-size: 13px;
}

.footer-premium-section .footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-premium-section .footer-bottom-link-anchor {
    text-decoration: none;
    transition: var(--transition);
}

.footer-premium-section .footer-bottom-link-anchor:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .footer-premium-section .footer-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-premium-section {
        padding: 64px 0 32px;
    }

    .footer-premium-section .footer-grid-layout {
        grid-template-columns: 1fr;
        margin-bottom: 52px;
    }

    .footer-premium-section .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 24px;
}

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

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 18px;
}

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

.footer-col ul li a {
    color: #94A3B8;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    color: #64748B;
    font-size: 14px;
}

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Product Pages Hero */
.product-hero {
    padding: 180px 0 100px;
    background: var(--bg);
    position: relative;
}

.product-hero.full-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
}

.product-hero.full-hero.full-width-banner-hero {
    background-size: 100% 100%;
    background-position: center top;
    min-height: max(80vh, 66.6vw);
}

.product-hero.full-hero.proportional-banner-hero {
    background-size: cover;
    background-position: center center;
}

.product-hero.full-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 20, 31, 0.8) 0%, rgba(7, 20, 31, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.product-hero.full-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.product-hero.full-hero .product-info {
    max-width: 600px;
    color: white;
    text-align: left;
}

.product-hero.full-hero .product-info h1 {
    color: white;
}

.product-hero.full-hero .product-info p {
    color: rgba(255, 255, 255, 0.8);
}

.product-hero.full-hero.access-solution-hero {
    min-height: 80vh;
    background-color: var(--bg);
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.product-hero.full-hero.access-solution-hero::before {
    background: linear-gradient(90deg, rgba(7, 20, 31, 0.82) 0%, rgba(7, 20, 31, 0.56) 48%, rgba(7, 20, 31, 0.08) 100%);
}

.product-hero.full-hero.access-solution-hero::after {
    display: none;
}

.product-hero.full-hero.access-solution-hero .container {
    min-height: inherit;
    align-items: center;
}

.product-hero.full-hero.access-solution-hero .product-info {
    max-width: 620px;
    padding-top: 96px;
    padding-bottom: 48px;
}

.product-hero.full-hero.access-solution-hero .product-info h1 {
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: 0;
    line-height: 1.08;
    margin: 16px 0 24px;
}

.product-hero.full-hero.access-solution-hero .product-info p {
    max-width: 560px;
    font-size: 19px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.84);
}

.product-hero.full-hero.access-solution-hero .product-info > div:first-of-type {
    max-width: 590px;
}

.product-hero.full-hero.readers-hero {
    background-position: center center;
}

.product-hero.full-hero.readers-hero .container {
    justify-content: flex-start;
}

.product-hero.full-hero.readers-hero .product-info {
    max-width: 560px;
    margin-right: 0;
    padding-top: 150px;
}

.product-hero.full-hero.readers-hero .product-info h1 {
    font-size: clamp(38px, 4.35vw, 58px);
    line-height: 1.08;
}

.product-hero.full-hero.readers-hero .product-info p,
.product-hero.full-hero.readers-hero .product-info > div:first-of-type {
    max-width: 520px;
}

.product-hero.full-hero.gates-hero {
    background-position: center center;
}

.product-hero.full-hero.gates-hero .product-info {
    padding-top: 150px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.product-info h1 {
    font-size: 56px;
    margin-bottom: 24px;
}

.product-info p {
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-info h1 {
        font-size: 40px;
    }
}

/* Full Width Banner */
.full-banner {
    width: 100%;
    margin-top: 80px;
    overflow: hidden;
}

.full-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================================================
   MOBILE RESPONSIVE ENHANCEMENTS
   Applied globally to all pages that use style.css
   =================================================================== */

@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-text {
        margin-bottom: 40px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .mosaic-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .mosaic-card {
        padding: 16px;
    }

    .mosaic-card[style*="margin-top"] {
        margin-top: 0 !important;
    }

    .mosaic-card h4 {
        font-size: 15px;
    }

    .mosaic-card p {
        font-size: 13px;
    }

    /* Buttons full width on mobile */
    .hero-btns .btn,
    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 15px;
    }

    /* Bento Section */
    .bento-section {
        padding: 60px 0;
    }

    .bento-item {
        padding: 28px;
    }

    .bento-item h3 {
        font-size: 19px;
    }

    .bento-item i {
        font-size: 28px;
        margin-bottom: 16px;
    }

    /* Trusted */
    .trusted {
        padding: 40px 0;
    }

    .trusted-title {
        font-size: 12px;
        margin-bottom: 24px;
        padding: 0 24px;
    }

    .trusted-item {
        font-size: 18px;
    }

    .trusted-item i {
        font-size: 24px;
    }

    /* Solutions Section */
    .solutions {
        padding: 60px 0;
        margin: 0 12px;
        border-radius: var(--radius-md);
    }

    .solutions-header h2 {
        font-size: 28px;
    }

    .solution-card {
        padding: 24px;
    }

    .solution-card img {
        height: 180px;
    }

    .solution-card h3 {
        font-size: 20px;
    }

    /* Legal Section */
    .legal {
        padding: 60px 0;
    }

    .legal-content {
        gap: 32px;
    }

    .legal-text h2 {
        font-size: 28px !important;
    }

    .legal-badge {
        padding: 28px;
    }

    /* How It Works */
    .how {
        padding: 60px 0;
    }

    .step-num {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .step p {
        font-size: 14px;
    }

    /* CTA Final */
    .cta-final {
        padding: 60px 0;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .cta-final .btn {
        padding: 18px 32px;
        font-size: 16px;
    }

    /* Footer */
    footer {
        padding: 48px 0 24px;
    }

    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    /* Product Hero (subpages) */
    .product-hero {
        padding: 120px 0 60px;
    }

    .product-hero.full-hero {
        min-height: 60vh;
    }

    .product-hero.full-hero.full-width-banner-hero {
        background-size: 100% 100%;
        background-position: center top;
        min-height: max(60vh, 66.6vw);
    }

    .product-hero.full-hero .product-info {
        width: calc(100vw - 48px) !important;
        max-width: calc(100vw - 48px) !important;
        box-sizing: border-box;
        padding-top: 80px !important;
        padding-bottom: 40px !important;
        overflow-wrap: break-word;
    }

    .product-hero.full-hero .product-info h1 {
        font-size: 28px !important;
        line-height: 1.25 !important;
        overflow-wrap: break-word;
    }

    .product-hero.full-hero .product-info p {
        font-size: 15px !important;
        overflow-wrap: break-word;
    }

    .product-hero.full-hero .product-info .btn {
        width: 100%;
        justify-content: center;
    }

    .product-hero.full-hero .product-info span {
        overflow-wrap: anywhere;
    }

    .product-hero.full-hero .regional-seal {
        font-size: 12px !important;
        padding: 5px 12px !important;
    }

    .product-hero.full-hero::before {
        background: linear-gradient(180deg, rgba(7, 20, 31, 0.85) 0%, rgba(7, 20, 31, 0.7) 100%);
    }

    .product-hero.full-hero.access-solution-hero {
        min-height: 68vh;
        padding: 0;
        background-size: cover;
        background-position: center center;
    }

    .product-hero.full-hero.access-solution-hero::before {
        background: linear-gradient(180deg, rgba(7, 20, 31, 0.82) 0%, rgba(7, 20, 31, 0.72) 100%);
    }

    .product-hero.full-hero.access-solution-hero::after {
        display: none;
    }

    .product-hero.full-hero.access-solution-hero .container {
        min-height: inherit;
        align-items: center;
    }

    .product-hero.full-hero.access-solution-hero .product-info {
        padding-top: 84px !important;
        padding-bottom: 36px !important;
    }

    .product-hero.full-hero.access-solution-hero .product-info h1 {
        font-size: 34px !important;
        line-height: 1.08 !important;
    }

    .product-hero.full-hero.access-solution-hero .product-info p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* Extra small devices (phones, less than 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .product-hero.full-hero .product-info {
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
    }

    .hero-text h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 26px;
    }

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

    .solutions-header h2 {
        font-size: 24px;
    }

    .cta-final h2 {
        font-size: 26px;
    }

    .legal-text h2 {
        font-size: 24px !important;
    }

    .product-hero.full-hero .product-info h1 {
        font-size: 24px !important;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
