/* VARIABLES */
:root {
    --color-bg-dark: #070707;      
    --color-bg-dark-elem: #111111; 
    --color-bg-light: #FFFFFF;     
    --color-bg-light-elem: #F6F7F9;
    
    --color-text-dark: #ECECEC;
    --color-text-dark-muted: #A0A0A0;
    --color-text-light: #1A1A1A;
    --color-text-light-muted: #555555;
    
    --color-orange: #F9932B;       
    --color-orange-hover: #E08527;
    --color-orange-glow: rgba(249, 147, 43, 0.25);
    
    --color-border-dark: #1E1E1E;
    --color-border-light: #EBEBEB;
    
    --font-heading: 'Palatino', 'Times New Roman', Times, serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-dark); 
    color: var(--color-text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 6px;
    border: 2px solid var(--color-bg-dark); /* Adds visual padding */
    transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-orange);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: normal;
}

h1 strong, h2 strong, h3 strong {
    font-weight: bold;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-orange { color: var(--color-orange); }

/* SECTION THEMES */
.theme-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-dark);
    border-color: var(--color-border-dark);
}
.theme-dark h1, .theme-dark h2, .theme-dark h3, .theme-dark h4 { color: #FFFFFF; }
.theme-dark p { color: var(--color-text-dark-muted); }

.theme-light {
    background-color: var(--color-bg-light);
    color: var(--color-text-light);
    border-color: var(--color-border-light);
}
.theme-light h1, .theme-light h2, .theme-light h3, .theme-light h4 { color: #000000; }
.theme-light p { color: var(--color-text-light-muted); }

/* ICONS */
.icon-lucide {
    color: var(--color-orange);
    min-width: 24px;
    margin-top: 2px;
}
.icon-inline {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-left: 8px;
    margin-top: -2px;
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-orange) 0%, #FFB92E 100%);
    color: #111; 
    padding: 16px 36px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: var(--font-body);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary.shadow-btn {
    box-shadow: 0 10px 25px var(--color-orange-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--color-orange-glow);
    background: linear-gradient(135deg, #FFC54D 0%, var(--color-orange) 100%);
}
.btn-sm {
    padding: 12px 24px;
    font-size: 0.9rem;
}
.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(249, 147, 43, 0.2);
}

.btn-outline {
    display: inline-block;
    border: 1.5px solid var(--color-orange);
    color: var(--color-orange);
    padding: 16px 36px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    font-size: 1rem;
    background: transparent;
}
.theme-light .btn-outline {
    border-color: var(--color-orange);
}
.btn-outline:hover {
    background-color: var(--color-orange);
    color: #111;
    box-shadow: 0 8px 20px var(--color-orange-glow);
}

.mt-4 { margin-top: 3rem; }
.mt-auto { margin-top: auto; }

/* UTILS - DOT BACKGROUND */
.has-dot-bg-dark {
    position: relative;
    background-color: var(--color-bg-dark);
    background-image: radial-gradient(var(--color-border-dark) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
}
.has-dot-bg-dark::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(ellipse at center, transparent 30%, var(--color-bg-dark) 90%);
    pointer-events: none;
}
.has-dot-bg-light {
    position: relative;
    background-color: var(--color-bg-light);
    background-image: radial-gradient(#E8E8E8 1.5px, transparent 1.5px);
    background-size: 32px 32px;
}
.has-dot-bg-light::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(ellipse at center, transparent 20%, var(--color-bg-light) 90%);
    pointer-events: none;
}
.has-dot-bg-dark .container, .has-dot-bg-light .container {
    position: relative;
    z-index: 1;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    background-color: rgba(7, 7, 7, 0.85); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-orange);
    z-index: 1000;
}
.navbar-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 90px;
}
.navbar .logo {
    justify-self: start;
    display: flex;
    align-items: center;
}
.navbar .logo img {
    height: 28px;
}
.nav-links {
    display: flex;
    gap: 40px;
    justify-self: center;
}
.nav-links a {
    color: #BBBBBB;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #FFFFFF;
}
.nav-cta {
    justify-self: end;
}

