/* ==========================================================================
           COLOR THEME & DESIGN TOKENS
           ========================================================================== */
:root {
    --bg-primary: #020B18;
    --bg-secondary: #061326;
    --bg-card: rgba(6, 30, 70, 0.55);

    --accent-orange: #FF6B00;
    --accent-yellow: #FFD000;
    --accent-blue: #1A6EFF;
    --accent-blue-light: #4D9FFF;

    --accent-gradient-1: linear-gradient(135deg, #FF6B00, #FFD000);
    --accent-gradient-2: linear-gradient(135deg, #1A6EFF, #FF6B00);
    --accent-gradient-3: linear-gradient(135deg, #FFD000, #1A6EFF);

    --text-primary: #F0F6FF;
    --text-muted: #6B8CAE;
    --border-subtle: rgba(255, 107, 0, 0.12);
    --border-blue: rgba(26, 110, 255, 0.2);

    --glass-bg: rgba(6, 25, 60, 0.6);
    --glass-blur: blur(24px) saturate(180%);

    --shadow-orange: 0 0 50px rgba(255, 107, 0, 0.2);
    --shadow-blue: 0 0 50px rgba(26, 110, 255, 0.25);
    --shadow-yellow: 0 0 30px rgba(255, 208, 0, 0.15);

    --radius-sm: 10px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

/* ==========================================================================
           RESET & GLOBAL STYLES
           ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
    /* Custom cursor */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: none;
    border: none;
    outline: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.gradient-text {
    background: var(--accent-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-blue {
    background: var(--accent-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: 120px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 2px;
    box-shadow: var(--shadow-blue);
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-gradient-1);
    color: #fff;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(255, 107, 0, 0.4);
    background: linear-gradient(135deg, #FFD000, #FF6B00);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-blue);
    backdrop-filter: var(--glass-blur);
}

.btn-ghost:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-blue);
    transform: translateY(-3px);
    background: rgba(26, 110, 255, 0.1);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-yellow {
    background: rgba(255, 208, 0, 0.1);
    color: var(--accent-yellow);
    border: 1px solid rgba(255, 208, 0, 0.3);
    box-shadow: var(--shadow-yellow);
}

.badge-outline-orange {
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    background: transparent;
}

/* Custom Cursor */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--accent-orange);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
}

#cursor.hover {
    background: var(--accent-yellow);
    box-shadow: 0 0 20px var(--accent-yellow);
}

#cursor-ring.hover {
    width: 60px;
    height: 60px;
    background: rgba(26, 110, 255, 0.1);
    border-color: var(--accent-orange);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
           1. NAVBAR
           ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-gradient-1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Mobile Nav */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(6, 19, 38, 0.95);
        backdrop-filter: var(--glass-blur);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        border-left: 1px solid var(--border-blue);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ==========================================================================
           2. HERO SECTION
           ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin: 24px 0;
    line-height: 1.1;
}

.hero-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: textReveal 0.8s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.hero-mockup {
    perspective: 1500px;
    width: 400px;
    height: 700px;
    position: relative;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.5));
    border: 2px solid var(--border-blue);
    border-radius: 48px;
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-blue), -40px 0 100px rgba(255, 107, 0, 0.15);
    position: relative;
    transform-style: preserve-3d;
    animation: floatPhone 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.phone-screen {
    width: 92%;
    height: 96%;
    background: var(--bg-primary);
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(26, 110, 255, 0.2);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: black;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 2;
}

.phone-ui {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(26, 110, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 110, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-flash-screen {
    text-align: center;
    z-index: 5;
    animation: flashEntrance 2s ease-out forwards;
}

.flash-logo {
    width: 140px;
    height: 140px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.6));
}

.flash-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.flash-tagline {
    font-size: 0.8rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 5px;
    font-weight: 600;
}

@keyframes flashEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.phone-ui::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-primary) 100%);
}

.phone-glow-left {
    position: absolute;
    left: -50px;
    top: 20%;
    width: 100px;
    height: 300px;
    background: var(--accent-orange);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}

