* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Brand Colors */
    --orange: #FF5722;
    --navy: #2E2C5C;
    
    /* Supporting Colors */
    --light-gray: #F5F5F5;
    --very-light-orange: #FFF3E0;
    --section-gray: #F8F9FA;
    --white: #FFFFFF;
    
    /* Additional UI Colors */
    --text-primary: #2E2C5C;
    --text-secondary: #5A5A7D;
    --border-color: #E0E0E0;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Allow hero to use a slightly wider content area so the main text can sit further right */
.hero .container {
    max-width: 1400px;
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 72px;
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #E64A19;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.mobile-cta {
    width: 100%;
    display: none;
}

.mobile-cta-item {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background-color: var(--white);
    background-image: url("hero-section-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 60px;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-main {
    max-width: 720px;
    margin-left: auto;
    text-align: left;
}

@media (min-width: 969px) {
    .hero-main {
        transform: translateX(100px);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--very-light-orange);
    color: var(--orange);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 32px;
}

@media (min-width: 969px) {
    .launch-badge {
        transform: translateX(50px);
    }
}

/* Launch badge spinning ring icon */
.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 8px;
}

.launch-ring {
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(46, 44, 92, 0.25); /* subtle navy base ring */
    box-shadow: 0 0 8px rgba(46, 44, 92, 0.3);
}

.launch-ring::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--orange);
    border-right-color: var(--orange);
    animation: launchRingSpin 1.6s linear infinite;
}

.launch-ring::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.8);
    transform-origin: -6px center;
    animation: launchDotOrbit 1.6s linear infinite;
}

@keyframes launchRingSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes launchDotOrbit {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(405deg);
    }
}

/* Trusted By Section */
.trusted-by-section {
    margin-top: 80px;
    padding-top: 40px;
}

@media (min-width: 969px) {
    .trusted-by-section {
        transform: translateX(50px);
    }
}

.trusted-by-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.marquee-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    user-select: none;
}

.marquee-gradient-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 120px;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(to right, var(--white), transparent);
}

.marquee-gradient-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 120px;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(to left, var(--white), transparent);
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marqueeScroll 20s linear infinite;
    will-change: transform;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.waitlist-form input[type="email"]:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-family);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #E64A19;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.3);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-gray {
    background: var(--section-gray);
}

