/* ============================================================
   RechargeBill Pay — Complete Redesign CSS
   Brand Colors: #0ea764 (Green), #0D2574 (Navy Blue), #ffffff, #38bdf8
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-green: #0ea764;
    --black: #0d1b33;
    --white: #ffffff;
    --brand-blue: #38bdf8;
    --brand-pink: #ff2e93;
    --logo-blue: #0D2574;
    --dark: #0d1b33;
    --dark-2: #061022;
    --dark-3: #0d1b33;
    --gray: #888888;
    --gray-light: #cccccc;
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-green) var(--dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-secondary);
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    cursor: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--brand-green);
    border-radius: 3px;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}
img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === GRAIN OVERLAY === */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === PRELOADER === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.preloader-logo {
    width: 160px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-text {
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
}
.preloader-line {
    width: 60px;
    height: 2px;
    background: var(--dark-3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.preloader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60px;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-blue), var(--brand-pink));
    animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}
@keyframes preloaderSlide {
    0% { left: -60px; }
    100% { left: 60px; }
}

/* === SITE HEADER / NAV === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
}
/* Sub-pages have dark bg — use a dark frosted strip */
.site-header.scrolled.dark-page {
    background: rgba(3, 9, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: 34px;
    display: block;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: rgba(3, 9, 20, 0.75);
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--dark);
    background: rgba(0, 0, 0, 0.06);
}
.nav-links a.active {
    color: var(--brand-green);
}
/* nav-cta removed */
/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile menu */
.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
    background: rgba(3, 9, 20, 0.98);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    padding: 12px 16px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}
.nav-mobile a:hover,
.nav-mobile a.active {
    background: rgba(255,255,255,0.06);
    color: var(--brand-green);
}
.nav-mobile .nav-mobile-cta {
    margin-top: 8px;
    background: var(--brand-green);
    color: var(--white) !important;
    text-align: center;
    border-radius: 100px;
}

/* === SUB-PAGE STYLES === */
.page-hero {
    padding: 140px 0 80px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(14,167,100,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-green);
    margin-bottom: 20px;
}
.page-hero h1 {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 800px;
}
.page-hero h1 span {
    color: var(--brand-green);
}
.page-hero p {
    font-family: var(--font-primary);
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 640px;
}
.page-body {
    padding: 80px 0 100px;
    background: var(--dark);
}
.page-section {
    margin-bottom: 64px;
}
.page-section:last-child {
    margin-bottom: 0;
}
.page-section-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-section p,
.page-section li {
    font-family: var(--font-primary);
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 12px;
}
.page-section ul,
.page-section ol {
    padding-left: 20px;
}
.page-section li {
    margin-bottom: 10px;
}
.page-section strong {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}
/* Value cards / what-we-do cards */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 8px;
}
.value-card {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.value-card:hover {
    border-color: rgba(14,167,100,0.3);
    transform: translateY(-3px);
}
.value-card h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 10px;
}
.value-card p {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 0;
}
/* Vision pillars */
.pillar-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}
.pillar-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s ease;
}
.pillar-item:hover {
    border-color: rgba(14,167,100,0.25);
}
.pillar-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(14,167,100,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-green);
}
.pillar-item h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.pillar-item p {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 0;
}
/* Vision quote */
.vision-quote {
    background: linear-gradient(135deg, rgba(14,167,100,0.12), rgba(14,167,100,0.04));
    border: 1px solid rgba(14,167,100,0.25);
    border-left: 4px solid var(--brand-green);
    border-radius: 16px;
    padding: 32px 36px;
    margin-bottom: 48px;
}
.vision-quote p {
    font-family: var(--font-primary);
    font-size: 20px;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 0;
}
/* Company details */
.company-details {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.company-detail-item label {
    display: block;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-green);
    margin-bottom: 6px;
}
.company-detail-item span {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}
/* FAQ Accordion */
.faq-category {
    margin-bottom: 48px;
}
.faq-category-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
}
.faq-item {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.faq-item.open {
    border-color: rgba(14,167,100,0.3);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    transition: color 0.2s ease;
}
.faq-question:hover { color: var(--brand-green); }
.faq-item.open .faq-question { color: var(--brand-green); }
.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    transition: transform 0.3s ease, background 0.2s ease;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(14,167,100,0.15);
    color: var(--brand-green);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}
.faq-item.open .faq-answer {
    max-height: 400px;
}
/* Legal pages */
.legal-section {
    margin-bottom: 52px;
}
.legal-section h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.legal-section p,
.legal-section li {
    font-family: var(--font-primary);
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.85;
    margin-bottom: 10px;
}
.legal-section ul,
.legal-section ol {
    padding-left: 22px;
    margin-top: 8px;
}
.legal-section strong {
    color: rgba(255,255,255,0.85);
}
.legal-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    padding: 20px 28px;
    background: var(--dark-2);
    border-radius: 12px;
}
.pillar-item:hover {
    border-color: rgba(14,167,100,0.25);
}
.pillar-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(14,167,100,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-green);
}
.pillar-item h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.pillar-item p {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 0;
}
/* Vision quote */
.vision-quote {
    background: linear-gradient(135deg, rgba(14,167,100,0.12), rgba(14,167,100,0.04));
    border: 1px solid rgba(14,167,100,0.25);
    border-left: 4px solid var(--brand-green);
    border-radius: 16px;
    padding: 32px 36px;
    margin-bottom: 48px;
}
.vision-quote p {
    font-family: var(--font-primary);
    font-size: 20px;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 0;
}
/* Company details */
.company-details {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.company-detail-item label {
    display: block;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-green);
    margin-bottom: 6px;
}
.company-detail-item span {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}
/* FAQ Accordion */
.faq-category {
    margin-bottom: 48px;
}
.faq-category-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
}
.faq-item {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.faq-item.open {
    border-color: rgba(14,167,100,0.3);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    transition: color 0.2s ease;
}
.faq-question:hover { color: var(--brand-green); }
.faq-item.open .faq-question { color: var(--brand-green); }
.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    transition: transform 0.3s ease, background 0.2s ease;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(14,167,100,0.15);
    color: var(--brand-green);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}
