/* Global Styles & Variables */
:root {
    --primary-color: #59b7ff;
    --primary-dark: #0077cc;
    --accent-color: #7b4dff;
    --secondary-color: #0d1117;
    --background-color: #ffffff;
    --surface-color: #f6f9fc;
    --text-main: #1a1a1a;
    --text-muted: #555555;

    --font-main: 'Outfit', sans-serif;

    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;

    --shadow-soft: 0 10px 40px -10px rgba(89, 183, 255, 0.15);
    --shadow-deep: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(89, 183, 255, 0.4);

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-content: backdrop-filter: blur(12px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--background-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.scroll-fade-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.08) 65%, rgba(0, 0, 0, 0.2) 100%);
    mix-blend-mode: multiply;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

/* Background Decorations */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(89, 183, 255, 0.15), transparent 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(123, 77, 255, 0.08), transparent 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(100px);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.section-title {
    text-align: center;
}

.section-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.98);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
}

.reveal.fade-left {
    transform: translate3d(-28px, 0, 0);
}

.reveal.fade-right {
    transform: translate3d(28px, 0, 0);
}

.reveal.fade-up {
    transform: translate3d(0, 28px, 0);
}

.reveal.zoom {
    transform: scale(0.9);
}

.reveal.in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

/* Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--glass-border);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 45px rgba(15, 23, 42, 0.08);
    transition: padding 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, transform 0.35s ease;
    isolation: isolate;
}

header::before,
header::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

header::before {
    background: linear-gradient(120deg, rgba(89, 183, 255, 0.15), rgba(123, 77, 255, 0.12), rgba(89, 183, 255, 0.14));
    background-size: 200% 200%;
    filter: blur(8px);
    animation: gradientWave 14s ease-in-out infinite alternate;
}

header::after {
    background:
        radial-gradient(circle at 16% 40%, rgba(89, 183, 255, 0.4), transparent 35%),
        radial-gradient(circle at 82% 20%, rgba(123, 77, 255, 0.35), transparent 28%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 60%);
    filter: blur(32px);
    opacity: 0.65;
    animation: glowTravel 18s ease-in-out infinite alternate;
}

header.scrolled {
    padding: 6px 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    transform: translateY(-1px);
}

.navbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 14px 28px;
    border-radius: 18px;
    /*width: calc(100% - 40px);*/
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
    overflow: hidden;
}
/*
.navbar::before {
    content: '';
    position: absolute;
    inset: -60% -30% auto -30%;
    height: 200%;
    background:
        radial-gradient(circle at 22% 40%, rgba(89, 183, 255, 0.32), transparent 45%),
        radial-gradient(circle at 78% 20%, rgba(123, 77, 255, 0.28), transparent 38%),
        linear-gradient(120deg, rgba(89, 183, 255, 0.18), rgba(123, 77, 255, 0.16));
    opacity: 0.9;
    animation: drift 16s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.navbar>* {
    position: relative;
    z-index: 1;
}

header.scrolled .navbar {
    padding: 10px 22px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.32) inset;
}
*/
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 150px;
/*  max-height: 78px;*/
    width: 150px;
    /*object-fit: contain;*/
    filter: drop-shadow(0 8px 20px rgba(89, 183, 255, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.nav-links a {
    position: relative;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--secondary-color);
    padding: 10px 0;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.nav-cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(89, 183, 255, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
    border: 1px solid rgba(255, 255, 255, 0.35);
    overflow: hidden;
}

.nav-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
    opacity: 0;
    transform: translateX(-40%);
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(89, 183, 255, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.nav-cta:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 160px;
    /* Adjustment for taller fixed header */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
    padding: 100px 0;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 1.5rem 0 2.5rem 0;
    max-width: 90%;
}

.hero-image {
    position: relative;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.hero-visual {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-visual:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 5s ease-in-out infinite;
}

/* Floating Structure */
.floating-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1500%;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    z-index: 10;
    padding: 0 6%;
}

.floating-group {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.floating-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    margin: 8px 0 12px;
    opacity: 0.8;
    pointer-events: none;
}

.float-row {
    flex: 1;
    position: relative;
}

/* Row 1 Elements (Top) */
.fc-1 {
    top: 0%;
    left: 0%;
    transform: translateY(-50%);
    pointer-events: auto;
    animation-delay: 0s;
}

.fc-5 {
    top: -40%;
    left: 82%;
    transform: translateX(-50%);
    pointer-events: auto;
    animation-delay: 0.5s;
    white-space: nowrap;
}

.fc-7 {
    top: 12%;
    right: 25%;
    pointer-events: auto;
    animation-delay: 4.0s;
}

/* Row 2 Elements (Middle) */
.fc-6 {
    top: -10%;
    left: -22%;
    pointer-events: auto;
    animation-delay: 2.8s;
}

.fc-2 {
    top: 56%;
    right: 22%;
    transform: translateY(-50%);
    pointer-events: auto;
    animation-delay: 2.5s;
}

.fc-9 {
    top: 52%;
    left: 30%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    animation-delay: 3.2s;
    width: 60px;
    height: 60px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 5;
}

/* Row 3 Elements (Bottom) */
.fc-4 {
    bottom: 10%;
    left: -25%;
    pointer-events: auto;
    animation-delay: 3.7s;
    padding: 10px 18px;
}

.fc-8 {
    bottom: -6%;
    left: 32%;
    transform: translateX(-50%);
    pointer-events: auto;
    animation-delay: 1.5s;
    padding: 10px 15px;
    white-space: nowrap;
}

.fc-3 {
    bottom: 15%;
    right: -22%;
    pointer-events: auto;
    animation-delay: 1.2s;
}

@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes drift {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    100% {
        transform: translate3d(12px, -8px, 0) rotate(2deg);
    }
}

@keyframes glowTravel {
    0% {
        transform: translateX(-8px);
    }

    100% {
        transform: translateX(8px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(50px);
    animation: pulse 6s infinite alternate;
}

.fs-1 {
    width: 150px;
    height: 150px;
    background: rgba(89, 183, 255, 0.3);
    top: -10%;
    right: 20%;
}

.fs-2 {
    width: 100px;
    height: 100px;
    background: rgba(123, 77, 255, 0.3);
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
    }

    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Trusted By / Marquee */
.clients {
    padding: 4rem 0;
    overflow: hidden;
    background: white;
}

.marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
    padding-left: 4rem;
}

.client-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Services - Bento Grid */
.services {
    padding: 6rem 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: 24px;
}

.bento-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f3f5;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-color);
}

.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(89, 183, 255, 0.08), rgba(123, 77, 255, 0.06));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bento-item:hover::after {
    opacity: 1;
}