/* HERO SECTION - FINTECH STYLE */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 90px;
    background: radial-gradient(circle at 100% -10%, rgba(249, 147, 43, 0.1) 0%, transparent 40%),
                var(--color-bg-dark);
    position: relative;
    overflow: visible;
    z-index: 20;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}
.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.8rem;
    line-height: 1.15;
    letter-spacing: -1px;
}
.highlight-text {
    color: var(--color-orange);
    display: inline-block;
    position: relative;
}

.subheadline {
    font-size: 1.25rem;
    color: #AAAAAA;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 90%;
}
.checklist {
    list-style: none;
    margin-bottom: 3.5rem;
}
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 1.6rem;
    font-size: 1.1rem;
    color: #CFCFCF;
}
.checklist strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* HERO VISUAL (RIGHT SIDE FLOATING CARDS) */
.hero-visual {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.visual-glow-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249,147,43,0.12) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* ANIMATED CARDS SCROLLER */
.cards-scroller-window {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 480px; /* Mostra 3 cards simultâneos */
    overflow: hidden;
    z-index: 2;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}
.cards-scroller-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scrollVertical 25s linear infinite;
}

/* SCROLL DOWN INDICATOR */
.scroll-down-indicator {
    position: absolute;
    bottom: -25px; /* Fica metade na Hero, metade na Expertise */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(249,147,43,0.3);
    animation: bounce 2s infinite;
}
.scroll-down-indicator a {
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

.cards-scroller-track:hover {
    animation-play-state: paused;
}
.visual-card-anim {
    background: rgba(22, 22, 22, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.4);
    transition: transform 0.3s, border-color 0.3s;
}
.visual-card-anim:hover {
    transform: translateX(-10px);
    border-color: rgba(249, 147, 43, 0.3);
}
.visual-card-anim .card-icon {
    min-width: 56px;
    height: 56px;
    background: rgba(249, 147, 43, 0.12);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-orange);
}
.visual-card-anim .card-icon svg {
    width: 28px;
    height: 28px;
}
.visual-card-anim .card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.visual-card-anim .card-info strong {
    color: #FFF;
    font-size: 1.15rem;
    font-weight: 700;
}
.visual-card-anim .card-info span {
    color: #AAA;
    font-size: 0.95rem;
    line-height: 1.4;
}

@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(calc(-100% * 4 / 7 - 20px * 4 / 7)); } 
}