.faq-item.open .faq-answer {
    max-height: 400px;
}
/* Legal pages */
.legal-section {
    margin-bottom: 52px;
}
.legal-section h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.legal-section p,
.legal-section li {
    font-family: var(--font-primary);
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.85;
    margin-bottom: 10px;
}
.legal-section ul,
.legal-section ol {
    padding-left: 22px;
    margin-top: 8px;
}
.legal-section strong {
    color: rgba(255,255,255,0.85);
}
.legal-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    padding: 20px 28px;
    background: var(--dark-2);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
}
.legal-meta span {
    font-family: var(--font-primary);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.legal-meta strong {
    color: var(--brand-green);
}

@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .nav-inner { padding: 0 24px; }
}

#cursor-dot {
    display: none;
}
#cursor-ring {
    display: none;
}
body.cursor-hover #cursor-dot {
    display: none;
}
body.cursor-hover #cursor-ring {
    display: none;
}

/* === NAVIGATION === */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(10, 10, 10, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255,255,255,0);
    transition: all 0.3s ease;
}
#navbar.scrolled {
    padding: 3px 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.07);
}
#navbar.scrolled .nav-logo img {
    height: 30px;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: 44px;
    transition: height 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-link {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #0d1b33;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-green);
    transition: width 0.3s var(--ease-out-expo);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-link:hover,
.nav-link.active {
    color: var(--brand-green);
}
.nav-cta {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1.5px solid var(--brand-green);
    color: var(--brand-green);
    border-radius: 100px;
    transition: all 0.3s ease;
}
.nav-cta:hover {
    background: var(--brand-green);
    color: var(--white);
    box-shadow: 0 0 30px rgba(14, 167, 100, 0.3);
}

/* Mobile nav adjustments */
@media (max-width: 768px) {
    .nav-logo img { height: 32px; }
    .nav-inner { padding: 0 20px; justify-content: center; }
    .nav-logo { margin: 0 auto; }
    #navbar.scrolled .nav-logo img { height: 24px; }
    .nav-cta { font-size: 11px; padding: 8px 16px; }
}


/* === LIGHT THEME: INTERNAL PAGES === */
.light-page { background: #f6f8f6; color: #15251f; }
.light-page .page-hero { background: #edf6f1; border-bottom: 1px solid #d9e8df; }
.light-page .page-hero::before { background: radial-gradient(ellipse, rgba(14,167,100,.14) 0%, transparent 70%); }
.light-page .page-hero h1,
.light-page .contact-hero-title { color: var(--logo-blue); }
.light-page .page-hero p,
.light-page .contact-hero-desc { color: #53655c; }
.light-page .page-body { background: #f6f8f6; }
.light-page .page-section-title,
.light-page .faq-category-title,
.light-page .legal-section h3,
.light-page .pillar-item h4,
.light-page .contact-card h2 { color: var(--logo-blue); border-color: #d9e8df; }
.light-page .page-section p,
.light-page .page-section li,
.light-page .legal-section p,
.light-page .legal-section li,
.light-page .faq-answer-inner,
.light-page .value-card p,
.light-page .pillar-item p,
.light-page .company-detail-item span,
.light-page .detail-value,
.light-page .contact-card-sub { color: #53655c; }
.light-page .page-section strong,
.light-page .legal-section strong,
.light-page .detail-value a { color: #15251f; }
.light-page .value-card,
.light-page .pillar-item,
.light-page .company-details,
.light-page .faq-item,
.light-page .legal-meta,
.light-page .contact-card { background: var(--white); border-color: #d9e8df; box-shadow: 0 10px 30px rgba(13,37,116,.06); }
.light-page .vision-quote { background: #edf8f2; border-color: rgba(14,167,100,.28); }
.light-page .vision-quote p { color: #254237; }
.light-page .faq-category-title::after { background: #d9e8df; }
.light-page .faq-question { color: var(--logo-blue); }
.light-page .faq-icon { background: #edf6f1; color: #60756a; }
.light-page .company-detail-item label,
.light-page .detail-label { color: #087548; }
.light-page .form-group label { color: var(--logo-blue); }
.light-page .form-group input,
.light-page .form-group textarea,
.light-page input[style],
.light-page textarea[style] { background: var(--white) !important; color: #15251f !important; border-color: #cbdcd1 !important; }
.light-page .form-group input::placeholder,
.light-page .form-group textarea::placeholder { color: #8a9b92; }
.light-page .copyright-card { background: var(--white) !important; border-color: #d9e8df !important; box-shadow: 0 10px 30px rgba(13,37,116,.06); }
.light-page .copyright-card h3,
.light-page .copyright-card strong { color: var(--logo-blue) !important; }
.light-page .copyright-card p,
.light-page .copyright-card ul { color: #53655c !important; }
.light-page .legal-meta[style] { background: var(--white) !important; border-color: #d9e8df !important; }
.light-page .legal-meta span { color: #53655c; }
.light-page .footer { background: #0d1b33 !important; color: var(--white) !important; border-top-color: rgba(255,255,255,.08) !important; }
.light-page .footer h4,
.light-page .footer [style*="color: #fff"],
.light-page .footer [style*="color:#fff"] { color: var(--white) !important; }
.light-page .footer p,
.light-page .footer a { color: rgba(255,255,255,.65); }
.light-page .footer a:hover { color: var(--brand-green); }
.light-page .footer-bottom { border-top-color: rgba(255,255,255,.08) !important; }
@media (max-width: 480px) {
    .nav-logo img { height: 28px; }
    #navbar.scrolled .nav-logo img { height: 22px; }
    .nav-cta { font-size: 10px; padding: 6px 14px; }
}

/* === Scrolled Header Buttons === */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(30px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    pointer-events: none;
}
#navbar.scrolled .header-buttons {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}
.btn-header {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    box-sizing: border-box;
}
.btn-header img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}
.btn-header.play-btn {
    background: var(--brand-green);
    color: var(--white);
    border: 1px solid var(--brand-green);
}
.btn-header.play-btn img {
    filter: brightness(0) invert(1);
}
.btn-header.app-btn {
    background: #0d1b33;
    color: var(--white);
    border: 1px solid #0d1b33;
}
.btn-header.app-btn img {
    filter: brightness(0) invert(1);
}
.btn-header.api-btn {
    background: transparent;
    color: var(--brand-green);
    border: 1px solid var(--brand-green);
}
.btn-header.nav-btn {
    background: transparent;
    color: #0d1b33;
    border: 1px solid transparent;
}
/* Hover styles */
.btn-header:hover {
    transform: translateY(-1px);
}
.btn-header.play-btn:hover {
    background: #0b9659;
    border-color: #0b9659;
    box-shadow: 0 4px 12px rgba(14, 167, 100, 0.15);
}
.btn-header.app-btn:hover {
    background: #111b2d;
    border-color: #111b2d;
    box-shadow: 0 4px 12px rgba(3, 9, 20, 0.15);
}
.btn-header.app-btn:hover img {
    filter: brightness(0) invert(1);
}
.btn-header.api-btn:hover {
    background: var(--brand-green);
    color: var(--white);
    border-color: var(--brand-green);
    box-shadow: 0 4px 12px rgba(14, 167, 100, 0.15);
}
.btn-header.nav-btn:hover,
.btn-header.nav-btn.active {
    background: rgba(14, 167, 100, 0.1);
    color: var(--brand-green);
    border-color: rgba(14, 167, 100, 0.2);
}

@media (max-width: 1200px) {
    .header-buttons {
        gap: 8px;
    }
    .btn-header {
        padding: 5px 12px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .header-buttons {
        display: none;
    }
}


/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #0d1b33;
    transition: all 0.3s ease;
    transform-origin: center;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background: var(--brand-green);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background: var(--brand-green);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(3, 9, 20, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s var(--ease-out-expo);
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.mobile-link {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s ease;
    position: relative;
}
.mobile-link:hover,
.mobile-link.active {
    color: var(--brand-green);
}
.mobile-link.cta {
    margin-top: 20px;
    font-size: 16px;
    padding: 16px 40px;
    border: 2px solid var(--brand-green);
    border-radius: 100px;
    color: var(--brand-green);
}

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: capitalize;
    padding: 16px 36px;
    background: var(--brand-green);
    color: var(--white);
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    box-shadow: 0 0 40px rgba(14, 167, 100, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: capitalize;
    padding: 16px 36px;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
}
.btn-outline:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
}

/* === SECTION COMMON === */
.section-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
}
.title-accent {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-blue), var(--brand-pink));
    border-radius: 3px;
    margin: 0 auto 24px;
}
.title-accent.left {
    margin: 0 0 24px;
}
.section-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-light);
    max-width: 640px;
    margin: 0 auto;
}
.section-head {
    margin-bottom: 64px;
}
.section-head.center {
    text-align: center;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-bg picture {
    width: 100%;
    height: 100%;
    display: block;
}
.hero-bg picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-left-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 45%, rgba(255,255,255,0) 100%);
    z-index: 1;
}
.hero-top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
}
.tag-line {
    width: 40px;
    height: 1px;
    background: var(--brand-green);
}
.tag-text {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand-green);
}
.hero-headline {
    font-family: var(--font-primary);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #0d1b33;
}
.hero-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
}
.hero-word {
    display: inline-block;
    transform: translateY(120%);
    color: #0d1b33;
}
.hero-headline em {
    font-style: normal;
    color: var(--brand-green);
    position: relative;
}
.hero-headline em::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-blue);
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
}
.hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(13, 27, 51, 0.75);
    max-width: 520px;
    margin: 20px 0 32px 0;
    opacity: 0;
    transform: translateY(30px);
}
.hero-sub strong {
    color: var(--brand-green);
    font-weight: 600;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}
.hero-buttons .btn-primary img {
    filter: brightness(0) invert(1); /* Makes Google Play store icon white */
}
.hero-buttons .btn-outline {
    background: #ffffff;
    border-color: #0d1b33;
    color: #0d1b33;
}
.hero-buttons .btn-outline img {
    filter: brightness(0); /* Makes App Store icon black */
}
.hero-buttons .btn-outline:hover {
    background: #f0f0f0;
    border-color: #0d1b33;
    color: #000000;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 2.5s;
}
.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--brand-green);
    border-radius: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-primary);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* === CLIENTS === */
.clients {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}
.clients .section-title {
    color: var(--black);
}
.clients .section-tag {
    color: var(--brand-green);
}
.marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    margin-top: 60px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-content {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
    flex-shrink: 0;
    min-width: max-content;
    white-space: nowrap;
    animation: scrollMarquee 20s linear infinite;
}
.marquee-content.marquee-right {
    animation-direction: reverse;
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(1);
    color: #000;
}
.client-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}
.client-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}
.partner-logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.partner-logo-container img {
    height: 24px; /* Much smaller size */
    width: auto;
    object-fit: contain;
    display: block;
}
.partner-logo-container:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* === STATS === */
.stats {
    padding: 60px 0;
    background: var(--logo-blue);
    border-top: none;
    border-bottom: none;
    overflow: hidden;
}
.stats-track {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.stats-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.stat-block {
    text-align: center;
    flex: 1;
    min-width: 140px;
}
.stat-number {
    font-family: var(--font-primary);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    color: var(--white);
    display: inline;
}
.stat-plus {
    font-family: var(--font-primary);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--brand-green);
}
.stat-label {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
    font-family: var(--font-primary);
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}





/* === WORK / PORTFOLIO === */


/* === RESULTS === (White Background) */
.results {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}
.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14,167,100,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.results .section-tag {
    color: var(--brand-green);
}
.results .section-title {
    color: var(--black);
}
.results .section-desc {
    color: #555;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 64px;
    margin-top: 50px;
}
.result-pointer {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    opacity: 0;
    transition: all 0.4s var(--ease-out-expo);
}
.pointer-icon {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    border-radius: 0;
    background: transparent;
    display: grid;
    place-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
}
.pointer-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
    margin: 0;
}
.pointer-icon img[src*="/generated/"] {
    width: 88px;
    height: 88px;
}
.pointer-icon i {
    color: var(--logo-blue);
    font-size: 25px;
    line-height: 1;
}
.result-pointer:hover .pointer-icon {
    background: transparent;
    transform: translateY(-2px);
}
.pointer-content h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
    line-height: 1.3;
}
.pointer-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* === SERVICES === (Pink Background) */
.services {
    padding: 100px 0;
    background: var(--brand-green);
    position: relative;
    overflow: hidden;
}
.services::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.services .section-tag {
    color: rgba(255, 255, 255, 0.9);
}
.services .section-title {
    color: var(--white);
}
.services .title-accent {
    background: linear-gradient(90deg, var(--white), rgba(255,255,255,0.7));
}
.services .section-desc {
    color: rgba(255,255,255,0.8);
}

/* Services Marquee Layout */
.services-marquee-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: 560px;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
    padding: 20px 10px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.services-column {
    display: flex;
    flex-direction: column;
    overflow: visible;
    position: relative;
    height: 100%;
    opacity: 0;
    transform: translateY(40px);
    padding: 0 12px;
}

.services-column-track {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

/* Animations for tracks */
.col-up .services-column-track {
    animation: scrollUp 12s linear infinite;
}

.col-down .services-column-track {
    animation: scrollDown 12s linear infinite;
}

/* Pause scroll on hover for specific column */
.services-column:hover .services-column-track {
    animation-play-state: paused;
}

/* Mathematically seamless infinite vertical scroll keyframes */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/* Glassmorphic Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.col-up .service-card {
    transform: rotate(-2.5deg);
}
.col-down .service-card {
    transform: rotate(2.5deg);
}

.col-up .service-card:hover {
    transform: translateY(-8px) scale(1.05) rotate(0deg);
}
.col-down .service-card:hover {
    transform: translateY(-8px) scale(1.05) rotate(0deg);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    margin: 0 auto 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.service-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.service-card p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}
.service-line {
    display: none;
}

/* === ABOUT === (White Background) */
.about {
    padding: 120px 0;
    background: var(--white);
}
.about .section-tag {
    color: var(--brand-green);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-visual {
}
.about-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.about-img-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(0.3);
    transition: filter 0.4s ease;
}
.about-img-container:hover img {
    filter: grayscale(0);
}
.about-img-border {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--brand-green), transparent 50%, var(--brand-blue)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.about-img-container:hover .about-img-border {
    opacity: 1;
}
.about-content {
}
.about-headline {
    font-family: var(--font-primary);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--black);
}
.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
.about-content strong {
    color: var(--brand-green);
    font-weight: 600;
}
.about-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 100px;
    color: var(--black);
    transition: all 0.3s ease;
}
.badge i {
    color: var(--brand-green);
}
.badge:hover {
    border-color: var(--brand-green);
    background: rgba(14,167,100,0.06);
    color: var(--brand-green);
}

/* === PROCESS === */
.process {
    padding: 120px 0;
    background: #0d1b33;
}
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.process-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.06);
    z-index: 1;
}
.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--brand-pink), var(--brand-green));
    transition: height 0.3s ease;
}
.process-line {
    position: absolute;
    left: 31px;
    top: 0;
    bottom: -100px;
    width: 2px;
    background: #333;
}
.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
}
.process-step:last-child {
    margin-bottom: 0;
}
.step-marker {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0d1b33;
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}
.step-marker span {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-pink);
}
.process-step.active .step-marker {
    border-color: var(--brand-pink);
    background: #0d1b33;
    box-shadow: 0 0 30px rgba(255, 46, 147, 0.25);
}
.step-card {
    flex: 1;
    background: rgba(3, 9, 20, 0.45);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s var(--ease-out-expo);
}
.step-card:hover {
    border-color: rgba(14,167,100,0.2);
    background: rgba(255,255,255,0.04);
}
.step-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}
.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-light);
}