.phone-glow-right {
    position: absolute;
    right: -50px;
    bottom: 20%;
    width: 100px;
    height: 300px;
    background: var(--accent-blue);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0) rotateX(5deg) rotateY(-15deg);
    }

    50% {
        transform: translateY(-30px) rotateX(10deg) rotateY(-5deg);
    }
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 120px;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-mockup {
        width: 320px;
        height: 560px;
        margin-top: 60px;
        order: 2;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }

    .flash-logo {
        width: 100px;
        height: 100px;
    }

    .flash-text {
        font-size: 1.4rem;
    }

    .flash-tagline {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
    }
}

/* ==========================================================================
           3. STATS BAR
           ========================================================================== */
.stats-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-blue);
    border-bottom: 1px solid var(--border-blue);
    padding: 60px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border-subtle), transparent);
}

.stat-number {
    font-size: 3.5rem;
    margin-bottom: 8px;
    background: var(--accent-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 48px;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none;
    }
}

/* ==========================================================================
           4. PRODUCTS SHOWCASE
           ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: var(--glass-blur);
    position: relative;
    transform-style: preserve-3d;
    transition: border-color 0.4s;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-orange);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: -1;
}

.product-card:hover {
    border-color: var(--border-subtle);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-orange);
    transform: translateZ(30px);
}

.product-icon.blue {
    background: rgba(26, 110, 255, 0.1);
    color: var(--accent-blue);
}

.product-icon.yellow {
    background: rgba(255, 208, 0, 0.1);
    color: var(--accent-yellow);
}

.product-card h3 {
    font-size: 1.75rem;
    transform: translateZ(20px);
}

.product-card p {
    transform: translateZ(15px);
}

.product-tags {
    display: flex;
    gap: 12px;
    margin: 24px 0;
    transform: translateZ(10px);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s;
    transform: translateZ(20px);
}

.product-card:hover .product-link {
    color: var(--accent-orange);
}

.product-link svg {
    transition: transform 0.3s;
}

.product-card:hover .product-link svg {
    transform: translateX(5px);
}

/* ==========================================================================
           5. FEATURES BENTO GRID
           ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 24px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-yellow);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon.orange {
    color: var(--accent-orange);
    background: rgba(255, 107, 0, 0.1);
}

.service-icon.blue {
    color: var(--accent-blue-light);
    background: rgba(26, 110, 255, 0.1);
}

.bento-cell {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: var(--glass-blur);
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.bento-cell:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-orange);
    border-color: var(--accent-orange);
}

.bento-large {
    grid-column: span 2;
    background: rgba(26, 110, 255, 0.05);
    border-color: var(--border-blue);
}

.bento-large:hover {
    box-shadow: var(--shadow-blue);
    border-color: var(--accent-blue);
}

.bento-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.bento-large .bento-icon {
    color: var(--accent-blue);
    filter: drop-shadow(0 0 10px rgba(26, 110, 255, 0.5));
}

.bento-cell:not(.bento-large) .bento-icon {
    color: var(--accent-yellow);
}

.bento-cell h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.bento-large h3 {
    font-size: 2rem;
}

.bento-cell p {
    margin: 0;
}

@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: span 1;
    }
}

/* ==========================================================================
           6. HOW IT WORKS TIMELINE
           ========================================================================== */
.timeline-section {
    background: radial-gradient(circle at center, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 80px auto 0;
    padding: 40px 0;
}

.timeline-line-container {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-progress {
    width: 100%;
    background: var(--accent-gradient-2);
    height: 0%;
    border-radius: 2px;
    box-shadow: var(--shadow-blue);
    transition: height 0.1s linear;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    width: 85%;
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-blue);
    position: relative;
    transition: transform 0.4s, box-shadow 0.4s;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-orange);
    border-color: var(--accent-orange);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 32px;
    transform: translate(-50%, 0);
    width: 48px;
    height: 48px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Syne';
    z-index: 2;
    box-shadow: 0 0 20px rgba(26, 110, 255, 0.3);
    transition: background 0.4s, border-color 0.4s;
}

.timeline-item.active .timeline-dot {
    background: var(--accent-gradient-1);
    border-color: transparent;
    box-shadow: var(--shadow-orange);
}

