:root {
    --bg-dark: #0A0A0F;
    --accent-teal: #14F1D9;
    --accent-violet: #8B5CF6;
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    --glass-bg: rgba(20, 20, 25, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6, .badge {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 24px 48px -12px rgba(0,0,0,0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-teal);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(20, 241, 217, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(20, 241, 217, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-violet);
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.05em;
    font-size: 1.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    gap: 0;
}

.logo span {
    margin: 0;
    padding: 0;
}

.logo .logo-oye {
    color: var(--accent-teal);
}

.logo .logo-hq {
    color: #FFFFFF;
    margin-left: 1px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 480px) {
    .wa-text {
        display: none;
    }
    .nav-wa {
        padding: 0.5rem; /* Make it more circular when text is hidden */
        border-radius: 50%;
    }
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--accent-teal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    right: -10%;
    top: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(20, 241, 217, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulseGlow 8s infinite alternate;
    z-index: 0;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1) translate(-20px, 20px);
        opacity: 0.8;
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    max-width: 900px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--accent-violet);
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.headline {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Trusted Logos Section */
.trusted-logos {
    padding: 120px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    background: var(--bg-dark);
}

#logos-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.logos-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 198, 0.035) 0%, rgba(139, 92, 246, 0.035) 35%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.logos-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 0;
    z-index: 1;
}

.marquee-fade-left, .marquee-fade-right {
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, #0a0a0f 0%, transparent);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, #0a0a0f 0%, transparent);
}

.marquee-content {
    display: flex;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: scrollMarquee 45s linear infinite;
    will-change: transform;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-shrink: 0;
    gap: 8rem;
    padding-right: 8rem;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.select-search-container i {
    left: 18px !important;
}

.select-search-input {
    padding-left: 64px !important;
}

.logo-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0.8rem;
    color: #FFFFFF;
    opacity: 0.65;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
    font-size: 1.35rem;
    font-weight: 700;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    white-space: nowrap;
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 255, 198, 0.1));
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05) translateY(-3px);
    filter: brightness(1.5);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.logo-item i {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.logo-item:hover i {
    color: #fff;
    transform: rotate(-5deg);
}

.logo-item:nth-child(even) {
    animation-delay: -3s;
}

.logo-item i {
    font-size: 1.6rem;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 0 25px rgba(0, 255, 198, 0.4)) brightness(1.2);
}

@keyframes floatLogo {
    0% { transform: translateY(0); }
    100% { transform: translateY(-4px); }
}

/* Sections Global */
section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Use Cases Section */
.use-cases {
    padding: 8rem 0;
}

.use-case-card {
    padding: 2.5rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 24px 48px -12px rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.use-case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 241, 217, 0.4);
    box-shadow: 0 10px 30px rgba(20, 241, 217, 0.15), inset 0 0 20px rgba(20, 241, 217, 0.05);
}

.use-case-card .card-icon {
    font-size: 2.8rem;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
}

.use-case-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.use-case-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Fade up animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    overflow: hidden;
}

.testi-marquee-wrapper {
    position: relative;
    width: 100%;
    margin-top: 4rem;
}

.testi-fade-left, .testi-fade-right {
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testi-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 10%, transparent);
}

.testi-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 10%, transparent);
}

.testi-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: scrollTesti 120s linear infinite;
    will-change: transform;
}

.testi-marquee-wrapper:hover .testi-track {
    animation-play-state: paused;
}

.testi-group {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
    gap: 2.5rem;
    padding-right: 2.5rem;
}

@keyframes scrollTesti {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testi-card {
    width: 380px;
    flex-shrink: 0;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 24px 48px -12px rgba(0,0,0,0.5);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(139, 92, 246, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 40px rgba(20, 241, 217, 0.03), inset 0 0 20px rgba(139, 92, 246, 0.03);
}

.testi-card:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 241, 217, 0.4);
    box-shadow: 0 10px 30px rgba(20, 241, 217, 0.15), inset 0 0 20px rgba(20, 241, 217, 0.05);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-violet);
    font-size: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.testi-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.testi-info span {
    font-size: 0.85rem;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testi-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
}

