/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF5F15;
    --primary-dark: #CC5500;
    --primary-light: #ff7a3d;
    --text-primary: #0a0a0a;
    --text-secondary: #525252;
    --text-tertiary: #737373;
    --surface: #ffffff;
    --surface-secondary: #fafafa;
    --surface-slate: #1e293b;
    --border: #e5e5e5;
    --border-light: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--surface);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 95, 21, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 95, 21, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-mark {
    width: 36px;
    height: 36px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
    text-transform: lowercase;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    letter-spacing: -0.2px;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--text-primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

/* Hero Section */
#hero {
    padding: 140px 24px 100px;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    z-index: 2;
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.accent-text {
    color: var(--primary);
}

.hero-description {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    justify-content: center;
}

.hero-meta {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-tertiary);
    font-size: 14px;
    font-weight: 500;
}

.meta-item svg {
    color: var(--primary);
}

/* Bridge Visual - Positioned as background */
.bridge-visual-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1100px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}
.bridge-container {
    position: relative;
    width: 100%;
}

.bridge-svg {
    width: 100%;
    height: auto;
}

.pulse-circle {
    animation: pulse-grow 3s ease-in-out infinite;
}

.pulse-circle-2 {
    animation: pulse-grow 3s ease-in-out infinite 1.5s;
}

@keyframes pulse-grow {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

.satellite {
    animation: orbit-left 8s ease-in-out infinite;
}

.satellite:nth-child(4) { animation-delay: 2s; }
.satellite:nth-child(5) { animation-delay: 4s; }
.satellite:nth-child(6) { animation-delay: 6s; }

@keyframes orbit-left {
    0%, 100% {
        opacity: 0.6;
        transform: translate(0, 0);
    }
    50% {
        opacity: 1;
        transform: translate(-5px, -5px);
    }
}

.satellite-2 {
    animation: orbit-right 8s ease-in-out infinite;
}

.satellite-2:nth-child(4) { animation-delay: 2s; }
.satellite-2:nth-child(5) { animation-delay: 4s; }
.satellite-2:nth-child(6) { animation-delay: 6s; }

@keyframes orbit-right {
    0%, 100% {
        opacity: 0.6;
        transform: translate(0, 0);
    }
    50% {
        opacity: 1;
        transform: translate(5px, -5px);
    }
}

.flow-particle {
    animation: flow-across 5s ease-in-out infinite;
}

.p1 { animation-delay: 0s; }
.p2 { animation-delay: 1s; }
.p3 { animation-delay: 2s; }
.p4 { animation-delay: 3s; }
.p5 { animation-delay: 4s; }

@keyframes flow-across {
    0% {
        cx: 150;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        cx: 450;
        opacity: 0;
    }
}

.return-particle {
    animation: flow-back 6s ease-in-out infinite;
}

.r1 { animation-delay: 0.5s; }
.r2 { animation-delay: 1.5s; }
.r3 { animation-delay: 2.5s; }
.r4 { animation-delay: 3.5s; }
.r5 { animation-delay: 4.5s; }

@keyframes flow-back {
    0% {
        stroke-dasharray: 0 30;
        stroke-dashoffset: 0;
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        stroke-dasharray: 0 30;
        stroke-dashoffset: -30;
        opacity: 0;
    }
}

.return-line {
    animation: line-fade 4s ease-in-out infinite;
}

.l1 { animation-delay: 0s; }
.l2 { animation-delay: 0.8s; }
.l3 { animation-delay: 1.6s; }
.l4 { animation-delay: 2.4s; }
.l5 { animation-delay: 3.2s; }

@keyframes line-fade {
    0%, 100% {
        opacity: 0;
        stroke-width: 1.5;
    }
    50% {
        opacity: 0.5;
        stroke-width: 2;
    }
}

.connection-beam {
    animation: beam-flow 3s linear infinite;
}

.connection-beam-2 {
    animation: beam-flow 3s linear infinite 1.5s;
}

@keyframes beam-flow {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -20;
    }
}

/* Buttons */
.btn-primary {
    background: var(--text-primary);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    letter-spacing: -0.2px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 95, 21, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid var(--border);
    transition: all 0.2s ease;
    display: inline-block;
    letter-spacing: -0.2px;
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    display: inline-block;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 120px 24px;
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-intro::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-intro h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-intro p {
    font-size: 19px;
    color: var(--text-secondary);
}

/* Services Section */
#services {
    background: var(--surface-secondary);
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.service-block {
    background: var(--surface);
    padding: 48px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
}

.service-block .text-link {
    margin-top: auto;
}


.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-block:hover::before {
    opacity: 0.5;
}

.service-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 95, 21, 0.08);
    border-color: rgba(255, 95, 21, 0.2);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.service-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    opacity: 0.6;
}

.service-block h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.benefit-item {
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.benefit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

.text-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.text-link:hover {
    color: var(--primary);
}

.text-link .arrow {
    transition: transform 0.2s ease;
}

.text-link:hover .arrow {
    transform: translateX(4px);
}

.alignment-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
    margin-bottom: 64px;
}

.alignment-icon {
    flex-shrink: 0;
}

.alignment-content h4 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.alignment-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Process Section */
#process {
    background: var(--surface-slate);
    padding-top: 60px;
    color: white;
}

#process .section-intro h2,
#process .section-intro p {
    color: white;
}