@media (max-width: 768px) {
    .timeline-line-container {
        left: 30px;
    }

    .timeline-item {
        padding-right: 0;
        padding-left: 80px !important;
        justify-content: flex-start !important;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-dot {
        left: 30px;
    }
}

/* ==========================================================================
           7. TESTIMONIALS
           ========================================================================== */
.testimonials {
    overflow: hidden;
    padding: 80px 0;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 32px;
    padding: 20px 0;
    animation: scroll 40s linear infinite;
}

.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 16px));
    }
}

.testimonial-card {
    width: 400px;
    flex-shrink: 0;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    backdrop-filter: var(--glass-blur);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-orange);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--accent-orange);
    opacity: 0.2;
    width: 48px;
    height: 48px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ccc;
    object-fit: cover;
    border: 2px solid var(--accent-blue);
}

.author-info h4 {
    margin: 0;
    color: var(--accent-yellow);
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 320px;
        padding: 32px;
    }
}

/* ==========================================================================
   FIXED WIDGETS
   ========================================================================== */
.fixed-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.widget-btn {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--border-blue);
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: var(--glass-blur);
    cursor: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.widget-btn:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.whatsapp-btn:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

#back-to-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .fixed-widgets {
        bottom: 20px;
        right: 20px;
    }

    .widget-btn {
        width: 45px;
        height: 45px;
    }
}

/* ==========================================================================
           8. PRICING
   ========================================================================== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    gap: 16px;
    font-weight: 600;
}

.pricing-toggle span {
    color: var(--text-muted);
    transition: color 0.3s;
}

.pricing-toggle span.active {
    color: var(--text-primary);
}

.toggle-switch {
    width: 64px;
    height: 32px;
    background: rgba(26, 110, 255, 0.2);
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border-blue);
    transition: background 0.3s;
}

.toggle-thumb {
    width: 24px;
    height: 24px;
    background: var(--accent-orange);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.26, 1.55), background 0.3s;
    box-shadow: 0 0 10px var(--accent-orange);
}

.toggle-switch.annual .toggle-thumb {
    transform: translateX(30px);
    background: var(--accent-yellow);
    box-shadow: 0 0 10px var(--accent-yellow);
}

.pricing-grid {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    flex: 1;
    max-width: 380px;
    backdrop-filter: var(--glass-blur);
    transition: transform 0.4s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        var(--accent-gradient-1) border-box;
    border: 2px solid transparent;
    transform: scale(1.05);
    box-shadow: var(--shadow-orange);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: var(--bg-primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-family: 'Syne';
    box-shadow: var(--shadow-yellow);
    letter-spacing: 1px;
}

.price-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-blue);
}

.price-amount {
    font-size: 3.5rem;
    margin: 16px 0 0 0;
    line-height: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.price-features svg {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 32px;
}

@media (max-width: 991px) {
    .pricing-grid {
        flex-direction: column;
    }

    .pricing-card {
        max-width: 100%;
        width: 100%;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
           9. ABOUT / TEAM
           ========================================================================== */
.about-section {
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    position: relative;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 11, 24, 0.85);
    backdrop-filter: blur(8px);
}

.about-stripe {
    position: absolute;
    top: 0;
    right: 10%;
    width: 200px;
    height: 100%;
    background: var(--accent-gradient-1);
    opacity: 0.05;
    transform: skewX(-20deg);
}

.about-content {
    position: relative;
    z-index: 1;
}

.mission-quote {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: 'Syne';
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    line-height: 1.3;
    color: var(--text-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: var(--glass-blur);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-blue);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        var(--accent-gradient-2) border-box;
}

.team-card h4 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
}

.team-card p {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    transition: bottom 0.3s;
}

.team-card:hover .team-social {
    bottom: 24px;
}

.team-social a {
    color: var(--accent-yellow);
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
           10. BLOG PREVIEW
           ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.blog-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform 0.4s, box-shadow 0.4s;
    transform-style: preserve-3d;
}

.blog-card:hover {
    box-shadow: var(--shadow-blue);
    border-color: var(--accent-blue);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    transform: translateZ(10px);
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    line-height: 1.4;
    transform: translateZ(20px);
}

.blog-link {
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
    transform: translateZ(15px);
}

