:root {
    --bg-color: #FFFFFF;
    --text-primary: #111111;
    --text-secondary: #666666;
    --accent: #000000;
    --border-radius: 100px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --top-offset: 120px;
    /* adjusted for section padding */
    --card-spacing: 65px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

::selection {
    background-color: #D1F736;
    color: #0F0F0F;
    /* Dark color for readability */
}

::-moz-selection {
    background-color: #D1F736;
    color: #0F0F0F;
    /* For Firefox support */
}

/* Background Effects */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.light-beam {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 70%;
    height: 140%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 50%);
    transform: rotate(35deg);
    filter: blur(80px);
}

/* Navbar (Logo + Let's Talk — not fixed) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Fixed Navigation Pill */
.fixed-nav-pill {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    background-color: #000000;
    border-radius: 10px;
    padding: 4px;
    gap: 2px;
    position: relative;
}

.nav-cursor {
    position: absolute;
    background-color: #ffffff;
    border-radius: 6px;
    top: 4px;
    height: calc(100% - 8px);
    z-index: 1;
    transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
}

.nav-links a {
    position: relative;
    z-index: 2;
    text-decoration: none;
    color: #ffffff;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    mix-blend-mode: difference;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
    opacity: 0.7;
    transform: scale(0.98);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Anti-Metal Interactive Button */
.anti-metal-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    height: 44px;
    min-width: 185px;
    padding-right: 18px;
    padding-left: 50px;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    box-sizing: border-box;
}

.anti-metal-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.anti-metal-btn:active {
    transform: scale(0.98);
}

.anti-metal-btn .btn-text {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #ffffff;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

.anti-metal-btn .btn-slider {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: 36px;
    border-radius: 6px;
    background: linear-gradient(180deg, #d6f54a 0%, #c5ea2c 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -2px 4px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding-left: 12px;
    padding-right: 10px;
    overflow: hidden;
    z-index: 10;
    transition: width 0.22s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
    box-sizing: border-box;
}

.anti-metal-btn:hover .btn-slider {
    width: calc(100% - 8px);
}

.double-chevron {
    flex-shrink: 0;
    overflow: visible;
}

@keyframes bd-dot-wave {

    0%,
    70%,
    100% {
        opacity: 0.25;
        transform: scale(0.85);
    }

    35% {
        opacity: 1;
        transform: scale(1);
    }
}

.bd-dot {
    transform-box: fill-box;
    transform-origin: center;
    animation: bd-dot-wave 1.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .bd-dot {
        animation: none;
        opacity: 1;
    }
}


/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 24px 120px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #00c853;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(0, 200, 83, 0.2);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6.5rem);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 48px;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 8px;
}

.inline-video {
    display: inline-flex;
    width: 180px;
    height: 90px;
    border-radius: 50px;
    overflow: hidden;
    vertical-align: middle;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    margin: 0 8px;
    transform: translateY(4px);
}

@media (max-width: 768px) {
    .inline-video {
        width: 120px;
        height: 60px;
        border-radius: 30px;
        margin: 0 4px;
        transform: translateY(2px);
    }
}

.inline-video iframe,
.inline-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    /* Disable interaction on inline small videos */
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 80px;
}

.trusted-by {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    margin-left: -12px;
    object-fit: cover;
}

.avatars img:first-child {
    margin-left: 0;
}

.trusted-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Main Video */
.main-video-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    background-color: #000;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Animation Utilities (Initial states for GSAP) */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.fade-scale {
    opacity: 0;
    transform: scale(0.8) translateY(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    .navbar {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 16px 80px;
    }

    .fixed-nav-pill {
        display: none;
    }

    .line {
        gap: 8px;
    }
}


/* Watch Video Button */
.watch-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 115px;
    height: 115px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.watch-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.watch-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.9);
}

.text-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
}

