:root {
    --bg-dark: #050508;
    --bg-card: rgba(20, 20, 30, 0.4);
    --primary: #00f3ff;
    --primary-dim: rgba(0, 243, 255, 0.05);
    --secondary: #d400ff;
    --accent-gold: #ffd700;
    --text-white: #ffffff;
    --text-muted: #8f90a6;
    --glass-border: rgba(255, 255, 255, 0.1);
    --blur: 40px;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    --spacing-container: 24px;
}

/* --- MODERN NAVBAR --- */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 15px 30px;
    background: rgba(10, 10, 15, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.logo-container img {
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.nav-links {
    display: flex;
    gap: 15px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.15);
    transform: translateY(-2px);
}

/* Special Button for CTA */
.nav-links a.btn-glow-sm {
    background: linear-gradient(135deg, var(--secondary), #a600cc);
    border: none;
    box-shadow: 0 5px 15px rgba(212, 0, 255, 0.3);
}

.nav-links a.btn-glow-sm:hover {
    box-shadow: 0 8px 25px rgba(212, 0, 255, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-btn .bar {
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .glass-nav {
        width: 95%;
        padding: 15px 20px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-radius: 20px;
        border: 1px solid var(--glass-border);
        margin-top: 15px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .menu-btn {
        display: flex;
    }
}

/* --- INTEGRATIONS SECTION (Premium V2) --- */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.int-category-card {
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.6) 0%, rgba(10, 10, 15, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.int-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--primary-dim), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.int-category-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px rgba(0, 243, 255, 0.15);
}

.int-category-card:hover::before {
    opacity: 1;
}

.int-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.int-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.int-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 2;
}

/* --- LOGO BADGES --- */
.brand-badge {
    /* Reset text styles for image container */
    padding: 4px;
    width: 70px;
    /* Slightly larger */
    height: 70px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    /* Fallback Text Styles */
    text-align: center;
    font-size: 0.65rem;
    line-height: 1.1;
    color: var(--text-muted);
    word-break: break-word;
    /* Ensure different words wrap */
}

.brand-badge img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-badge:hover img {
    transform: scale(1.1);
}

.brand-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}


/* --- CAREER FORM --- */
.cyber-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    color: white;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.cyber-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(212, 0, 255, 0.2);
}

.glass-form {
    max-width: 400px;
}

/* --- CYBER FOOTER --- */
.cyber-footer {
    background: #020205;
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    /* Brand wider */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-qr {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 12px;
    width: fit-content;
}

.qr-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
}

.footer-links h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    color: #555;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-qr {
        margin: 0 auto;
    }
}

/* --- WEBHOOK FLOW VISUAL --- */
.webhook-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 40px auto 70px;
    max-width: 800px;
    position: relative;
    flex-wrap: wrap;
}

.wh-box {
    background: rgba(10, 10, 20, 0.9);
    border: 1px solid var(--primary);
    padding: 15px 40px;
    border-radius: 12px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 20px var(--primary-dim);
    z-index: 2;
}

.wh-stream {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    min-width: 100px;
    overflow: hidden;
    margin: 0 10px;
}

.wh-data-packet {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: streamData 2s infinite linear;
}

.wh-data-packet:nth-child(2) {
    animation-delay: 1s;
}

@keyframes streamData {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(400%);
    }

    /* Depends on container width, approx */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- ANIMATIONS (Enhanced) --- */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px var(--primary-dim);
        border-color: rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 50px rgba(0, 243, 255, 0.15);
        border-color: rgba(0, 243, 255, 0.3);
    }
}

/* Base Fade/Slide Classes */
.fade-in-up,
.fade-in-left,
.fade-in-right,
.fade-in {
    opacity: 0;
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.visible.fade-in-left {
    opacity: 1;
    transform: translateX(0);
}

.visible.fade-in-right {
    opacity: 1;
    transform: translateX(0);
}

.visible.fade-in {
    opacity: 1;
}

.fade-in-up {
    transform: translateY(40px);
}

.fade-in-left {
    transform: translateX(-40px);
}

.fade-in-right {
    transform: translateX(40px);
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Image Effects */
.floating-img {
    animation: float 8s ease-in-out infinite;
}

.glow-border {
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 80px -20px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}

/* --- UTILITIES --- */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

.section-padding {
    padding: 80px 0;
}

.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    opacity: 0.08;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.bg-glow-1 {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 60%);
}

.bg-glow-2 {
    top: 40%;
    right: -300px;
}

.bg-glow-3 {
    bottom: 0;
    left: 20%;
    opacity: 0.05;
}

/* --- NAV --- */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-container);
    background: rgba(5, 5, 8, 0.85);
    -webkit-backdrop-filter: blur(var(--blur));
    backdrop-filter: blur(var(--blur));
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: 0.3s;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-logo {
    max-height: 50px;
    /* Constrain height to prevent overlap */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 8, 0.95);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 2px;
    background: var(--text-white);
    transition: 0.3s;
}