/* === PRESS === */
.press {
    padding: 80px 0;
    background: var(--white);
}
.press .section-title {
    color: var(--black);
}
.press-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
    justify-items: center;
    max-width: 1040px;
    margin: 0 auto;
}
.press-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 4px;
}
.press-item img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    clip-path: inset(2px 12px 2px 2px); /* Cropped the right edge more to hide the faint line artifact */
    filter: grayscale(1);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.press-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* === TESTIMONIALS === (Lime Green Background) */
.testimonials {
    padding: 60px 0;
    background: #0d1b33;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.testimonials .section-head {
    margin-bottom: 32px;
}
.testimonials-dark-content {
    position: relative;
    z-index: 1;
    width: 100%;
}
.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-green);
    z-index: 2;
    clip-path: circle(var(--radius, 0px) at var(--x, 50%) 0%);
    pointer-events: none;
    overflow: hidden;
}
.testimonials-white-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: auto;
    padding: 60px 0;
}
.testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.testimonials::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14,167,100,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.testimonials .section-tag {
    color: rgba(255, 255, 255, 0.95);
    opacity: 0.9;
}
.testimonials .section-title {
    color: var(--white);
}
.testimonials .title-accent {
    background: linear-gradient(90deg, var(--white), rgba(255,255,255,0.4));
}
.testimonials .section-desc {
    color: rgba(255, 255, 255, 0.85);
}
.testimonials-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.testimonial-slider {
    position: relative;
    min-height: 280px;
}
.testimonial-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
    pointer-events: none;
    z-index: 0;
}
.testimonial-slide.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
    z-index: 2;
}
.testimonial-slide.prev {
    opacity: 0.2;
    transform: translate(-145%, -50%) scale(0.8);
    z-index: 1;
}
.testimonial-slide.next {
    opacity: 0.2;
    transform: translate(45%, -50%) scale(0.8);
    z-index: 1;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 40px 36px 32px;
    text-align: left;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 20px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 64px;
    line-height: 1;
    color: var(--white);
    opacity: 0.2;
    pointer-events: none;
}
.testimonial-quote {
    font-family: var(--font-primary);
    font-size: 100px;
    line-height: 0.5;
    color: var(--white);
    opacity: 0.15;
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--white);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
}
.author-info h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}
.author-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