.blog-card:hover .blog-link {
    color: var(--accent-yellow);
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
           11. CTA BANNER
           ========================================================================== */
.cta-banner {
    padding: 120px 24px;
    background: linear-gradient(45deg, #020B18, #FF6B00, #FFD000, #1A6EFF, #020B18);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    text-align: center;
    position: relative;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-content {
    background: rgba(2, 11, 24, 0.6);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: var(--radius-xl);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 32px;
}

.cta-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.cta-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-blue);
    background: var(--bg-card);
    color: white;
    font-family: inherit;
    outline: none;
}

.cta-input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

.btn-white {
    background: #fff;
    color: var(--accent-orange);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: var(--bg-primary);
    color: #fff;
}

@media (max-width: 576px) {
    .cta-form {
        flex-direction: column;
    }

    .cta-content {
        padding: 40px 24px;
    }
}

/* ==========================================================================
           12. FOOTER
           ========================================================================== */
.footer {
    background: var(--bg-primary);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.social-link:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.footer-heading {
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ========================================================================== */

/* ---- Utility ---- */
.mb-5 {
    margin-bottom: 3rem;
}

/* ---- Global Section Padding ---- */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .container {
        padding: 0 12px;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 48px 0;
    }

    .section-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }
}

/* ---- Navbar ---- */
@media (max-width: 480px) {
    .navbar {
        padding: 12px 0;
    }

    .logo {
        gap: 8px;
    }
}

/* ---- Hero Section ---- */
@media (max-width: 768px) {
    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        margin: 16px 0;
    }

    .hero-subtext {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero-ctas {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 48px;
    }

    .hero-title {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }

    .hero-subtext {
        font-size: 0.95rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ---- Stats Bar ---- */
@media (max-width: 768px) {
    .stats-bar {
        padding: 48px 0;
    }

    .stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        padding: 40px 0;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* ---- Products Grid ---- */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .product-card {
        padding: 28px;
    }

    .product-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .product-card {
        padding: 24px;
    }

    .product-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }
}

/* ---- Bento Grid ---- */
@media (max-width: 768px) {
    .bento-grid {
        gap: 16px;
        margin-top: 40px;
    }

    .bento-cell {
        padding: 28px;
    }

    .bento-large h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .bento-cell {
        padding: 24px 20px;
    }

    .bento-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 16px;
    }

    .bento-cell h3 {
        font-size: 1.2rem;
    }

    .bento-large h3 {
        font-size: 1.3rem;
    }
}

/* ---- Timeline ---- */
@media (max-width: 480px) {
    .timeline {
        margin-top: 48px;
        padding: 20px 0;
    }

    .timeline-item {
        padding-left: 60px !important;
        margin-bottom: 40px;
    }

    .timeline-line-container {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
        top: 24px;
    }

    .timeline-content {
        padding: 24px 20px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }
}

/* ---- Testimonials ---- */
@media (max-width: 480px) {
    .testimonial-card {
        width: 280px;
        padding: 24px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* ---- Pricing ---- */
@media (max-width: 768px) {
    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        padding: 36px 24px;
    }

    .price-amount {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 28px 20px;
    }

    .price-amount {
        font-size: 2.4rem;
    }

    .pricing-toggle {
        gap: 12px;
        margin: 28px 0;
        font-size: 0.9rem;
    }

    .popular-badge {
        font-size: 0.8rem;
        padding: 4px 14px;
    }
}

/* ---- About / Team ---- */
@media (max-width: 768px) {
    .mission-quote {
        font-size: clamp(1.4rem, 5vw, 2rem);
        margin-bottom: 48px;
        padding: 0 8px;
    }

    .team-card {
        padding: 24px 16px;
    }

    .team-avatar {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .mission-quote {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
        margin-bottom: 36px;
    }

    .team-card h4 {
        font-size: 1rem;
    }
}

/* ---- Blog Grid ---- */
@media (max-width: 768px) {
    .blog-grid {
        gap: 20px;
        margin-top: 40px;
    }

    .blog-card {
        padding: 24px;
    }

    .blog-card h3 {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
}

/* ---- CTA Banner ---- */
@media (max-width: 768px) {
    .cta-banner {
        padding: 80px 16px;
    }

    .cta-content {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 60px 12px;
    }

    .cta-content {
        padding: 32px 16px;
        border-radius: var(--radius-lg);
    }

    .cta-content h2 {
        font-size: clamp(1.4rem, 7vw, 2rem);
        margin-bottom: 16px;
    }
}

/* ---- Footer ---- */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 32px;
    }

    .footer-grid {
        gap: 28px;
        margin-bottom: 40px;
    }

    .footer-heading {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 48px 0 24px;
    }

    .footer-grid {
        gap: 24px;
        margin-bottom: 32px;
    }

    .social-links {
        gap: 12px;
    }
}

/* ---- Custom Cursor: hide on touch devices ---- */
@media (hover: none) and (pointer: coarse) {

    #cursor,
    #cursor-ring {
        display: none;
    }

    body,
    a,
    button {
        cursor: auto;
    }
}

/* ---- Prevent horizontal overflow ---- */
@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

/* ==========================================================================
   LOGO â€” Udaya Groups Of BRANDING
   ========================================================================== */
.logo {
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.logo-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--accent-orange);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 0.95rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }
}