/* Cards */
.card {
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 241, 217, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-violet);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Solution Section */
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.solution-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--accent-teal);
    font-size: 1.2rem;
}

.mockup-chat {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.msg {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.95rem;
}

.msg.received {
    background: rgba(255, 255, 255, 0.05);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.msg.sent {
    background: rgba(20, 241, 217, 0.1);
    color: var(--accent-teal);
    border: 1px solid rgba(20, 241, 217, 0.2);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.step-card {
    position: relative;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-violet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--accent-violet);
    margin: 0 0 1.5rem 0;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.step-card h3 {
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
}

/* FAQ Section */
.faq {
    padding: 120px 0;
}

.faq-container {
    max-width: 900px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 24px 48px -12px rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(20, 241, 217, 0.3);
    box-shadow: 0 8px 30px rgba(20, 241, 217, 0.1), inset 0 0 15px rgba(139, 92, 246, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--accent-teal);
    transition: transform 0.4s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 24px 24px;
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Active FAQ State */
.faq-item.active {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(255, 255, 255, 0.03);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-violet);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
}

.contact-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80%;
    background: radial-gradient(ellipse at 30% 50%, rgba(20, 241, 217, 0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

/* Contact Heading */
.contact-heading {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-subheading {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
    margin-top: 4rem;
}

/* Left Side – Value Props */
.contact-value h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.value-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.value-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.value-check {
    color: var(--accent-teal);
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(20, 241, 217, 0.5));
}

.contact-trust {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.trust-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.trust-item i {
    color: var(--accent-violet);
    font-size: 1.3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.3));
}

/* Right Side – Form Card */
.contact-form-card {
    position: relative;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 20, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.05),
                inset 0 0 40px rgba(139, 92, 246, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.contact-form-card:hover {
    border-color: rgba(20, 241, 217, 0.15);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(20, 241, 217, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.06),
                inset 0 0 40px rgba(139, 92, 246, 0.05);
}

.form-card-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 241, 217, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.contact-form-card > div {
    position: relative;
    z-index: 1;
}

/* Form Title */
.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Floating Label Groups */
.floating-group {
    position: relative;
    margin-bottom: 1rem;
}

.floating-group input,
.floating-group textarea,
.floating-group select {
    width: 100%;
    height: 48px; /* Ultra-sleek modern height */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.9rem 1.2rem 0.5rem; /* Adjusted padding for slimmer height */
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.floating-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.floating-group label {
    position: absolute;
    top: 42%;
    left: 1.2rem;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
}

/* Textarea label positioning */
.floating-group textarea ~ label {
    top: 1.1rem;
    transform: translateY(0);
}

/* Float the label up */
.floating-group input:focus ~ label,
.floating-group input:not(:placeholder-shown) ~ label,
.floating-group textarea:focus ~ label,
.floating-group textarea:not(:placeholder-shown) ~ label,
.floating-group select:focus ~ label,
.floating-group select:has(option:checked:not([value=""])) ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--accent-teal);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0 0.4rem;
    background: #0d0d15; /* Match the dark background of the card */
    border-radius: 4px;
}

/* Focus glow */
.floating-group input:focus,
.floating-group textarea:focus,
.floating-group select:focus {
    border-color: rgba(20, 241, 217, 0.5);
    background: rgba(20, 241, 217, 0.03);
    box-shadow: 0 0 0 4px rgba(20, 241, 217, 0.06),
                0 0 20px rgba(20, 241, 217, 0.05);
}

/* Hover effect */
.floating-group input:hover:not(:focus),
.floating-group textarea:hover:not(:focus),
.floating-group select:hover:not(:focus) {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

/* Error state */
.floating-group input.error,
.floating-group textarea.error,
.floating-group select.error {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.06);
}

.floating-group input.error ~ label {
    color: rgba(239, 68, 68, 0.8);
}

/* Validation checkmark */
.field-validation {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) scale(0);
    color: var(--accent-teal);
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 4px rgba(20, 241, 217, 0.4));
}

.floating-group.valid .field-validation {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* Select dropdown styling */
.floating-group select option {
    background: #12121f;
    color: var(--text-main);
    padding: 0.5rem;
}

/* Textarea */
.floating-group textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 1.4rem;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Required & Optional Tags */
.required {
    color: rgba(239, 68, 68, 0.7);
    font-weight: 400;
}

.optional-tag {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
    font-size: 0.65rem;
    text-transform: none;
    letter-spacing: 0;
}

/* Gradient CTA Button */
.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    color: #0A0A0F;
    background: linear-gradient(135deg, var(--accent-teal), #0dd9be, #8B5CF6);
    background-size: 200% 200%;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(20, 241, 217, 0.25),
                0 0 50px rgba(20, 241, 217, 0.1);
    animation: gradientShift 6s ease infinite;
    text-decoration: none;
    margin-top: 0.5rem;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-gradient:not(:disabled):hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(20, 241, 217, 0.35),
                0 0 60px rgba(20, 241, 217, 0.15);
}

.btn-gradient:not(:disabled):active {
    transform: translateY(0) scale(0.99);
}

.btn-gradient:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
    animation: none;
    transform: none;
}

/* Spinning loader icon */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.ph-spin {
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

/* Micro Trust Text */
.form-micro-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.2rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    line-height: 1.5;
}

.form-micro-trust i {
    color: var(--accent-teal);
    margin-right: 0.3rem;
    filter: drop-shadow(0 0 3px rgba(20, 241, 217, 0.3));
}

/* Success State */
#contact-success {
    text-align: center;
    padding: 3rem 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Checkmark */
.success-checkmark {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-checkmark i {
    font-size: 2.5rem;
    color: var(--accent-teal);
    z-index: 1;
    animation: checkBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

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

.success-ring {
    position: absolute;
    inset: 0;
    border: 3px solid var(--accent-teal);
    border-radius: 50%;
    animation: ringExpand 0.6s ease-out both;
    filter: drop-shadow(0 0 15px rgba(20, 241, 217, 0.4));
}

@keyframes ringExpand {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

#contact-success h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

#contact-success p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}


/* CTA Section */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 4rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-card:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 241, 217, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(20, 241, 217, 0.1);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 241, 217, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    flex: 1;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 550px;
}

.cta-actions {
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2.5rem;
    }
    .cta-section h2 {
        font-size: 2.8rem;
    }
    .cta-section p {
        margin: 0 auto;
    }
}

/* Premium Footer */
.footer {
    padding: 80px 0 30px;
    background: rgba(10, 10, 20, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 0.5rem;
}

.footer-url {
    color: var(--accent-teal);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-socials a.social-wa:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-5px);
}

.footer-socials a.social-fb:hover {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.4);
    transform: translateY(-5px);
}


/* --- PREMIUM CONTACT SECTION POLISH --- */

/* Dynamic Aura Background */
.contact-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 241, 217, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    animation: auraFloat 15s ease-in-out infinite alternate;
}

@keyframes auraFloat {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: translate(-45%, -55%) scale(1.2) rotate(180deg); opacity: 0.8; }
    100% { transform: translate(-55%, -45%) scale(1) rotate(360deg); opacity: 0.5; }
}