/* Active Testimonial Slide Tweak (White Card with Dark & Pink Accents) */
.testimonial-slide.active .testimonial-card {
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 20px 50px rgba(3, 9, 20, 0.12);
}
.testimonial-slide.active .testimonial-card::before {
    color: var(--brand-pink);
    opacity: 0.25;
}
.testimonial-slide.active .testimonial-text {
    color: var(--dark);
}
.testimonial-slide.active .author-info h4 {
    color: var(--brand-pink);
}
.testimonial-slide.active .author-info span {
    color: rgba(3, 9, 20, 0.65);
}
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}
.t-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}
.t-btn:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}
.t-dots {
    display: flex;
    gap: 8px;
}
.t-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}
.t-dots .dot.active {
    background: var(--brand-pink);
    width: 24px;
    border-radius: 4px;
}

/* === PRESS === (White Background) */
.press {
    padding: 100px 0;
    background: var(--white);
}
.press .section-tag {
    color: var(--brand-green);
}
.press .section-title {
    color: var(--black);
}
.press-marquee-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.press-marquee-row {
    display: contents;
}
.press-grid {
    display: contents;
}
.press-grid.duplicate-on-mobile {
    display: none;
}
.press-item {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    padding: 10px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    aspect-ratio: 1.3;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}
.press-item:hover {
    border-color: rgba(14,167,100,0.5);
    background: rgba(14,167,100,0.02);
}