/* EXPERTISE SECTION - DARK */
.expertise {
    padding-top: 80px;
    padding-bottom: 0px; /* Reduzido a zero para o graphic emergir */
}
.max-w-content {
    max-width: 850px;
    margin: 0 auto;
}
/* BENTO GRID SAAS CARDS */
.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 24px;
    max-width: 950px;
    margin: 60px auto -60px auto; 
    z-index: 10;
    position: relative;
}
.bento-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08); 
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}
.bento-card:hover { 
    transform: translateY(-8px) scale(1.02); 
    border-color: rgba(249,147,43,0.5);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(249,147,43,0.05);
}
.bento-chart-card {
    grid-row: span 2;
    background: #0f0f0f;
    justify-content: flex-start;
}
.bento-secure-card {
    background: linear-gradient(135deg, #111, #161616);
}
.bento-info-card {
    background: linear-gradient(135deg, #161616, #111);
}

/* Base Bento Text */
.bento-content-bottom {
    margin-top: auto;
    position: relative;
    z-index: 2;
}
.bento-content-bottom h3 {
    font-size: 1.4rem;
    color: #FFF;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s;
}
.bento-card:hover .bento-content-bottom h3 {
    color: var(--color-orange);
}
.b-subtitle {
    display: block;
    color: #AAA;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card 1: Chart */
.bento-header { margin-bottom: 20px; }
.b-label { color: #888; font-size: 0.95rem; display: block; margin-bottom: 8px;}
.b-value { 
    font-size: 3.5rem; 
    color: #FFF; 
    font-weight: 700; 
    font-family: var(--font-body); 
    display: flex; align-items: center; gap: 10px;
    letter-spacing: -1.5px;
}
.b-value i { color: #4ADE80; width: 32px; height: 32px; }
.bento-chart-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    height: 100%;
    margin-top: auto;
    padding-top: 20px;
    padding-bottom: 25px;
    position: relative;
    z-index: 1;
}
/* Linha de Base Iluminada (Trilho) */
.bento-chart-wrapper::after {
    content: '';
    position: absolute;
    bottom: 25px; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(249,147,43,0.4), transparent);
    box-shadow: 0 -5px 15px rgba(249,147,43,0.15);
    z-index: 0;
}
/* Luz Ambiente Emanando Atrás da Coluna Mais Alta */
.bento-chart-wrapper::before {
    content: '';
    position: absolute;
    bottom: -20px; right: 0;
    width: 140px; height: 140px;
    background: radial-gradient(circle, var(--color-orange) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.25;
    z-index: 0;
    transition: all 0.5s ease;
}
.bento-chart-card:hover .bento-chart-wrapper::before {
    transform: translateY(-20px) scale(1.3);
    opacity: 0.4;
}
.b-bar-col {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 0;
    position: relative;
    border-radius: 12px;
    z-index: 2; /* stays above ambient lighting */
}
.b-bar {
    width: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; /* modern rounded pill */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.active-b-bar {
    background: linear-gradient(180deg, #FFB92E 0%, rgba(249,147,43,0.15) 100%);
    border: 1px solid rgba(249,147,43,0.6);
    box-shadow: 0 0 30px rgba(249,147,43,0.4), inset 0 2px 10px rgba(255,185,46,0.4);
}
.b-glow {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    width: 30px; height: 30px;
    background: var(--color-orange);
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.9;
    box-shadow: 0 0 25px #FFB92E;
}
.bar-val {
    position: absolute;
    bottom: -22px;
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}
.bento-chart-card:hover .b-bar-col:not(:last-child) .b-bar {
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.05) 100%);
    transform: translateY(-5px);
}
.bento-chart-card:hover .active-b-bar {
    box-shadow: 0 -10px 40px rgba(249,147,43,0.6), inset 0 2px 15px rgba(255,185,46,0.5);
    transform: translateY(-5px);
}

/* Card 2: Secure Radar Animation */
.bento-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #FFF;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
}
.bento-badge i { width: 16px; height: 16px; color: var(--color-orange); }

.radar-visual {
    position: absolute;
    top: 0; right: 0;
    transform: translate(25%, -25%);
    width: 200px; height: 200px;
    z-index: 1;
}
.radar-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(249,147,43,0.3);
    opacity: 0;
    animation: ripple 3s infinite cubic-bezier(0.1, 0, 0.4, 1);
}
.radar-ring.r1 { width: 60px; height: 60px; animation-delay: 0s; }
.radar-ring.r2 { width: 100px; height: 100px; animation-delay: 1s; }
.radar-ring.r3 { width: 140px; height: 140px; animation-delay: 2s; }

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; border-width: 2px; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; border-width: 0px; }
}

.radar-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    background: rgba(249,147,43,0.15);
    border: 1px solid rgba(249,147,43,0.4);
    border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    color: var(--color-orange);
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.bento-secure-card:hover .radar-core {
    background: var(--color-orange);
    color: #111;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 25px rgba(249,147,43,0.5);
}

.scanner-line {
    position: absolute;
    top: 50%; left: 50%;
    width: 80px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-orange));
    transform-origin: 0 50%;
    animation: scanRadar 4s infinite linear;
    z-index: 1;
    opacity: 0.5;
}
@keyframes scanRadar {
    0% { transform: translate(0, -50%) rotate(0deg); }
    100% { transform: translate(0, -50%) rotate(360deg); }
}

