:root {
    /* Color code matching user request #141E3E -> using it as primary dark bg */
    --bg-base: #0B0E14;
    /* Slightly darker than 141E3E to make 141E3E pop as cards/gradients */
    --bg-surface: #141E3E;
    --bg-surface-light: #1A264D;

    --text-main: #FFFFFF;
    --text-muted: #94A3B8;

    /* Updated Blue Palette based on reference */
    --accent-purple: #141E3E;
    /* Dreamztech Deep Blue */
    --accent-pink: #60A5FA;
    /* Light Blue */
    --accent-blue: #3B82F6;
    /* Primary Blue */
    --accent-glow: rgba(59, 130, 246, 0.4);

    --glass-bg: rgba(20, 30, 62, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* SEO internal links – visually hidden, inherit surrounding text colour */
.seo-link {
    color: inherit;
    text-decoration: none;
    cursor: text;
}
.seo-link:hover {
    color: inherit;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-surface);
    /* Complex gradient using the requested color code */
    background-image:
        radial-gradient(circle at 50% 0%, #141E3E 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(20, 30, 62, 0.4) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Glow Orbs */
.gradients {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.5;
    animation: floatOrb 10s infinite alternate ease-in-out;
}

.top-orb {
    top: -10%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-purple), transparent 70%);
}

.left-orb {
    bottom: 10%;
    left: -10%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, var(--accent-blue), transparent 70%);
    animation-delay: -3s;
}

.right-orb {
    top: 30%;
    right: -10%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, var(--accent-pink), transparent 70%);
    animation-delay: -7s;
}

@keyframes floatOrb {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(30px) scale(1.1);
    }
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff, #ffffff, #77b6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff00;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgb(13 190 255 / 80%));
}

/* Navigation */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    width: 100%;
    top: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    background: rgba(20, 30, 62, 0.85);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
}