/* Glass Shine Effect for Form Card */
.contact-form-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form-card::after {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(135deg, transparent 0%, transparent 45%, rgba(255, 255, 255, 0.05) 50%, transparent 55%, transparent 100%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    pointer-events: none;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 241, 217, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(20, 241, 217, 0.1);
}

.contact-form-card:hover::after {
    animation: shineSweep 1.5s ease-in-out;
}

@keyframes shineSweep {
    0% { transform: translate(-30%, -30%) rotate(45deg); }
    100% { transform: translate(30%, 30%) rotate(45deg); }
}

/* Staggered Benefits Animation */
.benefits-list li {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.benefits-list li:nth-child(1) { animation-delay: 0.1s; }
.benefits-list li:nth-child(2) { animation-delay: 0.2s; }
.benefits-list li:nth-child(3) { animation-delay: 0.3s; }
.benefits-list li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* Input Focus Polish */
.floating-group input:focus,
.floating-group select:focus,
.floating-group textarea:focus,
.select-trigger:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-teal);
    box-shadow: 0 0 15px rgba(20, 241, 217, 0.15), inset 0 0 10px rgba(20, 241, 217, 0.05);
    outline: none;
}

/* Button Pulse for Valid Form */
.btn-primary:not(:disabled) {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(20, 241, 217, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(20, 241, 217, 0); }
    100% { box-shadow: 0 0 0 0 rgba(20, 241, 217, 0); }
}