.who-we-serve-section {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-top: 16px;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-closing {
    text-align: center;
    font-size: 20px;
    color: var(--text-secondary);
    margin-top: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-closing.highlight {
    color: var(--navy);
    font-weight: 600;
}

.who-we-serve-media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 0 auto;
}

.who-we-serve-gif {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* About Section media */
.about-media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 48px auto;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Serve Grid (Who We Serve Section) */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.serve-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.serve-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.serve-image {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 16px auto;
    display: block;
}

.serve-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

/* Generic animation utilities applied to Who We Serve cards */
.animate {
    animation-duration: 0.7s;
    animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
    animation-fill-mode: backwards;
}

.slide-up {
    animation-name: slide-up;
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(3em);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide {
    animation-name: slide;
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translate(4em, 0);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.slide-left {
    animation-name: slide-left;
}

@keyframes slide-left {
    0% {
        opacity: 0;
        transform: translate(-40px, 0);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }
.delay-5 { animation-delay: 1.5s; }
.delay-6 { animation-delay: 1.8s; }
.delay-7 { animation-delay: 2.1s; }
.delay-8 { animation-delay: 2.4s; }

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

@media (min-width: 1024px) {
    .products-grid {
        /* On desktop, always show 3 equal-width columns (3x2 layout for 6 cards) */
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Product Container with 3D Effects */
.product-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    transition: 200ms;
}

.product-container:active {
    transform: scale(0.98);
}

.product-card {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: 700ms;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid rgba(255, 87, 34, 0.2);
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.product-container.featured .product-card {
    border-color: var(--orange);
    background: linear-gradient(145deg, #2E2C5C, #1a1a1a);
    box-shadow:
        0 0 40px rgba(255, 87, 34, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.card-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    background: linear-gradient(45deg, #FF5722, #ff8a65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 87, 34, 0.3));
    z-index: 5;
    position: relative;
}

.product-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 16px;
    z-index: 5;
    position: relative;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--orange);
    z-index: 5;
    position: relative;
}

.price-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.price-intro strong {
    color: var(--orange);
    font-weight: 700;
    font-size: 24px;
}

.price-renew {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* 3D Hover Effects */
.glowing-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.glow-1,
.glow-2,
.glow-3 {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 87, 34, 0.3) 0%,
        rgba(255, 87, 34, 0) 70%
    );
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-1 {
    top: -20px;
    left: -20px;
}

.glow-2 {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
}

.glow-3 {
    bottom: -20px;
    left: 30%;
}

.card-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Tracker hover effects */
.tracker:hover ~ .product-card .glowing-elements div {
    opacity: 1;
}

.tracker:hover ~ .product-card .card-particles span {
    animation: particleFloat 2s infinite;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(calc(var(--x, 0) * 30px), calc(var(--y, 0) * 30px));
        opacity: 0;
    }
}

/* Particle positions */
.card-particles span:nth-child(1) {
    --x: 1;
    --y: -1;
    top: 40%;
    left: 20%;
}

.card-particles span:nth-child(2) {
    --x: -1;
    --y: -1;
    top: 60%;
    right: 20%;
}

.card-particles span:nth-child(3) {
    --x: 0.5;
    --y: 1;
    top: 20%;
    left: 40%;
}

.card-particles span:nth-child(4) {
    --x: -0.5;
    --y: 1;
    top: 80%;
    right: 40%;
}

.card-particles span:nth-child(5) {
    --x: 1;
    --y: 0.5;
    top: 30%;
    left: 60%;
}

.card-particles span:nth-child(6) {
    --x: -1;
    --y: 0.5;
    top: 70%;
    right: 60%;
}

.product-card::before {
    content: "";
    background: radial-gradient(
        circle at center,
        rgba(255, 87, 34, 0.15) 0%,
        rgba(255, 87, 34, 0.05) 50%,
        transparent 100%
    );
    filter: blur(20px);
    opacity: 0;
    width: 150%;
    height: 150%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.tracker:hover ~ .product-card::before {
    opacity: 1;
}

.tracker {
    position: absolute;
    z-index: 200;
    width: 100%;
    height: 100%;
}

.tracker:hover {
    cursor: pointer;
}

.tracker:hover ~ .product-card {
    transition: 300ms;
    filter: brightness(1.2);
}

.product-container:hover .product-card::before {
    transition: 200ms;
    content: "";
    opacity: 80%;
}

.product-canvas {
    perspective: 800px;
    inset: 0;
    z-index: 200;
    position: absolute;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 0px 0px;
    grid-template-areas:
        "tr-1 tr-2 tr-3"
        "tr-4 tr-5 tr-6"
        "tr-7 tr-8 tr-9";
}

.tr-1 { grid-area: tr-1; }
.tr-2 { grid-area: tr-2; }
.tr-3 { grid-area: tr-3; }
.tr-4 { grid-area: tr-4; }
.tr-5 { grid-area: tr-5; }
.tr-6 { grid-area: tr-6; }
.tr-7 { grid-area: tr-7; }
.tr-8 { grid-area: tr-8; }
.tr-9 { grid-area: tr-9; }

.tr-1:hover ~ .product-card {
    transition: 125ms ease-in-out;
    transform: rotateX(15deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-2:hover ~ .product-card {
    transition: 125ms ease-in-out;
    transform: rotateX(15deg) rotateY(0deg) rotateZ(0deg);
}

.tr-3:hover ~ .product-card {
    transition: 125ms ease-in-out;
    transform: rotateX(15deg) rotateY(10deg) rotateZ(0deg);
}

.tr-4:hover ~ .product-card {
    transition: 125ms ease-in-out;
    transform: rotateX(0deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-5:hover ~ .product-card {
    transition: 125ms ease-in-out;
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.tr-6:hover ~ .product-card {
    transition: 125ms ease-in-out;
    transform: rotateX(0deg) rotateY(10deg) rotateZ(0deg);
}

.tr-7:hover ~ .product-card {
    transition: 125ms ease-in-out;
    transform: rotateX(-15deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-8:hover ~ .product-card {
    transition: 125ms ease-in-out;
    transform: rotateX(-15deg) rotateY(0deg) rotateZ(0deg);
}

.tr-9:hover ~ .product-card {
    transition: 125ms ease-in-out;
    transform: rotateX(-15deg) rotateY(10deg) rotateZ(0deg);
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.card-glare {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 87, 34, 0.05) 45%,
        rgba(255, 87, 34, 0.1) 50%,
        rgba(255, 87, 34, 0.05) 55%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0;
    transition: opacity 300ms;
    pointer-events: none;
}

.product-card:hover .card-glare {
    opacity: 1;
}

.cyber-lines span {
    position: absolute;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 87, 34, 0.3),
        transparent
    );
}

.cyber-lines span:nth-child(1) {
    top: 20%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 3s linear infinite;
}

.cyber-lines span:nth-child(2) {
    top: 40%;
    right: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    animation: lineGrow 3s linear infinite 1s;
}

.cyber-lines span:nth-child(3) {
    top: 60%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 3s linear infinite 2s;
}

.cyber-lines span:nth-child(4) {
    top: 80%;
    right: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    animation: lineGrow 3s linear infinite 1.5s;
}

.corner-elements span {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 87, 34, 0.3);
    transition: all 0.3s ease;
}

.corner-elements span:nth-child(1) {
    top: 10px;
    left: 10px;
    border-right: 0;
    border-bottom: 0;
}

.corner-elements span:nth-child(2) {
    top: 10px;
    right: 10px;
    border-left: 0;
    border-bottom: 0;
}

.corner-elements span:nth-child(3) {
    bottom: 10px;
    left: 10px;
    border-right: 0;
    border-top: 0;
}

.corner-elements span:nth-child(4) {
    bottom: 10px;
    right: 10px;
    border-left: 0;
    border-top: 0;
}

.product-card:hover .corner-elements span {
    border-color: var(--orange);
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
}

.scan-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 87, 34, 0.15),
        transparent
    );
    transform: translateY(-100%);
    animation: scanMove 2s linear infinite;
    pointer-events: none;
}

@keyframes lineGrow {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
    100% {
        transform: scaleX(0);
        opacity: 0;
    }
}

@keyframes scanMove {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Purpose Section */
.purpose-section {
    background: var(--white);
}

.purpose-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.purpose-text {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.purpose-text.highlight {
    color: var(--orange);
    font-weight: 700;
    font-size: 26px;
    margin-top: 32px;
}

.purpose-media {
    margin-top: 32px;
    flex: 1 1 300px;
}

.purpose-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #3d3a6f 100%);
    color: var(--white);
}

.cta-section .section-title {
    color: var(--white);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 32px;
    color: var(--white);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: var(--white);
}

.benefit-check {
    color: var(--orange);
    font-weight: 700;
    font-size: 24px;
    flex-shrink: 0;
}

.waitlist-form.centered {
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-tagline {
    font-size: 16px;
    font-weight: 600;
    color: var(--orange);
}

/* Responsive Design */
/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 968px) {
    /* Hamburger Menu Activation */
    .hamburger {
        display: flex;
        margin-left: auto;
    }
    
    .desktop-cta {
        display: none;
    }
    
    .mobile-cta-item {
        display: block;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-cta {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 72px);
        background: var(--navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        gap: 24px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1001;
    }

    /* Ensure logo stays on the far left in the nav bar */
    .logo-link {
        margin-right: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        color: var(--white);
        font-size: 18px;
        display: block;
        padding: 12px 0;
    }
    
    .nav-menu a:hover {
        color: var(--orange);
    }
    
    .nav-menu a::after {
        display: none;
    }
}

/* Tablet hero alignment: keep content pushed right with background image visible */
@media (min-width: 481px) and (max-width: 968px) {
    .hero {
        background-image: url("Assets/hero-section-bg.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero-main {
        max-width: 720px;
        margin-left: auto;
        text-align: left;
        transform: translateX(40px);
    }
}

@media (min-width: 969px) {
    .nav-menu {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
    
    .trusted-by-section {
        margin-top: 60px;
    }
    
    .marquee-content {
        gap: 60px;
    }
    
    .marquee-gradient-left,
    .marquee-gradient-right {
        width: 60px;
    }
    
    .logo-item img {
        height: 32px;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .serve-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-container {
        min-height: 350px;
    }
    
    .card-content {
        padding: 24px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-description {
        font-size: 14px;
    }
    
    .purpose-text {
        font-size: 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .nav-menu {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 50px;
        background-image: none;
        background-color: var(--white);
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 26px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-main {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        transform: none;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .logo {
        height: 32px;
    }
    
    .nav-menu {
        gap: 16px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .trusted-by-section {
        margin-top: 50px;
        padding-top: 30px;
    }
    
    .trusted-by-text {
        font-size: 13px;
        margin-bottom: 30px;
    }
    
    .marquee-content {
        gap: 40px;
    }
    
    .marquee-gradient-left,
    .marquee-gradient-right {
        width: 40px;
    }
    
    .logo-item img {
        height: 28px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.serve-card,
.focus-item {
    animation: fadeInUp 0.6s ease-out;
}