.bento-large {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--secondary-color), #222);
    color: white;
}

.bento-tall h3,
.bento-tall p,
.bento-tall .icon {
    color: white;
}

.bento-item .icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: #eef7ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.bento-tall .icon {
    background: rgba(255, 255, 255, 0.1);
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bento-item p {
    color: var(--text-muted);
}

/* Plans */
.plans {
    padding: 6rem 0;
    background: #f8fbff;
}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.plan-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 3rem;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 2px solid transparent;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(89, 183, 255, 0.12), rgba(123, 77, 255, 0.12));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.plan-card::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -60%;
    width: 60%;
    height: 140%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0;
    animation: shimmer 8s linear infinite;
}

.plan-card:hover,
.plan-card.popular {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-soft);
}

.plan-card:hover::before,
.plan-card.popular::before {
    opacity: 1;
}

.plan-card:hover::after {
    opacity: 1;
}

.plan-card>* {
    position: relative;
    z-index: 1;
}

.plan-card.popular {
    transform: translateY(-4px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-soft);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: var(--secondary-color);
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.plan-features li i {
    color: var(--primary-color);
}

.plans-note {
    text-align: center;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

/* Team */
.team {
    padding: 6rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.team-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid #eef1f7;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(89, 183, 255, 0.18), rgba(123, 77, 255, 0.15));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.team-card::after {
    content: '';
    position: absolute;
    width: 160%;
    height: 60%;
    top: -20%;
    left: -80%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    transform: rotate(18deg);
    opacity: 0;
    animation: shimmer 9s linear infinite;
}

.team-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-soft);
}

.team-card:hover::before,
.team-card:hover::after {
    opacity: 1;
}

.team-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: grid;
    place-items: center;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    letter-spacing: -0.01em;
}

.team-role {
    color: var(--text-muted);
    margin-top: 4px;
    font-size: 0.95rem;
}

/* Onboarding */
.onboarding {
    padding: 6rem 0;
    background: #f8fbff;
}

.onboarding-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 2.5rem;
}

.step-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid #eef1f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: grid;
    place-items: center;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    margin-bottom: 1rem;
}

.step-card h3 {
    margin-bottom: 0.75rem;
}

.step-card ul {
    padding-left: 1rem;
    color: var(--text-muted);
    display: grid;
    gap: 6px;
    list-style: disc;
}

.step-card li::marker {
    color: var(--primary-color);
}

/* Terms */
.terms {
    padding: 6rem 0;
    background: white;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 2.5rem;
}

.term-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.75rem;
    border: 1px solid #eef1f7;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.term-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.term-item h3 {
    margin-bottom: 0.5rem;
}

/* Contact */
.contact-section {
    padding: 6rem 0;
}

.contact-box {
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    color: white;
    overflow: hidden;
    position: relative;
}

.contact-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(89, 183, 255, 0.2), transparent 60%);
    border-radius: 50%;
}

.contact-info h2 {
    color: white;
}

.contact-info p {
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.form-input {
    width: 100%;
    padding: 16px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

@keyframes shimmer {
    0% {
        transform: translateX(-120%) rotate(18deg);
    }

    100% {
        transform: translateX(120%) rotate(18deg);
    }
}

/* Footer */
footer {
    padding: 4rem 0 2rem 0;
    background: white;
    border-top: 1px solid #f1f1f1;
}

/* Responsive */
@media (max-width: 1024px) {
    header {
        padding: 10px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        order: 0;
        margin-bottom: 2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-large,
    .bento-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .contact-box {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
/*
    .navbar {
        width: 100%;
        padding: 12px 18px;
        border-radius: 16px;
        flex-wrap: wrap;
        gap: 1rem;
    }
*/
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 10px;
        padding: 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }
}