.mobile-menu-btn {
    display: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-coming-soon {
    display: inline-flex;
    align-items: center;
    position: relative;
    cursor: default;
    pointer-events: none;
}

.nav-coming-soon-tag {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 100px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: #FCD34D;
    line-height: 1.6;
    white-space: nowrap;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    animation: comingSoonPulse 2.5s ease-in-out infinite;
}

@keyframes comingSoonPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.footer-coming-soon {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: default;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-coming-soon-tag {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 100px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: #FCD34D;
    white-space: nowrap;
    animation: comingSoonPulse 2.5s ease-in-out infinite;
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: rgba(20, 30, 62, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 8px;
    padding-top: 16px;
    min-width: 180px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 200;
    list-style: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    margin-top: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--text-muted) !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(59, 130, 246, 0.15);
    color: var(--text-main) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-btn {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25), 0 0 40px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: #f0f4ff;
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 80px;
    width: 100%;
    background-image: linear-gradient(to bottom, rgb(0 16 47 / 70%) 0%, rgb(11 14 20 / 0%) 100%), url(image/wave.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/* ═══════════════════════════════════════════
   Universal Scroll-Reveal System
═══════════════════════════════════════════ */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="up"]    { transform: translateY(48px); }
[data-reveal="down"]  { transform: translateY(-32px); }
[data-reveal="left"]  { transform: translateX(-56px); }
[data-reveal="right"] { transform: translateX(56px); }
[data-reveal="zoom"]  { transform: scale(0.88); }
[data-reveal="fade"]  { transform: none; }

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

/* ═══════════════════════════════════════════
   Hero Entrance Keyframes (on page load)
═══════════════════════════════════════════ */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroScale {
    from { opacity: 0; transform: scale(0.92) translateY(24px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes heroStatLeft {
    from { opacity: 0; transform: translateX(-32px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes heroStatRight {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
}

.badge-container {
    margin-bottom: 24px;
    animation: heroFadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    margin-bottom: 24px;
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: #c0c9d5;
    max-width: 800px;
    margin: 0 auto 40px;
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 0px;
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.dashboard-preview {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1000px;
    margin-top: 80px;
    animation: heroScale 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

.float-1 {
    top: 10%;
    left: -10%;
    animation: heroStatLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1s both, float 6s ease-in-out 2s infinite !important;
}

.float-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: -3s;
    animation: heroStatRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.1s both, float 6s ease-in-out 2.1s infinite !important;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 80px;
    width: 100%;
    background-image: linear-gradient(to bottom, rgb(0 16 47 / 70%) 0%, rgb(11 14 20 / 0%) 100%), url(image/wave.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #BFDBFE;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

/* Dashboard Preview (Visuals) */
.glass-panel {
    background: linear-gradient(180deg, rgba(30, 41, 75, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.main-dashboard {
    height: 400px;
    transform: rotateX(5deg) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dashboard-preview:hover .main-dashboard {
    transform: rotateX(0deg) scale(1);
}

.window-headers {
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
    justify-content: flex-start;
}

.window-headers.style-wa {
    background: #075E54;
    /* WhatsApp Dark Green Header */
}

.mac-dots {
    display: flex;
    gap: 8px;
}

.mac-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #475569;
}

.mac-dots span:nth-child(1) {
    background: #EF4444;
}

.mac-dots span:nth-child(2) {
    background: #F59E0B;
}

.mac-dots span:nth-child(3) {
    background: #10B981;
}

.wa-header-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: white;
}

.wa-icon {
    width: 20px;
    height: 20px;
    color: #25D366;
    /* WhatsApp Green */
}

.window-headers span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #475569;
}

.window-headers span:nth-child(3) {
    background: #10B981;
}

.dashboard-content {
    display: flex;
    height: calc(100% - 48px);
}

.chat-sidebar {
    width: 250px;
    border-right: 1px solid var(--glass-border);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(0, 0, 0, 0.1);
}

.chat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    transition: background 0.2s;
}

.chat-item.active {
    background: rgba(255, 255, 255, 0.08);
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.bg-gradient-1 {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
}

.bg-gradient-2 {
    background: linear-gradient(135deg, #EC4899, #F43F5E);
}

.chat-info .name {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
}

.chat-info .msg {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: left;
}

.chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    position: relative;
    justify-content: flex-end;
    padding-bottom: 80px;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    max-width: 80%;
}

.chat-bubble.received {
    background: rgba(255, 255, 255, 0.05);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-bubble.sent {
    background: linear-gradient(135deg, rgba(20, 30, 62, 0.6), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.chat-bubble.sent.wa-color {
    background: rgba(5, 97, 98, 0.9);
    /* WA message bubble green */
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.chat-bubble.sent.wa-color .lucide {
    color: #25D366;
}

.chat-bubble .lucide {
    width: 18px;
    height: 18px;
    color: var(--accent-purple);
    margin-top: 2px;
}

.chat-input-area {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    height: 48px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.chat-input-area .placeholder {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.chat-input-area .lucide {
    color: var(--accent-blue);
    width: 20px;
}

/* Floating Elements */
.glass-card {
    background: rgba(20, 30, 62, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-stat {
    position: absolute;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    left: -10%;
}

.float-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: -3s;
}

.text-green {
    color: #10B981;
}

.text-purple {
    color: #3B82F6;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* PMKS Grant Section */
.pmks-grant-section {
    position: relative;
    width: 100%;
    margin-top: 0px;
    /* Pull it up to overlap the hero */
    padding: 80px;
    z-index: 20;
    background: linear-gradient(135deg, rgba(11, 14, 20, 0.95) 0%, rgba(11, 14, 20, 0.75) 100%),
        url('image/madani.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pmks-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Removed legacy visual and partners code */


/* Partner Logos */
.pmks-partners {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.partner-logo {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.pmks-content {
    flex: 1;
    max-width: 600px;
    /* Keep content on one side for better reading */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.pmks-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.glow-text {
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(96, 165, 250, 0.2);
}

.pmks-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pmks-btn {
    margin-top: 16px;
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 14px 28px;
}

.pmks-btn:hover {
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.6);
}

/* Floating Logos */
.pmks-floating-logos {
    flex: 1;
    position: relative;
    height: 450px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-logo {
    width: 200px;
    height: 200px;
    /* background: white; */
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6); */
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.35)) drop-shadow(0 0 28px rgba(96, 165, 250, 0.2));
    transition: filter 0.4s ease, transform 0.4s ease;
}

.floating-logo:hover img {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 50px rgba(96, 165, 250, 0.4));
    transform: scale(1.05);
}

.float-logo-1 {
    top: 5%;
    left: 10%;
    transform: rotate(-12deg);
    animation: float1 6s ease-in-out infinite;
}

.float-logo-2 {
    top: 5%;
    right: 5%;
    transform: rotate(15deg);
    animation: float2 7s ease-in-out infinite 1s;
}

.float-logo-3 {
    bottom: 10%;
    right: 31%;
    transform: rotate(-8deg);
    animation: float3 4s ease-in-out infinite 2s;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) rotate(-12deg);
    }

    50% {
        transform: translateY(-15px) rotate(-8deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(15deg);
    }

    50% {
        transform: translateY(-20px) rotate(12deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@media (max-width: 900px) {
    .pmks-grant-section {
        padding: 40px 0;
    }

    .pmks-content-wrapper {
        flex-direction: column;
        padding: 32px 20px;
        gap: 24px;
    }

    .pmks-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .pmks-content h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .pmks-floating-logos {
        display: none;
    }

    .grant-input-wrapper {
        flex-direction: column;
        border-radius: 20px;
        padding: 16px;
        align-items: stretch;
    }

    .action-round-btn {
        width: 100%;
        border-radius: 8px;
        margin-left: 0;
        margin-top: 12px;
    }

    .input-divider {
        display: none;
    }

    .grant-input {
        margin: 12px 0;
    }
}

/* Bento Services Section */
.bento-services {
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 10;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 480px;
    background: linear-gradient(180deg, rgba(30, 41, 75, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(96, 165, 250, 0.3);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 50%),
        radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.1), transparent 50%);
    pointer-events: none;
}

.bento-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: 250px;
    min-height: 250px;
    max-height: 250px;
}

.bento-chat .bento-visual::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--accent-blue);
    filter: blur(100px);
    opacity: 0.2;
    border-radius: 50%;
}

.bento-web .bento-visual::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--accent-pink);
    filter: blur(100px);
    opacity: 0.2;
    border-radius: 50%;
}





.bento-content {
    padding: 40px;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bento-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-bottom: 20px;
    line-height: 1.3;
}

.bento-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-services {
        padding: 16px;
        margin-bottom: 48px;
    }

    .bento-card {
        min-height: 360px;
    }
}


/* Social Proof */
.social-proof {
    padding: 160px 24px 100px;
    text-align: center;
    border-top: none;
    background: #101835;
    clip-path: polygon(0 0, 40% 0, calc(40% + 60px) 60px, 100% 60px, 100% 100%, 0 100%);
    margin-top: 0px;
    position: relative;
    z-index: 5;
}

.social-proof-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    line-height: 1.2;
}

.social-proof-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.vertical-marquee-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    height: 500px;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    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);
}

@media (max-width: 768px) {
    .vertical-marquee-container {
        grid-template-columns: repeat(2, 1fr);
        height: 380px;
    }

    .social-proof {
        padding: 80px 16px 60px;
        clip-path: none;
    }

    .social-proof-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
}

.marquee-track {
    display: flex;
    flex-direction: column;
    animation: scrollVertical var(--duration, 20s) linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
}

@keyframes scrollVertical {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 160px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 6px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
    z-index: 10;
}

.client-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .social-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Features Section */
.features-section {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 0px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 50%);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card.large {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.feature-card.large.reverse {
    flex-direction: row-reverse;
}

.feature-visual {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card.large .feature-visual {
    height: 100%;
    min-height: 350px;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
}

.feature-card.large .feature-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.feature-card.large.reverse .feature-visual img {
    left: auto;
    right: 0;
}

.feature-card.large:hover .feature-visual img {
    opacity: 1;
    transform: scale(1.03);
}

.feature-card.large .feature-content {
    background: linear-gradient(90deg, var(--bg-surface) 0%, transparent 100%);
    z-index: 2;
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card.large.reverse .feature-content {
    background: linear-gradient(-90deg, var(--bg-surface) 0%, transparent 100%);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.feature-content p {
    color: var(--text-muted);
}

/* Feature Visuals CSS Arts */
.mockup-blast {
    position: relative;
    width: 60%;
    height: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blast-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    width: 100%;
}

.blast-line.short {
    width: 60%;
}

.blast-icon {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    color: var(--accent-pink);
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 10px var(--accent-pink));
}

.huge-icon {
    width: 64px;
    height: 64px;
    color: var(--accent-blue);
    filter: drop-shadow(0 0 20px var(--accent-blue));
}




/* ═══════════════════════════════════════════════════
   3 Steps Section — Showcase Alternating Layout
═══════════════════════════════════════════════════ */
.steps-section {
    padding: 100px 24px 120px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
    position: relative;
    overflow: hidden;
}

.steps-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Header */
.steps-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.steps-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
}

.steps-header p {
    color: var(--text-muted);
    max-width: 620px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ── Scroll slide-in animations ─────────────────── */

/* Initial hidden state — image slides from left, content from right */
.step-row .step-img-wrap {
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-row .step-content {
    opacity: 0;
    transform: translateX(48px);
    transition: opacity 0.7s ease 0.15s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

/* Reversed row — image from right, content from left */
.step-row.reverse .step-img-wrap {
    transform: translateX(48px);
}

.step-row.reverse .step-content {
    transform: translateX(-48px);
}

/* Triggered state — both slide to their natural position */
.step-row.in-view .step-img-wrap,
.step-row.in-view .step-content {
    opacity: 1;
    transform: translateX(0);
}

/* ── Alternating rows ───────────────────────────── */
.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.step-row:last-of-type {
    border-bottom: none;
}

.step-row.reverse {
    direction: rtl;
}

.step-row.reverse>* {
    direction: ltr;
}

/* ── Image side ─────────────────────────────────── */
.step-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-img-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.step-img-wrap:hover .step-img-glow {
    opacity: 0.45;
}

.glow-blue {
    background: #3B82F6;
}

.glow-purple {
    background: #8B5CF6;
}

.glow-teal {
    background: #06B6D4;
}

.step-img-frame {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(20, 30, 62, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 1;
    cursor: pointer;
    aspect-ratio: 16/10;
}

.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.4s ease;
    filter: brightness(0.9) saturate(1.1);
}

.step-img-frame:hover .step-img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1.3);
}

/* Overlay that slides in from bottom on hover */
.step-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 15, 40, 0.85) 0%,
            rgba(10, 15, 40, 0.3) 50%,
            transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.step-img-frame:hover .step-img-overlay {
    opacity: 1;
}

.step-img-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.25);
    border: 1px solid rgba(59, 130, 246, 0.5);
    backdrop-filter: blur(8px);
    color: #93C5FD;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    transform: translateY(10px);
    transition: transform 0.35s ease;
}

.step-img-badge .lucide {
    width: 14px;
    height: 14px;
}

.step-img-frame:hover .step-img-badge {
    transform: translateY(0);
}

/* ── Text side ──────────────────────────────────── */
.step-content {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    row-gap: 12px;
    align-items: start;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    margin-bottom: -8px;
    grid-column: 1 / -1;
}

.step-icon-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
    grid-column: 1;
    align-self: center;
}

.step-icon-pill .lucide {
    width: 20px;
    height: 20px;
    color: #93C5FD;
}

.step-content h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
    grid-column: 2;
    align-self: center;
}

.step-highlight {
    color: #93C5FD;
    font-weight: 600;
}

.step-content>p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 460px;
    grid-column: 1 / -1;
}

.step-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    padding: 8px 20px;
    margin-top: 4px;
    width: fit-content;
    grid-column: 1 / -1;
}

.step-stat-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60A5FA, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── Mini 2-col cards ───────────────────────────── */
.step-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 64px;
}

.step-mini-card {
    background: linear-gradient(180deg, rgba(30, 41, 75, 0.45) 0%, rgba(15, 23, 42, 0.65) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.step-mini-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.step-mini-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.step-mini-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.4s ease;
    filter: brightness(0.85) saturate(1.1);
}

.step-mini-card:hover .step-mini-img {
    transform: scale(1.07);
    filter: brightness(1) saturate(1.25);
}

.step-mini-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(12, 18, 42, 0.85));
    transition: opacity 0.35s ease;
}

.step-mini-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-mini-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-main);
}

.step-mini-body>p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
    .step-row {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
    }

    .step-row.reverse {
        direction: ltr;
    }

    .step-number {
        font-size: 3.5rem;
    }

    .step-content>p {
        max-width: 100%;
    }

    .step-mini-grid {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }
}

/* CTA Section */

.cta-section {
    padding: 80px 120px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-box {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(180deg, rgba(20, 30, 62, 0.95) 0%, rgba(10, 15, 30, 0.95) 100%),
        url('image/wave.png');
    background-size: cover;
    background-position: center bottom;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}


/* Footer */
footer {
    border-top: none;
    background: rgba(0, 0, 0, 0.2);
    padding: 140px 24px 24px;
    clip-path: polygon(0 0, 40% 0, calc(40% + 60px) 60px, 100% 60px, 100% 100%, 0 100%);
    margin-top: 0px;
    position: relative;
    z-index: 5;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: 0.9rem;
}

.footer-company-name {
    color: var(--text-main) !important;
    font-weight: 700;
    font-size: 1rem !important;
    margin-top: 16px;
    line-height: 1.4;
}

.footer-tagline {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    margin-top: 4px !important;
    font-style: italic;
}

.footer-contact-info {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-info p {
    color: var(--text-muted) !important;
    font-size: 0.85rem !important;
    margin-top: 0 !important;
    line-height: 1.6;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.footer-contact-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 50px;
    padding-top: 2px;
    flex-shrink: 0;
}

.footer-contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-info a:hover {
    color: var(--text-main);
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.link-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-col h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.link-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.link-col a:hover {
    color: var(--text-main);
}

.footer-seo-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-seo-heading {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-seo-links p:not(.footer-seo-heading) {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 4px;
}

.footer-seo-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.8rem;
}

.footer-seo-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.large {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }

    .feature-card.large.reverse {
        flex-direction: column;
    }

    .feature-card.large.reverse .feature-visual img {
        left: 0;
        right: auto;
    }

    .feature-card.large.reverse .feature-content {
        background: linear-gradient(180deg, var(--bg-surface) 0%, transparent 100%);
    }

    .feature-card.large .feature-visual {
        width: 100%;
        height: 220px;
    }

    .feature-card.large .feature-content {
        padding: 28px 20px;
    }

    .features-section {
        padding: 60px 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero {
        padding: 120px 16px 60px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .float-1,
    .float-2 {
        display: none;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: flex;
        background: transparent;
        border: none;
        color: var(--text-main);
        cursor: pointer;
        padding: 8px;
        order: 2;
    }

    .mobile-menu-btn .lucide {
        width: 28px;
        height: 28px;
    }

    .dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        gap: 8px;
        padding-top: 24px;
        padding-bottom: 16px;
    }

    .nav-links a {
        padding: 8px 0;
        display: inline-block;
        width: 100%;
    }

    .nav-actions {
        display: none;
        width: 100%;
        order: 4;
        flex-direction: column;
        gap: 16px;
        padding-bottom: 24px;
    }

    .nav-actions .login-btn {
        display: block;
        text-align: center;
    }

    .nav-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .navbar.mobile-menu-open {
        background: rgba(20, 30, 62, 0.95);
        border-radius: 24px;
        padding-bottom: 16px;
    }

    .navbar.mobile-menu-open .nav-links,
    .navbar.mobile-menu-open .nav-actions {
        display: flex;
    }

    .navbar.mobile-menu-open .dropdown-menu {
        display: none;
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none !important;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 16px;
        margin-top: 8px;
    }

    .navbar.mobile-menu-open .dropdown:hover .nav-chevron {
        transform: none;
    }

    .navbar.mobile-menu-open .dropdown.mobile-submenu-open .dropdown-menu {
        display: block;
    }

    .navbar.mobile-menu-open .dropdown.mobile-submenu-open .nav-chevron,
    .navbar.mobile-menu-open .dropdown.mobile-submenu-open:hover .nav-chevron {
        transform: rotate(180deg);
    }

    .cta-section {
        padding: 60px 24px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .chat-sidebar {
        display: none;
    }

    .footer-links {
        gap: 40px;
    }

    .link-col {
        flex: 1 1 40%;
    }

    .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 32px;
    }

    .link-col {
        flex: 1 1 45%;
        min-width: 140px;
    }
}