@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Fira+Code:wght@400;500&display=swap');

:root {
    --bg-color: #fafaf8;
    --feature-color: #e8380a;
    /* Slightly toned-down orange — not pure bright */
    --feature-muted: rgba(232, 56, 10, 0.08);
    --feature-border: rgba(232, 56, 10, 0.18);
    --text-primary: #111010;
    --text-secondary: #4b5563;
    --text-tertiary: #6b7280;
    --border-color: rgba(0, 0, 0, 0.07);
    --glass-bg: rgba(255, 255, 255, 0.6);
    --card-bg: rgba(255, 255, 255, 0.55);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    /* Subtle warm glow from top-left, cool from bottom-right — Groq style */
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(232, 56, 10, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background: rgba(250, 250, 248, 0.75);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

/* Logo Container */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    /* margin: 0;
    padding: 0; */
    /* height: 72px; */
}

/* Responsive Logo */
.logo-icon {
    width: 160px;
    height: 70px;
    object-fit: contain;
    display: block;
    transform: scale(1.8);
    /* transform-origin: left center; */
}

/* .nav-logo span {
    color: var(--feature-color);
} */

.lari {
    color: rgb(247 112 7)
        /* White */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions .btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    margin: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1001;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.navbar.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile-menu {
    display: none;
    position: fixed;
    top: var(--navbar-height, 64px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px 24px;
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    z-index: 999;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.navbar.is-open .nav-mobile-menu {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-mobile-menu a {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-secondary);
    padding: 12px 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-mobile-menu a:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.04);
}

.nav-mobile-menu .nav-mobile-cta {
    justify-content: center;
    margin-top: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.nav-mobile-menu .nav-mobile-cta:hover {
    background: var(--feature-color);
    color: #fff;
}

body.nav-open {
    overflow: hidden;
}

/* .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;

    background: #f43e01;
    color: black;

    border: none;
    border-radius: 12px;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;

    box-shadow: 0 0 0 rgba(244, 62, 1, 0);
} */
.nav-actions .btn-primary {
    width: 180px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f43e01 0%, #ff7b47 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2),
        0 4px 10px rgba(244, 62, 1, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.btn-primary:hover::before {
    left: 200%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff8a50 100%);
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(244, 62, 1, 0.4);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    padding: 110px 40px 70px;
    max-width: 1400px;
    margin: auto;
    /* text-align: center; */
}

.hero-glass-container {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--feature-muted);
    color: var(--feature-color);
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid var(--feature-border);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
    /* Groq-style: main heading is near-black, not gradient */
    color: var(--text-primary);
}

.hero p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.75;
    font-weight: 400;
}



.pendulum {
    display: inline-block;

    background: linear-gradient(135deg, #f43e01, #ff8a50, #f43e01);
    background-size: 200% auto;

    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;

    transform-origin: bottom center;

    animation: shine 2s linear infinite,
        italicMove 0.9s ease-in-out infinite;
}

@keyframes italicMove {

    0%,
    49% {
        transform: skewX(0deg);
    }

    /* 30% {
        transform: skewX(-6deg);
    } */

    /* 50% {
        transform: skewX(-12deg);
    }  */

    50%,
    99% {
        transform: skewX(-20deg);
    }

    100% {
        transform: skewX(-0deg);
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 12px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px) saturate(180%);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* .hero-split .hero-content {
    flex: 2;
} */

/* .hero-content{
    flex:1.05;
} */

.hero-right {
    /* flex:0.95; */

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-split .hero-video {
    width: 100%;
    max-width: 400px;

    /* border-radius:24px; */
    overflow: hidden;

    /* box-shadow:
        0 25px 60px rgba(0,0,0,.15); */
}

.hero-split .hero-video video {

    width: 100%;
    height: 420px;
    object-fit: contain;
    display: block;
}

.hero-split .hero-buttons {
    justify-content: flex-start;
}

.hero-split p {
    margin: 0 0 36px 0;
}

/* Animated Text */
.animated-text span:not(.pendulum) {
    background: linear-gradient(135deg, #f43e01, #ff8a50, #f43e01);
    background-size: 100% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Trusted By */
.trusted-by {
    padding: 32px 40px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.trusted-by p {
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* =============================================
   INFINITE MARQUEE — Company Logos (Trusted By)
   ============================================= */
.logos-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    /* Edge fade masks */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logos-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.logos-track {
    display: flex;
    gap: 56px;
    align-items: center;
    white-space: nowrap;
    /* Animate infinitely to the left */
    animation: marquee-left 28s linear infinite;
}

.logos-track:hover,
.logos-marquee:hover .logos-track {
    animation-play-state: paused;
}

.logos-track span {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    opacity: 0.4;
    flex-shrink: 0;
    transition: opacity 0.25s ease;
}

.logos-track span:hover {
    opacity: 0.75;
}

/* =============================================
   INFINITE MARQUEE — Feature Cards
   ============================================= */
.features-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.features-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.features-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
    white-space: nowrap;
    flex-shrink: 0;
}

.features-track--left {
    animation: marquee-left 35s linear infinite;
}

.features-track--right {
    animation: marquee-right 35s linear infinite;
}

.features-marquee-wrapper:hover .features-track {
    animation-play-state: paused;
}

/* Override feature-card for marquee context */
.features-track .feature-card {
    flex-shrink: 0;
    width: 300px;
    white-space: normal;
    display: flex;
    flex-direction: column;
}

#featuresCarousel {
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
}

#featuresCarousel:active {
    cursor: grabbing;
}

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}


/* Features Block */
.section-title {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 60px;
    text-align: center;
}

.features-highlight {
    padding: 90px 0;
    width: 100%;
    overflow: hidden;
    scroll-margin-top: 80px;
}

.features-highlight .section-title {
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

/* ── Infinite marquee outer container ─────────────────────────── */
.features-marquee-outer {
    width: 100%;
    overflow: hidden;
    /* Soft fade-out on edges so cards don't hard-clip */
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 6%,
            black 94%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 6%,
            black 94%,
            transparent 100%);
    padding: 20px 0 40px;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.features-marquee-outer:active {
    cursor: grabbing;
}

/* ── The single scrolling strip ─────── */
.features-marquee-inner {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}


.feature-card {
    flex: 0 0 300px;
    width: 300px;
    background: rgba(255, 255, 255, 0.6);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: var(--shadow-card);
    transition: transform 3.9s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(0);
    box-shadow: var(--shadow-hover);
    border-color: rgba(232, 56, 10, 0.12);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.feature-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--feature-muted);
    color: var(--feature-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
    border: 1px solid var(--feature-border);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* Code Snippet */
.code-section {
    padding: 100px 40px;
    background: #0d0d0c;
    color: #fff;
}

.code-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.code-container>div {
    min-width: 0;
    max-width: 100%;
}

.code-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.code-text h2 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
    line-height: 1.1;
}

.code-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    line-height: 1.75;
}

.code-section .btn-primary {
    background: linear-gradient(135deg, #ff5722 0%, #ff8a50 100%);
    border: none;
    box-shadow: 0 4px 14px rgba(244, 62, 1, 0.3);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
}

.code-section .btn-primary::before {
    display: none;
}

.code-section .btn-primary:hover {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(244, 62, 1, 0.4);
}

.code-block {
    background: #0a0a0a;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 230px;
}


.code-block::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;

    background: linear-gradient(90deg,
            transparent,
            #00e5ff,
            #7c3aed,
            #ffee00,
            transparent);

    background-size: 300% 300%;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    animation: borderMove 4s linear infinite;
    pointer-events: none;
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.code-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

pre {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    color: #e6e6e6;
    overflow-x: auto;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
pre::-webkit-scrollbar {
    display: none;
}

pre span.keyword {
    color: #ff8f4a;
}

pre span.string {
    color: #a5d6ff;
}

pre span.tag {
    color: #7ee787;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
    padding: 60px 40px 40px;
    background: #ffffff;
    color: #4b5563;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
    /* ← all columns top-aligned */
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Logo image — no negative hacks */
.footer-logo {
    margin-bottom: 14px;
    margin-left: -10px;
    transform: translateY(-67px);
}

.footer-logo img {
    width: 150px;
    height: auto;
    display: block;
}

.footer-col:first-child p {
    margin-top: -100px;
}

/* Column headings — same line as logo */
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #6b7280;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #f43e01;
}

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #f43e01;
}


/* Responsive */
@media (max-width: 1024px) {
    .navbar {
        padding: 10px 24px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .navbar:has(.nav-toggle) {
        padding: 10px 24px;
    }

    .navbar:has(.nav-toggle) .nav-links {
        display: none;
    }

    .navbar:has(.nav-toggle) .nav-toggle {
        display: flex;
    }

    .navbar:has(.nav-toggle) .logo-icon {
        width: 40px;
        height: 40px;
    }

    .navbar:has(.nav-toggle) .nav-logo {
        font-size: 24px;
    }

    .navbar:has(.nav-toggle) .nav-actions .btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .code-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-split {
        flex-direction: column;
        text-align: center;
    }

    .hero-split .hero-buttons {
        justify-content: center;
    }

    .hero-split p {
        margin: 0 auto 36px auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0px 20px;
    }

    .navbar:not(:has(.nav-toggle)) .nav-links {
        display: none;
    }

    .navbar:has(.nav-toggle) {
        padding: 8px 20px;
    }

    .navbar:has(.nav-toggle) .logo-icon {
        width: 32px;
        height: 32px;
    }

    .navbar:has(.nav-toggle) .nav-logo {
        font-size: 18px;
    }

    .navbar:has(.nav-toggle) .nav-actions {
        display: none;
    }

    .nav-mobile-menu {
        padding: 12px 20px 24px;
    }

    .navbar:not(:has(.nav-toggle)) .nav-logo {
        font-size: 20px;
    }

    .navbar:not(:has(.nav-toggle)) .nav-actions .btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    .hero h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-large {
        padding: 14px 24px;
        width: 100%;
    }

    .hero-glass-container {
        padding: 0;
    }

    .trusted-by {
        padding: 24px 20px;
    }

    .logos {
        gap: 24px;
    }

    .features-highlight {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .code-section {
        padding: 60px 20px;
    }

    .code-text h2 {
        font-size: 32px;
    }

    .code-block {
        padding: 20px;
    }

    pre {
        font-size: 12px;
    }

    footer {
        padding: 60px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col {
        width: 100%;
        text-align: center;
    }

    .footer-col p {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar:has(.nav-toggle) {
        padding: 10px 16px;
    }

    .nav-mobile-menu {
        padding: 12px 16px 24px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .code-text h2 {
        font-size: 28px;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

to {
    opacity: 1;
    transform: translateY(0);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.social-links li {
    margin: 0;
}

.social-links img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.social-links img:hover {
    transform: translateY(-4px) scale(1.1);
    opacity: 0.8;
}