/* === FOOTER === */
.footer {
    background: var(--black);
}
.footer-submit-btn {
    padding: 14px 40px;
}
.footer-cta-title {
    font-size: clamp(50px, 7vw, 90px);
    line-height: 1.1;
    font-family: var(--font-primary);
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: -2px;
}
.footer-cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.footer-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(14,167,100,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cta-content {
    position: relative;
}
.cta-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--white);
}
.cta-content h2 span {
    background: linear-gradient(90deg, var(--brand-green), var(--brand-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-big {
    font-size: 16px;
    padding: 20px 48px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-logo {
    display: inline-block;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}
.footer-logo:hover {
    opacity: 1;
}
.footer-logo img {
    height: 32px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block;
}
.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
@media (max-width: 991px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}
@media (max-width: 600px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.social-icon-btn:hover {
    background: var(--brand-green);
    color: #0d1b33;
    border-color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 167, 100, 0.3);
}
.footer-copy {
    font-size: 13px;
    color: var(--gray);
}
.footer-col h4 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-col a, .footer-col p {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.footer-col a:hover {
    color: var(--brand-green);
}
.social-icons {
    display: flex;
    gap: 12px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gray);
    transition: all 0.3s ease;
}
.social-icons a:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    background: rgba(14,167,100,0.1);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .nav-inner { padding: 0 24px; }
    .services-marquee-wrapper { grid-template-columns: repeat(2, 1fr); }
    .services-column:nth-child(3) { display: none; }
    .results-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .section-head {
        margin-bottom: 40px;
    }
    .section-head .section-tag {
        /* Let inline margins or default margins apply, overriding the forced order */
    }
    .section-head .section-title {
        margin-bottom: 8px !important;
        line-height: 1.2;
    }
    .section-head .section-desc {
        margin-top: 8px !important;
    }

    #cursor-dot, #cursor-ring { display: none !important; }
    body, a, button, * { cursor: auto !important; }
    
    .footer-qrs { display: none !important; }
    .download-buttons { flex-direction: column; width: 100%; gap: 12px !important; }
    .store-btn { width: 100%; justify-content: center; }
    
    .footer-container { flex-direction: column !important; align-items: stretch !important; gap: 20px !important; }
    .footer-copy { text-align: left !important; width: 100% !important; }
    .marquee-content { 
        animation: scrollMarquee 12s linear infinite; 
        gap: 20px;
        padding: 0;
        padding-right: 20px;
    }
    .desktop-br { display: none; }
    
    #navbar { 
        position: absolute !important; 
        background: transparent !important; 
        box-shadow: none !important; 
        border-bottom: none !important; 
        backdrop-filter: none !important; 
        -webkit-backdrop-filter: none !important;
        padding: 0 24px !important;
    }
    .header-buttons { display: none !important; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-inner { justify-content: space-between; }
    
    .hero-bg-img {
        object-position: 80% 100% !important;
    }
    .hero-headline { font-size: clamp(28px, 4vh + 3vw, 44px); }
    .hero-headline .em-underline { top: auto !important; bottom: 0px !important; height: 3px !important; }
    
    .hero {
        position: relative !important;
        min-height: 100vh !important;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: clamp(68px, 8.5vh, 95px) !important;
        padding-bottom: 30px;
        box-sizing: border-box !important;
        display: flex;
        flex-direction: column;
    }
    .hero-left-gradient {
        background: linear-gradient(180deg, rgba(251,249,246,0.95) 0%, rgba(251,249,246,0) 30%);
    }
    .hero-content {
        margin-left: 0;
        padding: 0 24px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: static !important;
        flex: 1;
        margin-top: 0 !important;
    }
    .hero-headline {
        text-align: center;
        margin-top: clamp(6px, 1.2vh, 16px) !important;
        margin-bottom: clamp(10px, 2vh, 20px) !important;
        line-height: 1.15;
    }
    .hero-sub {
        margin: 0 auto clamp(16px, 4vh, 48px) auto !important;
        font-size: clamp(14px, 1.8vh + 1vw, 17px) !important;
        line-height: 1.55 !important;
        text-align: center;
        max-width: clamp(310px, 85vw, 440px) !important;
    }
    .hero-header-top {
        padding: 24px 0 !important;
    }
    .hero-header-top > div {
        padding: 0 24px !important;
    }
    .hero-logo-container {
        display: flex !important;
        justify-content: center !important;
    }
    .hero-logo-container img {
        margin: 0 !important;
        height: 35px !important;
    }
    .hero-buttons {
        position: relative !important;
        width: 100% !important;
        z-index: 3 !important;
        margin-top: auto !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        display: flex !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }
    .hero-buttons button, .hero-buttons a, .btn-secondary {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    .stats-content { gap: 24px; }
    .stat-divider { display: none; }
    .stat-block { min-width: 120px; }

    .results-grid { grid-template-columns: 1fr; gap: 32px; }
    .services-marquee-wrapper { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-container img { height: 350px; }
    .about-content { text-align: center; }
    .title-accent.left { margin: 0 auto 24px; }
    .about-badges { justify-content: center; }
    
    .process-step { gap: 20px; }
    .step-marker { width: 48px; height: 48px; }
    .process-line { left: 23px; }
    
    footer .container { flex-direction: column-reverse !important; align-items: flex-start !important; gap: 40px; }
    .footer-form, .footer-cta-text { max-width: 100% !important; padding: 0 !important; width: 100%; }
    .footer-cta-text { text-align: center; }
    .footer-form button[type="submit"], .footer-submit-btn { width: 100%; }
    .footer-bottom .container { flex-direction: column; align-items: center !important; text-align: center; gap: 20px; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { margin: 0 auto 16px; }
    .social-icons { justify-content: center; }
    
    .press-marquee-wrapper {
        display: flex;
        flex-direction: column;
        gap: 4px;
        overflow: hidden;
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }
    .press-marquee-row {
        display: flex;
        width: 100%;
    }
    .press-grid {
        display: flex;
        flex-shrink: 0;
        animation: pressMarquee 12s linear infinite;
        gap: 20px;
        margin: 0;
        padding-right: 20px;
        width: max-content;
    }
    .press-marquee-row.marquee-right .press-grid {
        animation-direction: reverse;
    }
    .press-grid.duplicate-on-mobile {
        display: flex;
    }
    .press-item {
        width: auto;
        height: 120px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    .press-item img {
        height: 100%;
        width: auto;
        object-fit: contain;
        mix-blend-mode: multiply;
        clip-path: inset(3px);
    }
    
    .client-logo {
        width: auto;
        height: 60px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    .client-logo img {
        height: 100%;
        width: auto;
        object-fit: contain;
        mix-blend-mode: multiply;
        clip-path: inset(3px);
    }
    .partner-logo-container {
        width: auto;
        height: 20px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .partner-logo-container img {
        height: 100%;
        width: auto;
        object-fit: contain;
    }
    .testimonial-slider { min-height: 380px; }
    .testimonial-slide { width: 90%; height: 100%; }
    .testimonial-card { height: 100%; }
    .testimonial-slide.prev, .testimonial-slide.next { opacity: 0; visibility: hidden; }
    .testimonial-slide.active { transform: translate(-50%, -50%) scale(1); }
}

/* Extra Height Adjustments for Tall Smartphone Screens */
@media (max-width: 768px) and (min-height: 740px) {
    .hero-headline {
        font-size: clamp(34px, 4.5vh + 2vw, 46px) !important;
    }
    .hero-sub {
        font-size: clamp(15px, 2vh + 1vw, 18px) !important;
        max-width: 360px !important;
        margin-bottom: clamp(24px, 5vh, 64px) !important;
    }
}

@media (max-width: 480px) {
    .footer-cta-title { font-size: 32px; letter-spacing: -1px; margin-bottom: 10px; }
    .hero-sub { font-size: 15px; }
    .btn-primary, .btn-outline { font-size: 12px; padding: 14px 28px; }

    /* New hero styles for mobile */
    .hero {
        align-items: flex-start;
        padding-top: 130px; /* Leave space for logo */
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        height: calc(100vh - 130px);
        text-align: center;
        align-items: center;
        position: static; /* Clear GSAP transform context issue */
        transform: none !important;
    }
    .hero-headline {
        text-align: center;
    }
    .hero-sub {
        text-align: center;
    }
    .hero-buttons {
        margin-top: auto;
        padding-bottom: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: static; /* Fix GSAP context */
        bottom: auto;
    }
    .hero-buttons button {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    .hero-logo-container {
        text-align: center;
        margin-left: 0;
    }
    .hero-header-top {
        padding: 40px 0 20px 0 !important;
    }

    .services-marquee-wrapper { grid-template-columns: 1fr; gap: 16px; height: 450px; }
    .services-column:nth-child(2), .services-column:nth-child(3) { display: none; }
    .service-card { padding: 20px 16px; transform: rotate(0deg) !important; }
    .col-up .service-card:hover, .col-down .service-card:hover { transform: translateY(-8px) scale(1.05) rotate(0deg) !important; }
    .service-icon { width: 56px; height: 56px; margin-bottom: 12px; }
    .service-icon img { width: 30px; height: 30px; }
    .service-card h3 { font-size: 16px; }
    .section-title { font-size: 28px; }
    .section-desc { font-size: 15px; }
    .stat-number { font-size: 32px; }
    .testimonial-text { font-size: 16px; }
    .testimonial-slider { min-height: 420px; }
    .testimonial-slide { width: 95%; height: 100%; }
    .testimonial-card { padding: 30px 20px; height: 100%; }
    .marquee-content span { font-size: 50px; }
}

/* === ANIMATIONS === */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes pressMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* === MODAL === */
#enquire-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 100000;
    align-items: center;
    justify-content: center;
}
#enquire-modal.active {
    display: flex;
}
.modal-content {
    background: var(--dark-2);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}
.modal-content input, .modal-content select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid #333;
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 16px;
    background: #111;
    color: #fff;
    outline: none;
}
.modal-content select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
.modal-content select option {
    background: #111;
    color: #fff;
}
.footer-select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid #333;
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 16px;
    background: #111;
    color: #fff;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
.footer-select option {
    background: #111;
    color: #fff;
}

@media (max-width: 768px) {
    .desktop-only-br {
        display: none;
    }
}



/* Refer & Earn Banner */
.refer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffe0f0 0%, #fff0f7 35%, #ffffff 65%, #ffd6e8 100%);
}
.refer-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
    padding: 0;
}
.refer-content {
    flex: 0 0 45%;
    max-width: 45%;
    text-align: left;
}
.refer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e91e8c;
    color: var(--white);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    font-family: var(--font-primary);
}
.refer-content h2 {
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 16px;
    font-family: var(--font-primary);
}
.refer-content h2 span {
    color: #6c3ce9;
}
.refer-content p {
    font-size: 16px;
    color: #7b7b93;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: var(--font-primary);
}
.refer-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 380px;
    position: relative;
    margin-left: -18px; /* Shifts the icons left to align with the text block */
}
.refer-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    flex-shrink: 0;
    z-index: 2;
    font-family: var(--font-primary);
}
.refer-step .step-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: transparent;
}
.refer-step .step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.refer-step h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}
.refer-step span {
    font-size: 12px;
    color: #8e8ea0;
    line-height: 1.4;
}
.step-divider {
    display: block;
    width: 50px;
    min-width: 50px;
    height: 0;
    border-top: 2px dashed #c4b5e3;
    margin-top: 38px; /* Visually middle aligned to the shadow-shifted circles */
    margin-left: -10px; /* Adjusts the gap size before connecting to the visible circles */
    margin-right: -10px;
    z-index: 1;
}
.refer-image {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.refer-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .refer-banner {
        flex-direction: column;
        padding: 0;
    }
    .refer-content {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    .refer-steps {
        justify-content: center;
    }
    .step-divider {
        display: none;
    }
    .refer-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .refer-image img {
        max-width: 360px;
    }
}
@media (max-width: 480px) {
    .refer-section {
        padding: 40px 0;
    }
    font-size: 16px;
    background: #111;
    color: #fff;
    outline: none;
}
.modal-content select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
.modal-content select option {
    background: #111;
    color: #fff;
}
.footer-select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid #333;
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 16px;
    background: #111;
    color: #fff;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
.footer-select option {
    background: #111;
    color: #fff;
}

@media (max-width: 768px) {
    .desktop-only-br {
        display: none;
    }
}



/* Refer & Earn Banner */
.refer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffe0f0 0%, #fff0f7 35%, #ffffff 65%, #ffd6e8 100%);
}
.refer-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
    padding: 0;
}
.refer-content {
    flex: 0 0 45%;
    max-width: 45%;
    text-align: left;
}
.refer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e91e8c;
    color: var(--white);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    font-family: var(--font-primary);
}
.refer-content h2 {
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 16px;
    font-family: var(--font-primary);
}
.refer-content h2 span {
    color: #6c3ce9;
}
.refer-content p {
    font-size: 16px;
    color: #7b7b93;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: var(--font-primary);
}
.refer-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 380px;
    position: relative;
    margin-left: -18px; /* Shifts the icons left to align with the text block */
}
.refer-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    flex-shrink: 0;
    z-index: 2;
    font-family: var(--font-primary);
}
.refer-step .step-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: transparent;
}
.refer-step .step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.refer-step h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}
.refer-step span {
    font-size: 12px;
    color: #8e8ea0;
    line-height: 1.4;
}
.step-divider {
    display: block;
    width: 50px;
    min-width: 50px;
    height: 0;
    border-top: 2px dashed #c4b5e3;
    margin-top: 38px; /* Visually middle aligned to the shadow-shifted circles */
    margin-left: -10px; /* Adjusts the gap size before connecting to the visible circles */
    margin-right: -10px;
    z-index: 1;
}
.refer-image {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.refer-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .refer-banner {
        flex-direction: column;
        padding: 0;
    }
    .refer-content {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    .refer-steps {
        justify-content: center;
    }
    .step-divider {
        display: none;
    }
    .refer-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .refer-image img {
        max-width: 360px;
    }
}
@media (max-width: 480px) {
    .refer-section {
        padding: 40px 0;
    }
    .refer-banner {
        padding: 0;
    }
    .refer-content h2 {
        font-size: 30px;
    }
}

/* === FOOTER BORDER === */
.site-footer {
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--brand-green), var(--brand-blue), var(--brand-pink), var(--logo-blue));
    z-index: 10;
}