#process .section-intro p {
    opacity: 0.8;
}

#process .section-intro::after {
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.5), transparent);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    padding-bottom: 64px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 48px;
    width: 2px;
    height: calc(100% - 48px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
}

.timeline-marker {
    flex-shrink: 0;
    position: relative;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 95, 21, 0.1);
    border-radius: 50%;
    animation: marker-pulse 3s ease-in-out infinite;
}

@keyframes marker-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }
}

.timeline-content {
    padding-top: 2px;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 95, 21, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
    color: white;
}

.timeline-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Creators Section */
#creators {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    overflow: hidden; /* Prevents floating grid from causing scrollbars */
}

.creators-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative; /* Necessary for mobile positioning */
}

.creators-info h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.creators-lead {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
}

.creators-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.creator-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}

.visual-mesh {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px;
}

.mesh-item {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: mesh-float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20%;
}

.mesh-item.highlighted {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.mesh-item svg {
    width: 100%;
    height: 100%;
}

/* Float Delays */
.mesh-item:nth-child(1) { animation-delay: 0s; }
.mesh-item:nth-child(2) { animation-delay: 0.3s; }
.mesh-item:nth-child(3) { animation-delay: 0.6s; }
.mesh-item:nth-child(4) { animation-delay: 0.9s; }
.mesh-item:nth-child(5) { animation-delay: 1.2s; }
.mesh-item:nth-child(6) { animation-delay: 1.5s; }
.mesh-item:nth-child(7) { animation-delay: 1.8s; }
.mesh-item:nth-child(8) { animation-delay: 2.1s; }
.mesh-item:nth-child(9) { animation-delay: 2.4s; }

@keyframes mesh-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mobile & Tablet Logic */
@media (max-width: 992px) {
    .creators-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    #creators {
        padding: 60px 0;
    }

    /* Shrink the grid and tuck it top-right */
    .creators-visual {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 140px; /* Small decorative size */
        opacity: 0.5; /* Fade slightly so it doesn't distract from text */
        pointer-events: none; /* Let clicks pass through to text/buttons */
    }

    .visual-mesh {
        gap: 8px;
        padding: 0;
    }

    .mesh-item {
        border-radius: 6px;
        padding: 15%;
    }

    .creators-info h2 {
        font-size: 32px;
        max-width: 70%; /* Give room for the floating grid */
    }

    .creators-lead {
        font-size: 16px;
    }

    .creators-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
#contact {
    background: var(--surface-slate);
    color: white;
    padding: 80px 0; /* Added padding for spacing */
}

#contact .section-intro h2,
#contact .section-intro p {
    color: white;
}

#contact .section-intro p {
    opacity: 0.8;
}

#contact .section-intro::after {
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.5), transparent);
}

/* Row 1: Form and Direct Contact side-by-side */
.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 32px auto; /* Margin bottom creates space for the timeline */
    align-items: start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.4;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.input-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.input-wrapper input,
.input-wrapper textarea,
.input-wrapper select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.2s ease;
    background: rgba(0, 0, 0, 0.2);
    color: white;
}

.input-wrapper select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.input-wrapper select option {
    background: #1e293b;
    color: white;
    padding: 12px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 95, 21, 0.15);
}

/* Floating Labels */
.input-wrapper label {
    position: absolute;
    left: 16px;
    top: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
    pointer-events: none;
    padding: 0 6px;
    font-size: 15px;
}

.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.input-wrapper select:focus + label,
.input-wrapper select:not([value=""]):valid + label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    background: var(--surface-slate);
}

.error-message {
    display: none;
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

.error-message.show {
    display: block;
}

/* Sidebar and Row 2 Card Styling */
.sidebar-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}

/* Special styling for the full-width timeline card */
.timeline-card {
    max-width: 1100px;
    margin: 0 auto;
    height: auto;
}

.sidebar-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.detail-value {
    font-size: 14px;
    color: white;
    font-weight: 600;
}

/* Horizontal Timeline Styling */
.next-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    padding: 20px 0;
}

/* The connecting line */
.next-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 95, 21, 0.3) 20%, 
        rgba(255, 95, 21, 0.3) 80%, 
        transparent 100%);
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    position: relative;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 32px;
    height: 32px;
    background: #1e293b; /* Matches section bg to "cut" the line */
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px rgba(255, 95, 21, 0.4);
}

.step-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Utility and Status */
.full-width { width: 100%; }

.form-status {
    margin-top: 20px;
    padding: 16px;
    border-radius: 10px;
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .next-steps::before {
        display: none;
    }

    .step-item {
        flex-direction: row;
        text-align: left;
    }
}

/* Footer */
footer {
    background: var(--text-primary);
    color: white;
    padding: 48px 24px;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(255, 95, 21, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .logo-mark {
    width: 36px;
    height: 36px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-top: 4px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Animations */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-layout,
    .creators-container,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .bridge-visual-wrapper {
        width: 100%;
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 72px;
        flex-direction: column;
        background: var(--surface);
        width: 100%;
        padding: 32px 24px;
        transition: 0.3s ease;
        border-top: 1px solid var(--border);
        gap: 24px;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .section-intro h2 {
        font-size: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .alignment-card {
        flex-direction: column;
        padding: 40px;
    }

    .creators-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .service-block,
    .contact-form,
    .sidebar-card {
        padding: 32px;
    }
}