/* ---- Logo image sizing ---- */
.logo-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 0;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 10px rgba(255, 107, 0, 0.35));
}

@media (max-width: 480px) {
    .logo-img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 375px) {
    .logo-name {
        font-size: 0.9rem;
    }
    .logo-tagline {
        font-size: 0.5rem;
    }
    .logo-img {
        width: 40px;
        height: 40px;
    }
}

/* Utility Classes for Inline Style Migration */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}

.gap-50 {
    gap: 50px;
}

.gap-60 {
    gap: 60px;
}

.min-w-300 {
    min-width: 300px;
}

.min-w-320 {
    min-width: 320px;
}

.flex-1 {
    flex: 1;
}

.flex-1-2 {
    flex: 1.2;
}

.flex-0-8 {
    flex: 0.8;
}

.hero-glow-orange {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-glow-blue {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 110, 255, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-glow-subtle {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-partner-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.hero-partner-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-orange);
}

.hero-glass-stats {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(2, 11, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 25px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-image-container {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    width: 100%;
    height: auto;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-mask {
    position: absolute;
    inset: 0;
    background: var(--accent-orange);
    opacity: 0.05;
    border-radius: 40px;
    transform: rotate(-3deg);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.hero-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.text-gradient-bold {
    font-weight: 800;
}

.section-bg-subtle {
    background: rgba(2, 11, 24, 0.3);
}

.section-bg-dark {
    background: rgba(2, 11, 24, 0.5);
}

.studio-heading {
    font-size: 2rem;
    color: var(--accent-blue-light);
}

.studio-text {
    max-width: 600px;
    margin: 15px auto 0;
    opacity: 0.7;
}

/* Products Grid System */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   LEGAL PAGES STYLES
   ========================================================================== */
.legal-hero {
    padding: 180px 0 60px;
    background: radial-gradient(circle at 10% 20%, rgba(255, 107, 0, 0.03) 0%, transparent 50%);
}

.legal-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.legal-sidebar {
    position: sticky;
    top: 120px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legal-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    padding-left: 15px;
    border-left: 2px solid transparent;
}

.legal-nav-link:hover,
.legal-nav-link.active {
    opacity: 1;
    color: var(--accent-orange);
    border-left-color: var(--accent-orange);
}

.legal-content-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px;
    backdrop-filter: blur(20px);
}

.legal-content-card h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.legal-content-card p,
.legal-content-card li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    opacity: 0.8;
    margin-bottom: 20px;
}

.legal-content-card ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.legal-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.last-updated-badge {
    padding: 6px 16px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 991px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .legal-content-card {
        padding: 40px 30px;
    }
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent-orange);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-icon.blue {
    background: rgba(26, 110, 255, 0.1);
    color: #1a6eff;
}

.product-icon.yellow {
    background: rgba(255, 184, 0, 0.1);
    color: #ffb800;
}

.product-tags {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Hero Section Specifics */
.hero-section-alt {
    padding-top: 160px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(2, 11, 24, 1) 0%, rgba(10, 30, 60, 1) 100%);
}

.hero-section-products {
    padding-top: 160px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(2, 11, 24, 1) 0%, rgba(10, 20, 40, 1) 100%);
}

.hero-section-contact {
    padding-top: 180px;
    background: linear-gradient(135deg, rgba(2, 11, 24, 1) 0%, rgba(10, 20, 40, 1) 100%);
    overflow: hidden;
    position: relative;
}

/* Contact Page Specifics */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form-container {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-blue);
    backdrop-filter: var(--glass-blur);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    background: rgba(2, 11, 24, 0.5);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-sm);
    color: white;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-orange);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Response Time Badge */