/* Card 3: Info Integration */
.integration-visual {
    position: absolute;
    top: 40px; left: 30px; right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}
.integ-node {
    width: 50px; height: 50px;
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex; justify-content: center; align-items: center;
    color: var(--color-orange);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}
.integ-node i { width: 24px; height: 24px; }
.integ-line {
    flex: 1;
    height: 2px;
    margin: 0 15px;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.1) 0, rgba(255,255,255,0.1) 6px, transparent 6px, transparent 12px);
    position: relative;
    overflow: hidden;
}
.line-dot {
    position: absolute;
    top: -2px; left: -10px; width: 6px; height: 6px;
    background: var(--color-orange); border-radius: 50%;
    box-shadow: 0 0 10px var(--color-orange);
    animation: slideAcross 2s infinite linear;
}
@keyframes slideAcross {
    0% { transform: translateX(0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(180px); opacity: 0; }
}
.bento-info-card:hover .integ-node {
    transform: scale(1.1);
    border-color: rgba(249,147,43,0.4);
    box-shadow: 0 10px 25px rgba(249,147,43,0.2);
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        margin-bottom: 0px; 
    }
    .bento-chart-card { grid-row: auto; height: 350px; }
    .bento-secure-card, .bento-info-card { height: 240px; }
}
.expertise h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    text-wrap: balance;
}
.expertise-text {
    font-size: 1.25rem;
    line-height: 1.8;
}
.expertise-text p {
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

/* JOURNEY SECTION - LIGHT THEME */
.journey {
    padding: 140px 0;
}
.journey h2 {
    font-size: 2.8rem;
    margin-bottom: 80px;
    text-wrap: balance;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.card-step {
    background-color: var(--color-bg-light);
    padding: 50px 40px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 24px rgba(0,0,0,0.03);
}
.card-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.step-icon {
    width: 50px; height: 50px;
    color: var(--color-orange);
    margin-bottom: 20px;
}
.step-icon svg { width: 100%; height: 100%; }
.step-num {
    position: absolute;
    top: 40px; right: 40px;
    font-size: 4rem;
    font-weight: bold;
    color: rgba(249, 147, 43, 0.1);
    font-family: var(--font-heading);
    line-height: 1;
}
.card-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #111;
    font-weight: 700;
}
.card-step p {
    font-size: 1.05rem;
    color: var(--color-text-light-muted);
}

/* WHY US SECTION - DARK THEME */
.why-us {
    padding: 140px 0;
}
.why-us h2 {
    font-size: 2.8rem;
    margin-bottom: 80px;
}
.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.info-card {
    background-color: var(--color-bg-dark-elem);
    border: 1px solid var(--color-border-dark);
    padding: 40px;
    border-radius: var(--radius-md);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.info-card:hover { transform: translateY(-5px); border-color: rgba(249, 147, 43, 0.3); }
.info-icon {
    min-width: 48px;
    height: 48px;
    background: rgba(247,169,1,0.1);
    color: var(--color-orange);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.info-card h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: bold;
}
.info-card p {
    font-size: 1.1rem;
    color: var(--color-text-dark-muted);
}

/* ABOUT LAILA - LIGHT THEME */
.about-laila {
    padding: 140px 0;
}
.grid-2-about {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 80px;
    align-items: center;
}
.laila-img-container {
    width: 100%;
    position: relative;
    border-radius: var(--radius-lg);
}
.laila-img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.laila-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #FFF;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
}
.laila-badge svg { color: var(--color-orange); width: 20px; height: 20px; }
.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    color: #111;
    text-wrap: balance;
}
.about-text {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--color-text-light-muted);
}
.about-text p {
    margin-bottom: 1.5rem;
}
.about-text strong {
    color: #000;
}

/* PRICING - DARK THEME */
.pricing {
    padding: 160px 0;
    border-top: 1px solid var(--color-border-dark);
}
.pricing h2 {
    font-size: 2.8rem;
    margin-bottom: 80px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}