/* --- VERTICALS GRID (New) --- */
.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vertical-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vertical-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.1);
}

.v-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.v-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.v-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.v-features {
    list-style: none;
}

.v-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
    padding: 6px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.v-features li:first-child {
    border-top: none;
}

.v-features li::before {
    content: "•";
    color: var(--primary);
    font-size: 1.2rem;
}

/* --- STORY MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 24px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(50px);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.15);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
}

@media (min-width: 992px) {
    .modal-body {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.modal-visual img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-story h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.modal-story p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal-features-list {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
}

.modal-features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-weight: 600;
}

.modal-features-list li:last-child {
    border-bottom: none;
}

.btn-primary,
.btn-secondary,
.btn-glow-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--text-white);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px rgba(0, 243, 255, 0.3);
}

.btn-secondary {
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
    border-color: var(--text-white);
}

.btn-glow-sm {
    border: 1px solid var(--glass-border);
    padding: 8px 24px;
    font-size: 0.9rem;
}


/* --- HERO --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.badge-2025 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--primary);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    margin-top: 60px;
}

.img-placeholder img {
    width: 100%;
    border-radius: 20px;
}

/* --- Q&A / CALLBACK GRID --- */
.qa-grid {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.qa-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
}

.qa-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.question {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.answer h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Class specific to glass-card usage in JS/HTML not explicitly defined above but covered by qa-card style mostly */
.glass-card {
    /* Retaining generic class for reuse */
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}


/* --- SPLIT / FEATURE SECTIONS --- */
.split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.split-visual img {
    width: 100%;
    display: block;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.feature-list strong {
    color: var(--text-white);
    margin-right: 8px;
}

/* --- PARTNERSHIP --- */
.partnership-card {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.6), rgba(10, 10, 20, 0.8));
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
}

.p-content {
    padding: 40px 24px;
}

.p-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.stat .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
}

/* --- DIAGRAM & WORKFLOW --- */
.diagram-container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    /* Darker background for contrast */
}

.diagram-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.15);
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.step-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.arrow {
    font-size: 2rem;
    color: var(--text-muted);
    transform: rotate(90deg);
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: justify;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Grid for small QA cards in workflow */
.qa-grid-sm {
    display: grid;
    gap: 16px;
}

.qa-grid-sm .qa-card {
    padding: 20px;
    border-radius: 16px;
}

.qa-grid-sm h4 {
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 700;
}

/* --- FORMS --- */
.modern-form {
    margin-top: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    color: var(--text-white);
    font-size: 1.1rem;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: var(--primary);
    outline: none;
}

.input-group label {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--text-muted);
    transition: 0.3s;
    pointer-events: none;
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label {
    top: -12px;
    font-size: 0.8rem;
    color: var(--primary);
}

/* --- WHATSAPP BUTTON --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-btn img {
    width: 35px;
    height: 35px;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* --- FEATURE GRID (White Label) --- */
.feature-section {
    padding: 100px 0;
}

.feature-grid-large {
    display: grid;
    gap: 40px;
}

.feature-card-lg {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card-lg:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.f-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: inline-block;
}

.f-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-white);
}

.f-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.f-list {
    list-style: none;
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.f-list li {
    padding-left: 24px;
    position: relative;
    color: var(--text-gray);
}

.f-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0;
    margin-top: 100px;
    color: var(--text-muted);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
}

/* --- DESKTOP (Min-width 1024px) --- */
@media (min-width: 1024px) {
    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        width: auto;
        background: transparent;
        padding: 0;
        border: none;
    }

    .menu-btn {
        display: none;
    }

    .hero-section .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 80px;
    }

    .hero-visual {
        margin-top: 0;
    }

    .qa-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 80px;
    }

    .split-content {
        order: 1;
    }

    .split-visual {
        order: 2;
    }

    .partnership-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .p-visual img {
        height: 100%;
        min-height: 500px;
    }

    .p-content {
        padding: 60px;
    }
}