/* === CONTACT FORM SECTION === */
.contact-container {
    max-width: 1280px;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.contact-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}
.contact-hero-title span {
    color: var(--brand-green);
}
.contact-hero-desc {
    font-family: var(--font-primary);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 8px;
}
.detail-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.detail-label {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-green);
    display: flex;
    align-items: center;
    gap: 8px;
}
.detail-value {
    font-family: var(--font-primary);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}
.detail-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}
.detail-value a:hover {
    color: var(--brand-green);
}
.contact-card {
    background: #080f1d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 44px 48px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.contact-card h2 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.contact-card-sub {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}
.form-group input,
.form-group textarea {
    width: 100%;
    background: #030812;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(14, 167, 100, 0.2);
}
.contact-submit-btn {
    width: 100%;
    background: #0ea764;
    color: var(--white);
    border: none;
    border-radius: 14px;
    padding: 16px 28px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(14, 167, 100, 0.3);
}
.contact-submit-btn:hover {
    background: #0c9659;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(14, 167, 100, 0.4);
}
.contact-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-hero-desc {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .contact-card {
        padding: 28px 24px;
        border-radius: 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* Preserve the referral layout, with a tighter vertical rhythm. */
.refer-section { padding: 52px 0; }
.refer-image img { clip-path: inset(3px 0 0 0); }
@media (max-width: 480px) { .refer-section { padding: 40px 0; } }

@media (max-width: 768px) {
    .refer-steps {
        margin-left: auto;
        margin-right: auto;
    }

    #contact > .container {
        flex-direction: column !important;
    }

}