/* Custom Select Dropdown Polish */
.select-dropdown {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform-origin: top;
    animation: dropdownPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownPop {
    from { opacity: 0; transform: scaleY(0.95); }
    to { opacity: 1; transform: scaleY(1); }
}

.footer-socials a.social-tw:hover {
    background: #1DA1F2;
    color: #fff;
    border-color: #1DA1F2;
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.4);
    transform: translateY(-5px);
}

.footer-socials a.social-ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(214, 36, 159, 0.4);
    transform: translateY(-5px);
}

.footer-links h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-teal);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-violet);
}

.footer-bottom-links .dot {
    color: rgba(255, 255, 255, 0.2);
}

/* Legal Pages Specific Styling */
.legal-page {
    padding-top: 100px; /* Account for minimal header */
    padding-bottom: 60px;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.legal-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.legal-content {
    background: rgba(10, 10, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 4rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: #b0b0b0;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: #b0b0b0;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 2.5rem 0;
}

/* Minimal Header for Legal Pages */
.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent-teal);
}

/* Floating Elements */
/* WhatsApp Header Button */
.nav-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366 !important;
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-wa:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-trigger {
    background: #0d1b2a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    border: 1px solid rgba(20, 241, 217, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(20, 241, 217, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-trigger:hover {
    transform: translateY(-5px);
    background: #14213d;
    border-color: var(--accent-teal);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 
                0 0 30px rgba(20, 241, 217, 0.2);
}

.bot-icon-small {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent-teal), #0891b2);
    color: #0d1b2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 0 10px rgba(20, 241, 217, 0.5);
}

.chatbot-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 400px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(20, 241, 217, 0.1);
    overflow: hidden;
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-window.active {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: #0d1b2a;
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}

.bot-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-teal), #0891b2);
    color: #0d1b2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(20, 241, 217, 0.4);
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { box-shadow: 0 0 0 0 rgba(20, 241, 217, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(20, 241, 217, 0); }
    100% { box-shadow: 0 0 0 0 rgba(20, 241, 217, 0); }
}

.close-chat {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: rotate(90deg);
}

.chatbot-body {
    height: 420px;
    background: #f8fafc;
    padding: 28px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scroll-behavior: smooth;
}

.chatbot-body::-webkit-scrollbar {
    width: 5px;
}

.chatbot-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.chat-message {
    max-width: 88%;
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 0.98rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    position: relative;
    animation: msgFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes msgFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message {
    background: #ffffff;
    color: #1e293b;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03), 
                0 1px 2px rgba(0, 0, 0, 0.02);
}

.user-message {
    background: #0d1b2a;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 10px 20px rgba(13, 27, 42, 0.1);
}

.msg-time {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 8px;
    font-weight: 500;
}

.chatbot-input-footer {
    padding: 20px 28px;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    display: flex;
    gap: 14px;
    align-items: center;
}

#chat-input {
    flex: 1;
    border: 1px solid #e2e8f0;
    padding: 12px 18px;
    border-radius: 14px;
    outline: none;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

#chat-input:focus {
    border-color: var(--accent-teal);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(20, 241, 217, 0.1);
}

#chat-send {
    background: #0d1b2a;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

#chat-send:hover {
    background: var(--accent-teal);
    color: #0d1b2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 241, 217, 0.3);
}