.text-circle text {
    font-family: var(--font-family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    fill: #4b5563;
    /* Dark gray */
}

.play-icon-container {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.35);
    /* Translucent background */
    backdrop-filter: blur(12px);
    /* Blur effect */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.play-icon {
    width: 36px;
    height: 36px;
    margin-left: 0;
    margin-top: 3px;
    /* visually center the downward triangle */
    filter: drop-shadow(0px 6px 6px rgba(106, 0, 255, 0.35));
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* About Section */
.about-section {
    padding: 120px 0 20px;
    max-width: 100%;
    margin: 0 auto;
}

.about-container {
    max-width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.about-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    max-width: 900px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.about-card {
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.about-card.text-card {
    background-color: #C6C2FF;
    justify-content: flex-end;
}

.scattered-words {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.scattered-words span {
    position: absolute;
    color: var(--text-secondary);
    opacity: 0.4;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-card.solid-card {
    background-color: #d1f736;
    /* vibrant lime green */
    justify-content: space-between;
}

.about-card.image-card {
    justify-content: space-between;
}

.about-card.image-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card.image-card:hover .card-bg {
    transform: scale(1.03);
}

.about-card.image-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.stat-group {
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 8px;
}

.stat-group.top-align .stat-label {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.stat-number {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
}

.stat-number.light {
    color: #ffffff;
}

.stat-desc {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text-primary);
    font-weight: 500;
}

.stat-desc.light {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .about-header {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .section-label {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .about-title {
        margin-left: auto;
        max-width: 800px;
        /* Optional: limit width so it doesn't get too long */
    }
}

@media (max-width: 1024px) {
    .about-grid {
        overflow-x: auto;
        padding-bottom: 20px;
        /* Space for scrollbar */
    }

    .about-card {
        min-width: 280px;
        /* Prevent cards from getting too squished */
        min-height: 350px;
    }
}


/* Scrolling Marquee Section */
.marquee-container {
    width: 100%;
    background-color: #111111;
    color: #ffffff;
    overflow: hidden;
    padding: 16px 0;
    display: flex;
    white-space: nowrap;
    position: relative;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
}

.marquee-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding-right: 40px;
    /* Space before it repeats */
    font-family: 'Inter', monospace;
    text-transform: uppercase;
}

@keyframes marquee {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}


/* Dual Logo Marquee Section */
.logo-marquee-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    margin: 0 0 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.logo-marquee-banner {
    width: 150%;
    left: -25%;
    padding: 28px 0;
    display: flex;
    overflow: hidden;
    position: absolute;
}

.green-banner {
    background-color: #89F336;
    z-index: 2;
    top: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.green-banner .logo-item {
    color: #000000;
}

.green-banner .logo-item img {
    filter: brightness(0);
    /* Black logos */
}

.black-banner {
    background-color: #111111;
    z-index: 1;
    top: 60px;
    transform: rotate(-3.5deg);
}

.logo-marquee-track {
    display: flex;
    white-space: nowrap;
}

.track-left {
    animation: scroll-left 30s linear infinite;
}

.track-right {
    animation: scroll-right 30s linear infinite;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-right: 80px;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.logo-item img {
    height: 36px;
    filter: brightness(0) invert(1);
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}


/* Text Reveal Animation */
.line-mask {
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}

.line-text {
    display: inline-block;
    transform: translateY(100%);
    /* Hidden initially */
}

/* Services Section */
.services-section {
    padding: 120px 0;
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--bg-color);
}

.services-container {
    max-width: 1400px;
    padding: 0 40px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 60px;
}

.services-header .section-label {
    margin-left: -14px;
}

.services-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background-color: #f5f5f5;
    /* Light gray matching Jitter ref */
    border-radius: 8px;
    padding: 40px 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-media {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Aspect ratio to match the reference style (approx 4:3 or 16:9) */
    aspect-ratio: 4 / 3;
    background-color: transparent;
}

.service-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover .service-poster {
    opacity: 0;
}

.service-media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
}

.service-name span {
    background-color: #D1F736;
    padding: 2px 6px;
    border-radius: 4px;
}

.service-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 24px 24px 20px;
    }
}

/* Proven Success Section */
.proven-success-section {
    padding: 120px 0 0 0;
    margin: 0 24px 24px;
    background-color: transparent;
    border-radius: 64px;
}

.proven-success-container {
    max-width: 1300px;
    padding: 0 40px;
    margin: 0 auto;
}

.proven-success-header {
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    border: 1px solid #00c853;
    color: #00c853;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.proven-success-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #111111;
}

.proven-success-title em {
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 500;
}

/* Stacking Cards */
.cards-section {
    padding-bottom: 20vh;
}

.card {
    position: sticky;
    top: calc(var(--top-offset) + (var(--index) - 1) * var(--card-spacing));
    display: flex;
    gap: 40px;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: var(--index);
    will-change: transform;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.12);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: rgba(0, 0, 0, 0.7);
}

.card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    margin: 0 0 24px 0;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #111;
}

.card p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 40px 0;
    color: rgba(0, 0, 0, 0.75);
    flex-grow: 1;
}

.metrics {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    font-family: 'Outfit', sans-serif;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: #111;
}

.metric-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
}

.author-block {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 20px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-family: 'Outfit', sans-serif;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1e293b;
}

.author-role {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 2px;
}

.image-wrapper {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover .image-placeholder {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .card {
        flex-direction: column;
        padding: 32px;
        gap: 32px;
    }

    .image-wrapper {
        min-height: 350px;
    }

    .card h2 {
        font-size: 2.25rem;
    }

    .metrics {
        gap: 32px;
    }

    .metric-value {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .card {
        padding: 24px;
    }

    .image-wrapper {
        min-height: 250px;
    }

    .author-block {
        width: 100%;
    }
}

/* Process Section */
/* Process Section */
.process-section {
    width: calc(100% - 48px);
    background-color: #0A0A0A;
    padding: 0;
    overflow: hidden;
    /* Hide cards sliding from below */
    border-radius: 64px;
    margin: 0 24px 24px;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100vh;
    display: flex;
    align-items: center;
}

.process-grid {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
    justify-content: center;
}

.process-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    flex: 1;
    max-width: 300px;
}

.process-card {
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.top-card {
    border-radius: 32px 32px 16px 16px;
    padding: 32px 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.bottom-card {
    border-radius: 16px 16px 32px 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
}

.process-number {
    font-family: var(--font-family);
    font-size: 110px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
}

.process-title {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.process-body {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.9;
}

/* Color Tokens */
.col-1.top-card,
.col-1.bottom-card {
    background-color: #E1F9B2;
    color: #0F0F0F;
}

.col-2.top-card,
.col-2.bottom-card {
    background-color: #F4F4F4;
    color: #0F0F0F;
}

.col-3.top-card,
.col-3.bottom-card {
    background-color: #3B59EC;
    color: #FFFFFF;
}

.col-4.top-card,
.col-4.bottom-card {
    background-color: #EBEFD5;
    color: #0F0F0F;
}

/* Responsive */
@media (max-width: 768px) {
    .process-container {
        padding: 60px 24px;
        height: auto;
    }

    .process-grid {
        flex-direction: column;
    }

    .process-col {
        max-width: 100%;
    }

    .process-number {
        font-size: 80px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
}

.reviews-container {
    width: 100%;
}

.reviews-header {
    margin-bottom: 60px;
    padding: 0 48px;
}

.reviews-header-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 24px;
}

.reviews-title {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.reviews-title .light-text {
    color: #A0A0A0;
    /* Or similar light grey */
}

.reviews-slider-wrapper {
    position: relative;
    width: 100%;
}

.reviews-track {
    display: flex;
    width: max-content;
    animation: marquee-reviews 40s linear infinite;
}



.reviews-group {
    display: flex;
    gap: 24px;
    margin-right: 24px;
}

@keyframes marquee-reviews {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

.review-card {
    min-width: 400px;
    width: 400px;
    background-color: #F8FAFD;
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.reviewer-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-company {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid #E5E7EB;
    font-size: 0.9rem;
    font-weight: 500;
    color: #111;
}

.reviewer-company svg {
    color: #111;
}

.review-content {
    flex-grow: 1;
    margin-bottom: 60px;
}

.quote-icon {
    font-size: 4rem;
    color: #6366F1;
    line-height: 1;
    font-family: serif;
    display: block;
    margin-bottom: 16px;
}

.review-text {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 500;
    color: #111;
    letter-spacing: -0.01em;
}

.reviewer-info {
    margin-top: auto;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 8px;
}

.reviewer-role,
.reviewer-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 24px;
    }

    .reviews-header-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .reviews-title {
        font-size: 2.5rem;
    }

    .review-card {
        min-width: 300px;
        width: 300px;
        padding: 32px;
    }

    .review-text {
        font-size: 1.25rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 120px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    gap: 120px;
}

.faq-left {
    flex: 0 0 35%;
}

.faq-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
    color: #111;
    white-space: nowrap;
}

.faq-card {
    background-color: #1a1a1a;
    background-image: url('https://i.pinimg.com/736x/57/6f/db/576fdbc48d57fc72be07b30992093728.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.faq-avatars {
    display: flex;
    margin-bottom: 32px;
}

.faq-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    margin-left: -12px;
    object-fit: cover;
}

.faq-avatars img:first-child {
    margin-left: 0;
}

.faq-card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e5e7eb;
    z-index: 2;
    position: relative;
}

.faq-card-title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
}

.faq-btn {
    display: inline-block;
    background-color: #f7eb5a;
    color: #111;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 500;
}

.faq-btn:hover {
    transform: scale(1.05);
}

/* FAQ Send Button (animated plane icon) */
.faq-send-btn {
    display: inline-flex;
    align-items: center;
    background-color: #89F436;
    color: #111;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 24px 12px 18px;
    border-radius: 16px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
    position: relative;
}

.faq-send-btn:active {
    transform: scale(0.95);
}

.faq-send-svg-wrapper-1 {
    display: flex;
    align-items: center;
}

.faq-send-svg-wrapper {
    display: flex;
    align-items: center;
}

.faq-send-btn svg {
    transition: transform 0.3s ease;
    transform-origin: center;
}

.faq-send-btn span {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.faq-send-btn:hover .faq-send-svg-wrapper {
    animation: faq-fly 0.6s ease-in-out infinite alternate;
}

.faq-send-btn:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.faq-send-btn:hover span {
    transform: translateX(5em);
}

@keyframes faq-fly {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}

.faq-decor {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 200px;
    height: 200px;
    opacity: 0.8;
    z-index: 1;
}

.faq-right {
    flex: 1;
    padding-top: 16px;
}

.accordion-item {
    border-bottom: 1px solid #eaeaea;
}

.accordion-item:first-child {
    border-top: 1px solid #eaeaea;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    cursor: pointer;
}

.accordion-question {
    font-size: 1.15rem;
    font-weight: 500;
    color: #111;
    margin: 0;
    padding-right: 24px;
    line-height: 1.4;
}

.accordion-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    flex-shrink: 0;
    color: #111;
}

.accordion-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    background-color: #111;
    color: #fff;
}

.accordion-item.active .accordion-icon svg {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-content p {
    margin: 0;
    padding-bottom: 32px;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .faq-container {
        flex-direction: column;
        gap: 60px;
    }

    .faq-section {
        padding: 80px 24px;
    }
}

.faq-highlight {
    background-color: #d1f736;
    padding: 0 4px;
    border-radius: 4px;
    color: #111;
}

.faq-decor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Contact Section */
.contact-section {
    background-color: #D6DCE1;
    padding: 100px 24px;
}

.contact-container {
    max-width: 100%;
    padding: 0 24px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
}

.contact-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111;
    letter-spacing: -0.03em;
}

.contact-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 60px;
    max-width: 90%;
}

.contact-person-info {
    margin-top: 40px;
}

.person-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.person-role {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

.contact-right {
    flex: 1.2;
    background-color: #FFFFFF;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #111;
    font-family: inherit;
    font-size: 1rem;
    background: transparent;
    color: #111;
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    padding-right: 24px;
}

.form-group textarea {
    min-height: 40px;
}

.submit-btn {
    background-color: #111;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.submit-btn:hover {
    background-color: #89F436;
    color: #111;
}

.submit-btn.success {
    background-color: #fff;
    color: #111;
    border: 1px solid #eaeaea;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.submit-btn.success svg {
    width: 20px;
    height: 20px;
    color: #00c853;
}

.contact-footer {
    margin-top: 24px;
    font-size: 0.95rem;
    color: #555;
}

.contact-footer a {
    color: #89F436;
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 48px;
    }

    .contact-right {
        width: 100%;
        padding: 32px 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 32px;
    }
}

/* Text Generate Effect */
.tg-word {
    display: inline-block;
    opacity: 0;
    filter: blur(4px);
    will-change: filter, opacity;
}


/* Book A Call Button */
.book-a-call-btn {
    position: relative;
    font-size: 0.95rem;
    /* text-sm/medium */
    font-weight: 500;
    border-radius: 9999px;
    height: 3rem;
    /* h-12 */
    padding: 0.25rem 3.5rem 0.25rem 1.5rem;
    /* p-1 pe-14 ps-6 */
    display: inline-flex;
    align-items: center;
    width: fit-content;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    text-decoration: none;
    background-color: var(--accent);
    /* black */
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.book-a-call-btn:hover {
    padding-left: 3.5rem;
    /* hover:ps-14 */
    padding-right: 1.5rem;
    /* hover:pe-6 */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.book-a-call-btn .btn-text {
    position: relative;
    z-index: 10;
    transition: all 0.5s ease;
}

.book-a-call-btn .btn-icon {
    position: absolute;
    right: 0.25rem;
    /* right-1 */
    width: 2.5rem;
    /* w-10 */
    height: 2.5rem;
    /* h-10 */
    background-color: #ffffff;
    /* text-foreground bg-background approx */
    color: var(--accent);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.book-a-call-btn:hover .btn-icon {
    right: calc(100% - 2.75rem);
    /* calc(100% - 44px) */
    transform: rotate(45deg);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.preloader-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.preloader-text-wrapper {
    position: absolute;
    top: 80px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.preloader-accent {
    width: 3px;
    height: 70px;
    background-color: #89F436;
}
.preloader-text {
    font-size: 5rem;
    font-weight: 300;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    line-height: 1;
    display: flex;
    align-items: flex-end;
}

.preloader-text .percent {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 10px;
    margin-left: 4px;
    color: var(--text-secondary);
}

.preloader-bar-container {
    width: 100%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #89F436; /* Lime green */
}

/* Footer Section */
.footer-section {
    background-color: #F6F6F6; /* light aesthetic */
    padding: 80px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80vh;
    border-radius: 40px 40px 0 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.footer-info h3 {
    font-size: 2.2rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-column a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.link-column a:hover {
    color: #111;
}

.footer-newsletter p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    margin-bottom: 16px;
    border-bottom: 1px solid #ccc;
}

.newsletter-form input {
    background-color: transparent;
    border: none;
    padding: 12px 0;
    flex-grow: 1;
    outline: none;
    font-size: 1rem;
}

.newsletter-form button {
    background-color: transparent;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #111;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-form button:hover {
    transform: translateX(4px);
}

.newsletter-disclaimer {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #888;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
}

.footer-copyright p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
}

.footer-socials {
    display: flex;
    gap: 24px;
}

.footer-socials a {
    color: #111;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: #89F436;
}

.footer-big-text-wrapper {
    position: absolute;
    bottom: -4%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.footer-big-text-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to bottom, rgba(246, 246, 246, 0) 0%, #F6F6F6 100%);
    pointer-events: none;
    z-index: 2;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
}

.footer-big-text {
    font-family: var(--font-family);
    font-size: 22vw;
    font-weight: 800; /* Make it bolder */
    line-height: 0.85;
    letter-spacing: -0.05em; /* Tighter letter spacing */
    background: linear-gradient(180deg, #0a0a0a 0%, #2a2a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #111; /* fallback */
    margin: 0;
    padding-right: 4vw; /* Prevent the registered mark from being clipped on the right */
    white-space: nowrap;
    transform: translateY(100%); /* Hidden initially, GSAP will animate */
}

.registered-mark {
    font-size: 0.35em;
    vertical-align: super;
    font-weight: 500;
    line-height: 0;
    margin-left: 0.5vw;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-links {
        justify-content: space-between;
    }
    .footer-big-text-wrapper {
        bottom: 0%;
    }
    .footer-big-text {
        font-size: 24vw;
        line-height: 0.9;
    }
}

/* 404 Page Styles */
.page-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #ffffff;
    font-family: var(--font-family);
    padding: 0 1.5rem;
    margin: 0;
}

.not-found-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 24rem;
}

.not-found-code {
    user-select: none;
    font-family: 'Outfit', sans-serif;
    font-size: 8rem;
    font-weight: 600;
    color: rgba(150, 150, 150, 0.3);
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 0;
}

.not-found-title {
    margin-top: 0.5rem;
    font-size: 1.875rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #111;
}

.not-found-desc {
    margin-top: 0.75rem;
    text-align: center;
    color: #666;
    max-width: 24rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.suggestions-box {
    margin-top: 2.5rem;
    width: 100%;
}

.suggestions-title {
    margin-bottom: 0.75rem;
    text-align: center;
    font-size: 0.875rem;
    color: #666;
}

.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
}

.suggestions-list li {
    border-bottom: 1px solid #e5e5e5;
}

.suggestions-list li:last-child {
    border-bottom: none;
}

.suggestion-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #111;
    text-decoration: none;
    transition: background-color 0.2s;
}

.suggestion-link:hover {
    background-color: rgba(243, 244, 246, 0.5); /* hover:bg-muted/50 */
}

.arrow-icon {
    width: 0.875rem;
    height: 0.875rem;
    color: #888;
}

.action-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 0.75rem;
}

.btn-404-primary, .btn-404-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-404-primary {
    background-color: #111;
    color: #fff;
}

.btn-404-primary:hover {
    background-color: rgba(17, 17, 17, 0.9);
}

.btn-404-outline {
    bottom: -4%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.footer-big-text-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to bottom, rgba(246, 246, 246, 0) 0%, #F6F6F6 100%);
    pointer-events: none;
    z-index: 2;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
}

.footer-big-text {
    font-family: var(--font-family);
    font-size: 22vw;
    font-weight: 800; /* Make it bolder */
    line-height: 0.85;
    letter-spacing: -0.05em; /* Tighter letter spacing */
    background: linear-gradient(180deg, #0a0a0a 0%, #2a2a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #111; /* fallback */
    margin: 0;
    padding-right: 4vw; /* Prevent the registered mark from being clipped on the right */
    white-space: nowrap;
    transform: translateY(100%); /* Hidden initially, GSAP will animate */
}

.registered-mark {
    font-size: 0.35em;
    vertical-align: super;
    font-weight: 500;
    line-height: 0;
    margin-left: 0.5vw;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-links {
        justify-content: space-between;
    }
    .footer-big-text-wrapper {
        bottom: 0%;
    }
    .footer-big-text {
        font-size: 24vw;
        line-height: 0.9;
    }
}

/* 404 Page Styles */
.page-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #ffffff;
    font-family: var(--font-family);
    padding: 0 1.5rem;
    margin: 0;
}

.not-found-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 24rem;
}

.not-found-code {
    user-select: none;
    font-family: 'Outfit', sans-serif;
    font-size: 8rem;
    font-weight: 600;
    color: rgba(150, 150, 150, 0.3);
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 0;
}

.not-found-title {
    margin-top: 0.5rem;
    font-size: 1.875rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #111;
}

.not-found-desc {
    margin-top: 0.75rem;
    text-align: center;
    color: #666;
    max-width: 24rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.suggestions-box {
    margin-top: 2.5rem;
    width: 100%;
}

.suggestions-title {
    margin-bottom: 0.75rem;
    text-align: center;
    font-size: 0.875rem;
    color: #666;
}

.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
}

.suggestions-list li {
    border-bottom: 1px solid #e5e5e5;
}

.suggestions-list li:last-child {
    border-bottom: none;
}

.suggestion-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #111;
    text-decoration: none;
    transition: background-color 0.2s;
}

.suggestion-link:hover {
    background-color: rgba(243, 244, 246, 0.5); /* hover:bg-muted/50 */
}

.arrow-icon {
    width: 0.875rem;
    height: 0.875rem;
    color: #888;
}

.action-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 0.75rem;
}

.btn-404-primary, .btn-404-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-404-primary {
    background-color: #111;
    color: #fff;
}

.btn-404-primary:hover {
    background-color: rgba(17, 17, 17, 0.9);
}

.btn-404-outline {
    border: 1px solid #e5e5e5;
    background-color: transparent;
    color: #111;
}

.btn-404-outline:hover {
    background-color: #f9f9f9;
}

/* Policy Pages */
.policy-page {
    background-color: #ffffff;
    font-family: var(--font-family);
    color: #111;
    margin: 0;
    padding: 0;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

.policy-container h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    font-family: 'Outfit', sans-serif;
}

.policy-container .last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.policy-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.policy-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.25rem;
}

.policy-container ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-container li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0.5rem;
}

.policy-container li strong {
    color: #111;
    font-weight: 600;
}

/* Cascade Link Text Effect */
.cascade-link {
    display: inline-block;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: color 0.35s ease;
    line-height: 1;
    /* Remove outline on focus if preferred */
    outline: none;
}

.cascade-link:hover {
    color: #b2c73a !important; /* override the default hover color */
}

.cascade-text-outer {
    display: inline-flex;
    overflow: hidden;
    position: relative;
    height: 1em;
    vertical-align: text-bottom;
}

.cascade-text-inner {
    display: inline-block;
    position: relative;
    will-change: transform;
    text-shadow: 0 1em currentColor;
    transition: transform 250ms ease-in-out;
    transform: translateY(0);
}

.cascade-link:hover .cascade-text-inner {
    transform: translateY(-1em);
}