.response-badge {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

/* Global Mobile Overrides */
@media (max-width: 991px) {

    .contact-grid,
    .product-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0 !important;
    }

    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .hero-section,
    .hero-section-alt,
    .hero-section-products,
    .hero-section-contact {
        padding-top: 100px !important;
        min-height: auto !important;
        text-align: center;
    }

    .flex-row {
        justify-content: center;
    }

    .hero-stat-item {
        flex: 1;
    }

    .hero-subtext {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-image-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        padding: 0 !important;
    }

    .contact-form-container {
        padding: 20px !important;
        margin: 0 !important;
    }

    .contact-info-item {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .info-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    p,
    h4,
    h2 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
}

/* ==========================================================================
   PROJECT: DRINGO MOBILE APP
   ========================================================================== */
.project-hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(26, 110, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
}

.project-meta {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-blue);
}

.project-meta.centered {
    justify-content: center;
    border-top: none;
    margin-top: 20px;
}

.meta-item h5 {
    color: var(--accent-orange);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.meta-item p {
    color: var(--text-primary);
    font-weight: 500;
}

.mockup-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.mockup-card {
    background: var(--bg-card);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.mockup-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-orange);
}

.mockup-card img {
    width: 100%;
    height: auto;
    display: block;
}

.workflow-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-orange);
}

.step-content h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.tech-pill {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(26, 110, 255, 0.1);
    border: 1px solid var(--border-blue);
    border-radius: 30px;
    margin: 5px;
    font-size: 0.9rem;
    color: var(--accent-blue-light);
}

/* Showcase Container */
.showcase-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    backdrop-filter: blur(10px);
}

.showcase-container img {
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow-blue);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-container:hover img {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(26, 110, 255, 0.3);
}

/* Utility Extensions */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-1100 {
    max-width: 1100px;
}

.max-w-1200 {
    max-width: 1200px;
}

.section-bg-secondary {
    background: var(--bg-secondary);
}

.cta-text-muted {
    color: rgba(255, 255, 255, 0.8);
}

.btn-nav-fix {
    padding: 10px 24px !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .project-hero {
        padding: 140px 0 60px;
        text-align: center;
    }

    .project-meta {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .mockup-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .workflow-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .meta-item {
        flex: 1 1 120px;
        text-align: center;
        padding: 0 10px;
    }

    .hero-subtext.mx-auto {
        margin: 0 auto 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .project-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .showcase-container {
        padding: 10px;
        border-radius: 24px;
    }

    .showcase-container img {
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .mockup-gallery {
        grid-template-columns: 1fr;
    }

    .project-meta {
        grid-template-columns: 1fr;
    }

    .meta-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 15px;
        width: 100%;
    }

    .meta-item:last-child {
        border-bottom: none;
    }

    .project-hero {
        padding: 120px 0 40px;
    }
}

/* Hover Image Reveal Effect */
.product-card.hover-reveal {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    pointer-events: none;
}

.hover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transform: translateY(20px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card.hover-reveal:hover .hover-image {
    opacity: 1;
    visibility: visible;
}

.product-card.hover-reveal:hover .hover-image img {
    transform: translateY(0) scale(1);
}

.product-card.hover-reveal:hover h3,
.product-card.hover-reveal:hover p,
.product-card.hover-reveal:hover .product-icon,
.product-card.hover-reveal:hover .product-tags,
.product-card.hover-reveal:hover .product-link {
    opacity: 0.1;
    filter: blur(2px);
    transition: all 0.3s ease;
}