/* Chatbot Responsive */
@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 40px);
        right: -10px;
        bottom: 70px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .headline {
        font-size: 3.5rem;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-heading {
        font-size: 2.5rem;
    }
    .contact {
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .headline {
        font-size: 2.8rem;
    }
    .grid-3, .steps-grid, .grid-2x2 {
        grid-template-columns: 1fr;
    }
    .hero-cta {
        flex-direction: column;
    }
    .hero-glow {
        right: -50%;
        width: 400px;
        height: 400px;
    }
    .chatbot-window {
        width: calc(100vw - 40px);
        right: -10px;
    }
    .trusted-logos {
        padding: 40px 0;
    }
    .logo-item {
        font-size: 1.1rem;
    }
    .logo-item i {
        font-size: 1.3rem;
    }
    .marquee-group {
        gap: 2.5rem;
        padding-right: 2.5rem;
    }
    .testi-card {
        width: 300px;
        padding: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .contact-form-card {
        padding: 1.8rem;
    }
    .contact-heading {
        font-size: 2rem;
    }
    .contact-subheading {
        font-size: 1rem;
    }
    .form-title {
        font-size: 1.4rem;
    }
    .contact-value h3 {
        font-size: 1.4rem;
    }
    .btn-gradient {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
    }
}


/* --- Mobile Menu Styles --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1000;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    text-align: center;
    width: 100%;
    padding: 2rem;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.mobile-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-links a:hover {
    color: var(--accent-teal);
}

.mobile-links .btn {
    width: 100%;
    max-width: 300px;
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* --- Global Responsive Fixes --- */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    /* Base text scaling */
    html {
        font-size: 14px;
    }
    
    h1, h2, h3, p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Section padding normalization for mobile */
    /* Section padding normalization for mobile */
    .hero { padding-top: 60px; padding-bottom: 50px; }
    .problem, .use-cases, .solution, .how-it-works, .testimonials, .faq, .contact, .cta-section {
        padding: 60px 0;
    }

    /* Button adjusted width */
    .btn {
        width: auto;
        text-align: center;
        justify-content: center;
    }
    
    /* Hero button grouping */
    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 85%;
        max-width: 320px;
        padding: 1rem 1.5rem !important;
        font-size: 1rem;
        justify-content: center;
    }

    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 2.5rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-links {
        align-items: flex-start;
    }
    .footer-socials {
        justify-content: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        text-align: left;
    }
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    /* Layouts to 1 column */
    .grid-3, .grid-2x2, .solution-grid, .steps-grid, .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.8rem;
    }
    
    /* Hide desktop nav inside existing max-width: 768px if not already handled */
}

@media (max-width: 480px) {
    /* Very small devices */
    .hero h1 {
        font-size: 2.2rem !important;
    }
    .section-header h2 {
        font-size: 2rem !important;
    }
    .contact-form-card {
        padding: 1.5rem !important;
    }
}

.how-it-works, .faq {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d14 50%, var(--bg-dark) 100%);
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: rgba(10, 10, 20, 0.95);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8),
                0 0 50px rgba(139, 92, 246, 0.15);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-close i {
    font-size: 1.5rem;
}

body.modal-open {
    overflow: hidden;
}

/* Modal Form Customization */
.modal-content .contact-form-card {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 3rem 2.5rem;
}

@media (max-width: 480px) {
    .modal-content .contact-form-card {
        padding: 2.5rem 1.5rem;
    }
}

/* --- Modal Background Animation --- */
.modal-overlay {
    background: radial-gradient(circle at center, rgba(13, 13, 20, 0.8) 0%, rgba(5, 5, 10, 0.95) 100%);
    overflow: hidden;
}

.modal-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(20, 241, 217, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 40%);
    animation: meshRotate 20s linear infinite;
    z-index: -1;
}

@keyframes meshRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal-content {
    animation: modalPulse 6s ease-in-out infinite;
}

@keyframes modalPulse {
    0%, 100% { 
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8), 0 0 50px rgba(139, 92, 246, 0.1);
    }
    50% { 
        border-color: rgba(20, 241, 217, 0.3);
        box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8), 0 0 70px rgba(20, 241, 217, 0.2);
    }
}