.price-card {
    background-color: var(--color-bg-dark-elem);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    height: 100%;
    transition: transform 0.3s, border-color 0.3s;
}
.price-card.outline {
    background-color: transparent;
}
.price-card.highlighted {
    border: 2px solid var(--color-orange);
    z-index: 2;
    background: linear-gradient(180deg, var(--color-bg-dark-elem) 0%, rgba(20,20,20,1) 100%);
    box-shadow: 0 0 50px rgba(249, 147, 43, 0.1);
}
.price-card.highlighted:hover {
    transform: translateY(-8px);
}
.price-card.outline:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
}
.badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-bg-light);
    color: #111;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
}
.badge svg { color: var(--color-orange); margin-right: 6px; }
.plan-name {
    font-size: 1.6rem;
    margin-bottom: 24px;
    font-weight: normal;
}
.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}
.price .currency {
    font-size: 1.4rem;
    margin-top: 10px;
    margin-right: 4px;
}
.price .amount {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
}
.price .cents {
    font-size: 1.4rem;
    margin-top: 10px;
}
.price .period {
    font-size: 1.1rem;
    margin-top: 16px;
    color: var(--color-text-dark-muted);
    font-weight: 400;
}
.highlighted .price .amount, 
.highlighted .price .currency, 
.highlighted .price .cents {
    color: #FFF;
}
.equivalent {
    font-size: 0.95rem;
    color: var(--color-text-dark-muted);
    margin-bottom: 24px;
}
.economy {
    font-size: 1.05rem;
    margin-bottom: 40px;
}
.economy.highlight { color: #888; }
.economy.accent { font-weight: 600; color: var(--color-orange); }

/* FAQ - LIGHT THEME */
.faq-section {
    padding: 140px 0;
}
.faq-section h2 {
    font-size: 2.8rem;
    margin-bottom: 80px;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    padding: 32px 40px;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item:hover {
    border-color: #D0D0D0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.faq-item summary {
    font-weight: 600;
    font-size: 1.3rem;
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary .arrow {
    color: var(--color-orange);
    transition: transform 0.3s;
}
.faq-item[open] summary .arrow {
    transform: rotate(180deg);
}
.faq-item p {
    margin-top: 24px;
    color: var(--color-text-light-muted);
    border-top: 1px solid var(--color-border-light);
    padding-top: 24px;
    font-size: 1.1rem;
}

/* FOOTER - DARK THEME */
.footer {
    padding: 100px 0 60px 0;
    border-top: 1px solid var(--color-border-dark);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand .footer-logo {
    height: 32px;
    margin-bottom: 24px;
}
.footer-brand p {
    color: var(--color-text-dark-muted);
    max-width: 300px;
}
.footer-info h4, .footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #FFF;
}
.footer p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--color-text-dark-muted);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border-dark);
    padding-top: 40px;
}
.footer-links a {
    color: var(--color-text-dark-muted);
    font-size: 0.95rem;
    margin-left: 24px;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--color-orange);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; } /* On smaller screens, hide the complex tech floating cards */
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .grid-2x2, .grid-2-about { grid-template-columns: 1fr; gap: 60px; }
    .hero-content h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .navbar-grid {
        grid-template-columns: 1fr auto;
        padding: 24px;
        height: auto;
    }
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.8rem; }
    .subheadline { font-size: 1.1rem; }
    .grid-3 { grid-template-columns: 1fr; }
    .laila-img-container { order: -1; margin-bottom: 20px; } 
    .hero { padding-top: 160px; padding-bottom: 80px; min-height: auto; }
    .expertise, .journey, .why-us, .about-laila, .pricing, .faq-section { padding: 80px 0; }
    .expertise h2, .journey h2, .why-us h2, .about-content h2, .pricing h2, .faq-section h2 {
        font-size: 2.2rem; margin-bottom: 40px;
    }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links a { margin: 0 12px; }
}
