:root {
    --bg-base: #f8fafc;
    --bg-glow: #f1f5f9;
    --accent: #FF6600;
    --accent-hover: #ff8533;
    --text-main: #0f172a;
    --text-muted: #475569;
    --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 100%);
    --glass-border: 1px solid rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: initial;
    /* handled by lenis */
}

body {
    background-color: var(--bg-base);
    background-image: radial-gradient(circle at top right, rgba(255, 102, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(255, 102, 0, 0.05) 0%, transparent 40%);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    letter-spacing: -0.04em;
    font-weight: 900;
    margin-bottom: 1rem;
}

.text-4xl {
    font-size: clamp(2rem, 4vw + 1rem, 3rem);
}

h2.section-title {
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    letter-spacing: -0.03em;
    font-weight: 800;
    margin-bottom: 1rem;
}

p.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin: 0 auto;
}

p.ml-0 {
    margin-left: 0 !important;
}

.max-w-md {
    max-width: 48rem;
    margin-inline: auto;
}

.max-w-lg {
    max-width: 64rem;
    margin-inline: auto;
}

.max-w-xl {
    max-width: 72rem;
    margin-inline: auto;
}

.mx-auto {
    margin-inline: auto;
}

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

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

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

.text-accent {
    color: var(--accent);
}

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

.text-main {
    color: var(--text-main);
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.text-lg {
    font-size: 1.125rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-tight {
    letter-spacing: -0.05em;
}

.uppercase {
    text-transform: uppercase;
}

.underline {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.decoration-orange-500\/30 {
    text-decoration-color: rgba(255, 102, 0, 0.3);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 1rem;
}

.w-full {
    width: 100%;
}

.w-32 {
    width: 8rem;
}

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

.mt-6 {
    margin-top: 1.5rem;
}

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

.mt-12 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.pt-16 {
    padding-top: 4rem;
}

.pb-24 {
    padding-bottom: 6rem;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.bottom-4 {
    bottom: 1rem;
}

.left-\[-20px\] {
    left: -20px;
}

.px-6 {
    padding-inline: 1.5rem;
}

.py-4 {
    padding-block: 1rem;
}

.py-8 {
    padding-block: 2rem;
}

.hidden {
    display: none;
}

.md\:block {
    display: none;
}

.flex {
    display: flex;
}

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

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.gap-4 {
    gap: 1rem;
}

.rounded {
    border-radius: 8px;
}

.opacity-80 {
    opacity: 0.8;
}

.cursor-pointer {
    cursor: pointer;
}

.transition-colors {
    transition: color 0.3s ease;
}

.hover\:text-accent:hover {
    color: var(--accent);
}

@media(min-width: 768px) {
    .md\:block {
        display: block;
    }

    .md\:mb-0 {
        margin-bottom: 0;
    }

    .md\:mt-0 {
        margin-top: 0;
    }

    .md\:flex-row {
        flex-direction: row;
    }
}

@media(min-width: 1024px) {
    .lg\:text-5xl {
        font-size: 3rem;
    }
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 12px;
}

.glass-section {
    padding-block: 6rem;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn:active {
    transform: scale(0.95) !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #cc5200 100%);
    color: #fff;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3), 0 0 24px -4px rgba(255, 102, 0, 0.4);
}

.btn-primary:hover {
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4), 0 0 32px 0px rgba(255, 102, 0, 0.6);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    border: var(--glass-border);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
}

.btn-primary-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-primary-outline:hover {
    background: rgba(255, 102, 0, 0.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s ease;
    padding-block: 1rem;
}

.navbar.scrolled {
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: var(--glass-border);
    padding-block: 0.75rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    height: 40px;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transform: scale(1.05);
    /* Will be animated */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-base) 0%, rgba(248, 250, 252, 0.6) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media(min-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr 450px;
    }
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.05);
    border: var(--glass-border);
    border-radius: 99px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.form-wrapper {
    padding: 1rem;
    height: auto;
    overflow: hidden;
}

.final-wrapper {
    height: auto;
}

/* Marquee */
.clients-marquee-section {
    padding-block: 2rem;
    border-top: var(--glass-border);
    border-bottom: var(--glass-border);
    background: rgba(0, 0, 0, 0.02);
    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);
}

.clients-swiper .swiper-slide {
    width: auto;
    opacity: 0.4;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-swiper .swiper-slide:hover {
    opacity: 0.8;
}

.clients-swiper img {
    height: 40px;
    filter: grayscale(100%);
}

/* Products */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    overflow: hidden;
    position: relative;
    /* Spotlight Setup */
    --mouse-x: -100px;
    --mouse-y: -100px;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(255, 102, 0, 0.06), transparent 40%);
    z-index: 10;
    transition: opacity 0.3s;
    opacity: 0;
}

.product-card:hover::before {
    opacity: 1;
}

.product-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-content {
    padding: 2rem;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-specs {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-specs i {
    color: var(--accent);
}

/* Benefits */
.half-col {
    flex: 1;
}

@media(min-width: 992px) {
    .flex-row {
        display: flex;
        gap: 4rem;
    }
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 102, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.floating-image-wrapper {
    position: relative;
    display: inline-block;
}

.floating-image-wrapper img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-badge {
    padding: 1.5rem;
    text-align: left;
    min-width: 200px;
    animation: float 6s ease-in-out infinite 1s;
    /* Delayed execution */
}

/* Testimonials */
.testimonials-section {
    position: relative;
}

.testimonial-card {
    padding: 3rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #FFD700;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.quote {
    font-style: italic;
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.swiper-pagination {
    position: relative;
    margin-top: 2rem;
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
}

.testimonials-swiper {
    padding-bottom: 3rem;
}

/* FAQ */
.faq-section {
    position: relative;
}

.accordion-header {
    background: none;
    border: none;
}

.accordion-body {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
}

/* Footer */
.glass-footer {
    border-top: var(--glass-border);
    background: rgba(248, 250, 252, 0.5);
    backdrop-filter: blur(16px);
}