/* Floating Glow Orbs for Modal */
.modal-glow-1, .modal-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
    animation: orbit 15s linear infinite;
}

.modal-glow-1 {
    background: rgba(20, 241, 217, 0.1);
    top: 10%;
    left: 10%;
}

.modal-glow-2 {
    background: rgba(139, 92, 246, 0.15);
    bottom: 10%;
    right: 10%;
    animation-direction: reverse;
    animation-duration: 20s;
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

/* --- Custom Searchable Select --- */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
}

.select-trigger:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-teal);
}

.select-trigger i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.custom-select-wrapper.active .select-trigger i {
    transform: rotate(180deg);
}

.select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #0f0f1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    padding: 10px;
}

.custom-select-wrapper.active .select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-search-container {
    padding: 12px;
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.select-search-container i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-teal);
    font-size: 1.1rem;
    z-index: 5;
    pointer-events: none;
}

.select-search-input {
    width: 100%;
    height: 42px;
    padding: 0 12px 0 60px !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.select-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.select-search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-teal);
    box-shadow: 0 0 15px rgba(20, 241, 217, 0.15);
}

.select-options-list {
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
}

.select-options-list::-webkit-scrollbar {
    width: 4px;
}

.select-options-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.select-option {
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.select-option:hover {
    background: rgba(20, 241, 217, 0.1);
    color: var(--accent-teal);
}

.select-option.selected {
    background: rgba(20, 241, 217, 0.15);
    color: var(--accent-teal);
}

.select-option.hidden {
    display: none;
}

.no-results {
    padding: 15px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: none;
}

/* --- Other Business Input Styles --- */
.other-business-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 0;
}

.other-business-container.active {
    max-height: 100px;
    opacity: 1;
    margin-top: 1.5rem;
}

.other-business-input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.other-business-input:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(20, 241, 217, 0.1);
}

/* --- Design Consistency for Custom Select --- */
.custom-select-group {
    flex: 1;
}

.custom-select-group .select-trigger {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.1rem 1.2rem 0.6rem;
    min-height: 52px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.floating-group select {
    height: 48px;
}

.custom-select-group label {
    pointer-events: none;
}

/* Float label for custom select when valid or active */
.custom-select-group.valid label,
.custom-select-wrapper.active + label {
    top: 0.4rem;
    transform: translateY(0);
    font-size: 0.7rem;
    color: var(--accent-teal);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.custom-select-group .trigger-text {
    font-size: 0.95rem;
    color: var(--text-main);
}

.custom-select-wrapper.active .select-trigger {
    border-color: rgba(20, 241, 217, 0.5);
    background: rgba(20, 241, 217, 0.03);
    box-shadow: 0 0 0 4px rgba(20, 241, 217, 0.06),
                0 0 20px rgba(20, 241, 217, 0.05);
}

.custom-select-wrapper .select-trigger i {
    color: rgba(255, 255, 255, 0.35);
}

/* --- WhatsApp Hero Button --- */
.btn-wa {
    background: linear-gradient(135deg, #1E8F7A, #28D3B5) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(40, 211, 181, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.btn-wa:hover {
    background: linear-gradient(135deg, #176b5c, #1faa91) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 211, 181, 0.55);
}

.btn-wa i {
    font-size: 1.4rem;
}

/* --- Mandatory Field Indicators --- */
.required {
    color: #FF4D4D !important;
    font-weight: 900;
    margin-left: 2px;
    font-size: 1.1rem;
}

/* --- Impact Section --- */
.impact-section {
    padding: 60px 0;
}

.impact-card {
    padding: 40px 60px;
    text-align: center;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.impact-header h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.impact-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.impact-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 30px rgba(20, 241, 217, 0.4);
}

.impact-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 992px) {
    .impact-grid {
        gap: 2rem;
    }
    .impact-value {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .impact-card {
        padding: 60px 30px;
    }
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .impact-header h2 {
        font-size: 2.2rem;
    }
}
