/* ========================================
   CSS - Complete Software Solutions
   Color Palette (from old site):
   - Dark Navy:    #0a1628
   - Card Dark:    #0f1f3a
   - Teal/Green:   #2dd4a8
   - Purple:       #6c5ce7 / #5b4cdb
   - White:        #ffffff
   - Light Gray:   #b0bec5
   ======================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0a1628;
    --navy-light: #0f1f3a;
    --navy-card: #111d33;
    --teal: #2dd4a8;
    --teal-dark: #1fba91;
    --purple: #6c5ce7;
    --purple-dark: #5b4cdb;
    --white: #ffffff;
    --gray: #b0bec5;
    --gray-light: #cfd8dc;
    --text: #e0e6ed;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Top Bar ---- */
.top-bar {
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(45, 212, 168, 0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---- Site Navigation ---- */
.site-nav {
    background: var(--navy-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 41px;
    z-index: 99;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-brand span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 14px 14px;
    display: block;
    transition: color 0.2s, background 0.2s;
    border-radius: 6px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.nav-links a.active {
    color: var(--teal);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--gray);
}

.nav-toggle svg {
    display: block;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 8px 0;
        gap: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 16px;
        border-radius: 0;
    }

    .nav-inner {
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .site-nav {
        top: 0;
    }
}

.top-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition);
}

.top-link:hover {
    color: var(--teal);
}

.top-link svg {
    flex-shrink: 0;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    text-align: center;
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-logo img {
    width: 160px;
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 0 40px rgba(45, 212, 168, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--teal), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Background shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--teal);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--purple);
    bottom: -50px;
    left: -80px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--teal);
    bottom: 40%;
    left: 50%;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(45, 212, 168, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 212, 168, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--gray);
    border: 2px solid transparent;
    padding: 14px 20px;
}

.btn-ghost:hover {
    color: var(--teal);
    transform: translateY(-2px);
}

.btn-card {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(108, 92, 231, 0.5);
    width: 100%;
    justify-content: center;
}

.btn-card:hover {
    background: var(--purple);
    border-color: var(--purple);
    transform: translateY(-2px);
}

/* ---- Section Styles ---- */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--teal);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ---- Business Builder (Flagship) ---- */
.builder {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.builder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), var(--purple), transparent);
}

.builder-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.builder-label {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--navy);
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.builder-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
}

.builder-tagline {
    font-size: 1.15rem;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 16px;
}

.builder-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.builder-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.builder-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
}

.builder-step strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.builder-step p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

.builder-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Builder Visual */
.builder-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.builder-graphic {
    width: 340px;
    height: 340px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.builder-orb {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 212, 168, 0.15), rgba(108, 92, 231, 0.1), transparent);
    filter: blur(30px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.builder-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 160px;
    height: 160px;
    border-color: rgba(45, 212, 168, 0.2);
    animation: spin 20s linear infinite;
}

.ring-2 {
    width: 240px;
    height: 240px;
    border-color: rgba(108, 92, 231, 0.15);
    animation: spin 30s linear infinite reverse;
}

.ring-3 {
    width: 320px;
    height: 320px;
    border-color: rgba(45, 212, 168, 0.08);
    animation: spin 40s linear infinite;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.builder-center-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 212, 168, 0.15), rgba(108, 92, 231, 0.15));
    border: 1px solid rgba(45, 212, 168, 0.25);
    border-radius: 20px;
    color: var(--teal);
    backdrop-filter: blur(10px);
}

.bg-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    color: var(--purple);
    z-index: 2;
}

.bg-icon-1 {
    top: 20px;
    left: 20px;
    animation: floatIcon 5s ease-in-out infinite;
}

.bg-icon-2 {
    top: 30px;
    right: 10px;
    animation: floatIcon 6s ease-in-out infinite 1s;
}

.bg-icon-3 {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatIcon 7s ease-in-out infinite 2s;
    color: var(--teal);
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
    .builder-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .builder-visual {
        order: -1;
    }

    .builder-graphic {
        width: 260px;
        height: 260px;
    }

    .ring-3 {
        width: 250px;
        height: 250px;
    }
}

/* ---- Ideation Engine ---- */
.engine {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.engine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), var(--teal), transparent);
}

.engine-header {
    text-align: center;
    margin-bottom: 48px;
}

.engine-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin: 16px 0 12px;
}

.engine-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.engine-app {
    max-width: 680px;
    margin: 0 auto;
}

.engine-step {
    display: none;
}

.engine-step.active {
    display: block;
    animation: fadeSlideUp 0.5s ease;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.engine-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 40px 36px;
}

.engine-step-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple);
    margin-bottom: 16px;
}

.engine-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.engine-card > p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Idea Input */
.idea-input-wrap {
    position: relative;
    margin-bottom: 20px;
}

.idea-input-wrap textarea {
    width: 100%;
    padding: 16px 18px;
    padding-right: 60px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    min-height: 140px;
    outline: none;
    transition: border-color var(--transition);
    line-height: 1.6;
}

.idea-input-wrap textarea::placeholder {
    color: rgba(176, 190, 197, 0.5);
}

.idea-input-wrap textarea:focus {
    border-color: var(--purple);
}

.voice-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 50%;
    color: var(--purple);
    cursor: pointer;
    transition: all var(--transition);
}

.voice-btn .voice-label {
    position: absolute;
    right: 52px;
    white-space: nowrap;
    font-size: 0.75rem;
    color: var(--gray);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.voice-btn:hover .voice-label {
    opacity: 1;
}

.voice-btn:hover {
    background: rgba(108, 92, 231, 0.3);
    transform: scale(1.05);
}

.voice-btn.recording {
    background: rgba(255, 82, 82, 0.2);
    border-color: #ff5252;
    color: #ff5252;
    animation: voicePulse 1.5s ease-in-out infinite;
}

@keyframes voicePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.3); }
    50% { box-shadow: 0 0 0 12px rgba(255, 82, 82, 0); }
}

.voice-status {
    font-size: 0.8rem;
    color: var(--gray);
    min-height: 20px;
    margin-top: 4px;
}

.engine-industry {
    margin-bottom: 24px;
}

.engine-industry label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.engine-industry label span {
    font-weight: 400;
    color: var(--gray);
}

.engine-industry select {
    width: 100%;
    padding: 12px 16px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0bec5' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.engine-industry select:focus {
    border-color: var(--purple);
}

.btn-engine {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* Scoring Animation */
.scoring-card {
    text-align: center;
}

.scoring-criteria {
    text-align: left;
    max-width: 360px;
    margin: 28px auto;
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.criteria-item.checked {
    opacity: 1;
}

.criteria-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    background: var(--gray);
    transition: background 0.4s ease;
}

.criteria-item.checked .criteria-dot {
    background: var(--teal);
    box-shadow: 0 0 8px rgba(45, 212, 168, 0.5);
}

.criteria-item span:nth-child(2) {
    flex: 1;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.criteria-val {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--teal);
    min-width: 30px;
    text-align: right;
}

/* Score Ring */
.hidden { display: none !important; }

.scoring-result {
    animation: fadeSlideUp 0.6s ease;
}

.score-ring-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
}

.score-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 8;
}

.score-ring-fill {
    fill: none;
    stroke: var(--teal);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 1.5s ease, stroke 0.5s ease;
}

.score-ring-fill.mid { stroke: #f59e0b; }
.score-ring-fill.low { stroke: #ef4444; }

.score-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
}

.scoring-result h3 {
    margin-bottom: 8px;
}

.scoring-result > p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.score-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    text-align: left;
    margin-bottom: 28px;
}

.breakdown-item {
    background: var(--navy);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}

.breakdown-item .bd-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breakdown-item .bd-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--teal);
    margin-top: 2px;
}

/* Pricing Paths — Contract vs Joint Venture */
.pricing-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

.pricing-path-card {
    background: rgba(15, 31, 58, 0.6);
    border: 1px solid rgba(45, 212, 168, 0.1);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.pricing-path-card:hover {
    border-color: rgba(45, 212, 168, 0.3);
    transform: translateY(-2px);
}

.pricing-path-card.pp-featured {
    border-color: rgba(108, 92, 231, 0.4);
    background: linear-gradient(135deg, rgba(15, 31, 58, 0.8), rgba(108, 92, 231, 0.08));
}

.pp-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-light);
    border: 1px solid rgba(45, 212, 168, 0.25);
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.pp-badge-hot {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    border-color: transparent;
    color: white;
}

.pp-icon {
    margin: 16px auto 12px;
    color: var(--teal);
}

.pp-featured .pp-icon {
    color: var(--purple);
}

.pp-title {
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pp-desc {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.pp-price {
    margin-bottom: 6px;
}

.pp-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
    font-family: 'Space Grotesk', sans-serif;
}

.pp-amount-jv {
    color: var(--purple);
}

.pp-plus {
    font-size: 1.2rem;
    color: var(--gray);
    margin: 0 6px;
}

.pp-equity {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--teal);
}

.pp-note {
    display: block;
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 4px;
}

.pp-savings {
    background: rgba(45, 212, 168, 0.08);
    border: 1px solid rgba(45, 212, 168, 0.15);
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    margin: 8px 0 16px;
}

.pp-details {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
}

.pp-details li {
    color: var(--gray-light);
    font-size: 0.85rem;
    padding: 5px 0 5px 20px;
    position: relative;
}

.pp-details li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.pp-select {
    width: 100%;
    justify-content: center;
}

/* Payment option grid for contract path */
.plan-payment-options {
    margin: 20px 0;
}

.plan-payment-options h4 {
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    margin-bottom: 12px;
}

.payment-option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.payment-option {
    background: rgba(15, 31, 58, 0.5);
    border: 1px solid rgba(45, 212, 168, 0.1);
    border-radius: 8px;
    padding: 14px;
    text-align: center;
}

.payment-option strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.po-price {
    display: block;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.po-note {
    display: block;
    color: var(--gray);
    font-size: 0.75rem;
}

/* Plan Result - Step 4 */
.plan-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-header h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.plan-header .plan-type {
    font-size: 0.85rem;
    color: var(--purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.plan-detail-card {
    background: var(--navy);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
}

.plan-detail-card .pd-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.plan-detail-card .pd-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.plan-detail-card .pd-value .pd-highlight {
    color: var(--teal);
}

.plan-detail-card.equity-detail {
    grid-column: 1 / -1;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.plan-includes {
    margin-bottom: 32px;
}

.plan-includes h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 12px;
}

.plan-includes ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.plan-includes li {
    font-size: 0.88rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-includes li::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232dd4a8' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

.plan-actions {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
    margin-top: 8px;
}

.plan-actions h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 6px;
}

.plan-actions > p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.plan-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-form input {
    width: 100%;
    padding: 14px 18px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color var(--transition);
}

.plan-form input::placeholder {
    color: var(--gray);
}

.plan-form input:focus {
    border-color: var(--purple);
}

@media (max-width: 768px) {
    .engine-card {
        padding: 28px 20px;
    }

    .score-breakdown,
    .plan-details {
        grid-template-columns: 1fr;
    }

    .plan-includes ul {
        grid-template-columns: 1fr;
    }

    .pricing-paths {
        grid-template-columns: 1fr;
    }

    .payment-option-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- About / What We Do ---- */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.about-card {
    background: var(--navy-card);
    border: 1px solid rgba(45, 212, 168, 0.08);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all var(--transition);
}

.about-card:hover {
    border-color: rgba(45, 212, 168, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.about-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 212, 168, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--teal);
}

.about-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.about-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---- Product Store ---- */
.store {
    padding: 100px 0;
    background: var(--navy);
}

.store-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--gray);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: var(--purple);
    color: var(--white);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    border-color: var(--purple);
    color: var(--white);
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* Product Card */
.product-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    border-color: rgba(45, 212, 168, 0.15);
}

.product-card .card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--navy);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card .card-badge.badge-flagship {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--white);
}

.product-card .card-badge.badge-popular {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--navy);
}

.product-card .card-badge.badge-business {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 212, 168, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    color: var(--teal);
}

.product-card .card-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--purple);
    margin-bottom: 6px;
}

.product-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.product-card .card-tagline {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.5;
}

.card-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

.card-price-row .currency {
    font-size: 1rem;
    color: var(--teal);
    font-weight: 600;
}

.card-price-row .amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
}

.card-price-row .period {
    font-size: 0.8rem;
    color: var(--gray);
}

.card-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}

.card-features li {
    padding: 5px 0;
    color: var(--gray-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-features li::before {
    content: '';
    width: 14px;
    height: 14px;
    min-width: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232dd4a8' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.card-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.82rem;
}

/* Product Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
}

.modal-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 50%;
    color: var(--gray);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.modal-header {
    padding: 36px 32px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-header .modal-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple);
    margin-bottom: 8px;
}

.modal-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.modal-header .modal-tagline {
    color: var(--teal);
    font-size: 0.95rem;
    font-weight: 500;
}

.modal-body {
    padding: 24px 32px;
}

.modal-body .modal-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal-body .modal-price-block {
    background: var(--navy);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 24px;
}

.modal-price-block .mp-currency {
    font-size: 1.2rem;
    color: var(--teal);
    font-weight: 600;
}

.modal-price-block .mp-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
}

.modal-price-block .mp-info {
    font-size: 0.85rem;
    color: var(--gray);
}

.modal-body .modal-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.modal-features li {
    font-size: 0.88rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232dd4a8' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

.modal-footer {
    padding: 20px 32px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-footer h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.modal-footer > p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color var(--transition);
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: var(--gray);
}

.modal-form input:focus,
.modal-form textarea:focus {
    border-color: var(--purple);
}

.modal-form textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-form .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .store-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .modal-card {
        max-height: 90vh;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .modal-body .modal-features {
        grid-template-columns: 1fr;
    }
}

/* ---- Business Integration ---- */
.integrate {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
    position: relative;
}

.integrate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), var(--purple), transparent);
}

.integrate-header {
    text-align: center;
    margin-bottom: 52px;
}

.integrate-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin: 16px 0 12px;
}

.integrate-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Two Path Cards */
.integrate-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 60px;
}

.path-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
}

.path-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.path-featured {
    border-color: var(--purple);
    background: linear-gradient(180deg, rgba(108, 92, 231, 0.06) 0%, var(--navy-card) 100%);
}

.path-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--white);
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.path-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 212, 168, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--teal);
}

.path-featured .path-icon {
    color: var(--purple);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(45, 212, 168, 0.05));
}

.path-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.path-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.path-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}

.path-features li {
    padding: 5px 0;
    color: var(--gray-light);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.path-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232dd4a8' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

.path-featured .path-features li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c5ce7' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.path-pricing {
    background: var(--navy);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.path-from {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-bottom: 4px;
}

.path-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.path-featured .path-price {
    color: var(--purple);
}

.path-note {
    display: block;
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 2px;
}

.path-btn {
    width: 100%;
    justify-content: center;
}

/* Industry Grid */
.integrate-industries {
    margin-bottom: 52px;
}

.integrate-industries h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 28px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.industry-tag {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--transition);
}

.industry-tag:hover {
    border-color: rgba(45, 212, 168, 0.15);
    transform: translateY(-2px);
}

.industry-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.industry-tag strong {
    display: block;
    color: var(--white);
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.industry-tag span {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.4;
}

/* Integration Inquiry Form */
.integrate-form-wrap {
    max-width: 640px;
    margin: 0 auto;
    animation: fadeSlideUp 0.5s ease;
}

.integrate-form-wrap.hidden {
    display: none;
}

.integrate-form-card {
    background: var(--navy-card);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius);
    padding: 40px 36px;
    text-align: center;
}

.integrate-form-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.integrate-form-card > p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.integrate-form {
    text-align: left;
}

.iform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.iform-row.full {
    grid-template-columns: 1fr;
}

.integrate-form input,
.integrate-form select,
.integrate-form textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color var(--transition);
}

.integrate-form input::placeholder,
.integrate-form textarea::placeholder {
    color: var(--gray);
}

.integrate-form input:focus,
.integrate-form select:focus,
.integrate-form textarea:focus {
    border-color: var(--purple);
}

.integrate-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0bec5' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.integrate-form textarea {
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 768px) {
    .integrate-paths {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .iform-row {
        grid-template-columns: 1fr;
    }

    .integrate-form-card {
        padding: 28px 20px;
    }
}

/* ---- Trusted By / Logo Marquee ---- */
.trusted {
    padding: 40px 0;
    background: var(--navy);
    overflow: hidden;
    border-bottom: 1px solid rgba(45, 212, 168, 0.05);
}

.trusted-label {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(176, 190, 197, 0.5);
    margin-bottom: 24px;
}

.marquee-track {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-inner {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.logo-item {
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    height: 36px;
}

.logo-item:hover {
    opacity: 0.8;
}

.logo-item svg {
    height: 30px;
    width: auto;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Stats Counter Bar ---- */
.stats-bar {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(45, 212, 168, 0.05) 0%, rgba(108, 92, 231, 0.05) 100%);
    border-top: 1px solid rgba(45, 212, 168, 0.1);
    border-bottom: 1px solid rgba(108, 92, 231, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-suffix {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

/* ---- Service Tags (enhanced about cards) ---- */
.service-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding: 0;
}

.service-tags li {
    background: rgba(45, 212, 168, 0.08);
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(45, 212, 168, 0.15);
    letter-spacing: 0.3px;
}

/* ---- Portfolio / Our Work ---- */
.portfolio {
    padding: 100px 0;
    background: var(--navy);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 28px;
}

.portfolio-item {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 212, 168, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(45, 212, 168, 0.08), rgba(108, 92, 231, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.portfolio-placeholder svg {
    stroke: var(--gray);
}

.portfolio-info {
    padding: 24px;
}

/* Valuation — Live Ticker & Full Breakdown */

/* Business card variant */
.product-card.business-card {
    border: 1px solid rgba(45, 212, 168, 0.15);
}

.industry-badge {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple);
    background: rgba(108, 92, 231, 0.12);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    font-weight: 600;
    vertical-align: middle;
}

/* Live ticker on cards */
.ticker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.ticker-price-wrap {
    display: flex;
    flex-direction: column;
}

.ticker-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    transition: color 0.3s;
}

.ticker-value.tick-up {
    animation: tickFlashUp 0.6s ease;
}

.ticker-value.tick-down {
    animation: tickFlashDown 0.6s ease;
}

@keyframes tickFlashUp {
    0% { color: var(--teal); }
    30% { color: #4aedc4; text-shadow: 0 0 8px rgba(45, 212, 168, 0.4); }
    100% { color: var(--teal); }
}

@keyframes tickFlashDown {
    0% { color: var(--teal); }
    30% { color: #ef4444; text-shadow: 0 0 8px rgba(239, 68, 68, 0.3); }
    100% { color: var(--teal); }
}

.ticker-change {
    font-size: 0.72rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.change-up { color: #2dd4a8; }
.change-down { color: #ef4444; }
.change-flat { color: var(--gray); }

.ticker-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gray);
    margin-top: 2px;
    font-weight: 600;
}

.spark-line {
    flex-shrink: 0;
    opacity: 0.8;
}

/* ---- Valuation Modal Sections ---- */
.business-link {
    display: inline-block;
    color: var(--teal);
    font-size: 0.85rem;
    margin-bottom: 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(45, 212, 168, 0.3);
    transition: border-color var(--transition);
}
.business-link:hover {
    border-color: var(--teal);
}

.val-live-header {
    background: linear-gradient(135deg, rgba(45, 212, 168, 0.08), rgba(108, 92, 231, 0.06));
    border: 1px solid rgba(45, 212, 168, 0.18);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.val-live-label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 4px;
}

.val-live-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal);
}

.val-live-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.val-industry-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple);
    background: rgba(108, 92, 231, 0.12);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.val-growth-badge {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

/* Valuation Sections */
.val-section {
    margin-bottom: 24px;
}

.val-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Financial Metrics Grid */
.val-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.val-metric {
    background: var(--navy);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vm-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    font-weight: 500;
}

.vm-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

/* Valuation Breakdown Table */
.valuation-breakdown {
    background: var(--navy);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-bottom: 8px;
}

.valuation-breakdown h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 14px;
}

.valuation-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--gray-light);
}

.valuation-row.sub {
    font-size: 0.82rem;
    color: var(--gray);
    font-style: italic;
}

.valuation-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
}

.val-amount {
    color: var(--teal);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.valuation-row.total .val-amount {
    font-size: 1.15rem;
}

.val-method-note {
    font-size: 0.72rem;
    color: var(--gray);
    font-style: italic;
    line-height: 1.5;
}

/* Risk Grid */
.risk-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* ---- NDA / Non-Compete Gate ---- */
.nda-gate {
    text-align: center;
}

.nda-lock-icon {
    margin-bottom: 16px;
    opacity: 0.9;
}

.nda-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 6px;
}

.nda-industry-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 14px;
}

.nda-intro {
    font-size: 0.88rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.nda-document {
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
    max-height: 300px;
    overflow-y: auto;
}

.nda-document::-webkit-scrollbar {
    width: 6px;
}

.nda-document::-webkit-scrollbar-track {
    background: transparent;
}

.nda-document::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.nda-doc-header {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 4px;
}

.nda-doc-date {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nda-doc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.72rem;
    color: var(--gray);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nda-doc-meta span {
    white-space: nowrap;
}

.nda-doc-section {
    margin-bottom: 16px;
}

.nda-doc-section strong {
    display: block;
    font-size: 0.82rem;
    color: var(--white);
    margin-bottom: 6px;
}

.nda-doc-section p {
    font-size: 0.78rem;
    color: var(--gray-light);
    line-height: 1.65;
    margin-bottom: 8px;
}

.nda-form {
    text-align: left;
}

.nda-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.nda-form-fields input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    background: var(--navy);
    color: var(--white);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color var(--transition);
}

.nda-form-fields input:focus {
    border-color: var(--teal);
}

.nda-form-fields input:nth-child(3) {
    grid-column: 1 / -1;
}

.nda-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.nda-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.nda-check input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--teal);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nda-check strong {
    color: var(--white);
}

.nda-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 600px) {
    .val-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .val-live-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .val-live-meta {
        align-items: flex-start;
        flex-direction: row;
        gap: 10px;
    }
    .nda-form-fields {
        grid-template-columns: 1fr;
    }
    .nda-form-fields input:nth-child(3) {
        grid-column: auto;
    }
}

.portfolio-cat {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    font-weight: 600;
}

.portfolio-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 8px 0 10px;
}

.portfolio-info p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.portfolio-tech span {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(108, 92, 231, 0.1);
    color: rgba(108, 92, 231, 0.8);
    border: 1px solid rgba(108, 92, 231, 0.15);
    font-weight: 500;
}

/* ---- Booking / Calendly Section ---- */
.booking {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
}

.booking-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.booking-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.booking-types {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-type {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition);
}

.booking-type:hover {
    border-color: rgba(45, 212, 168, 0.15);
}

.booking-type-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.booking-type strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.booking-type span {
    color: var(--gray);
    font-size: 0.82rem;
}

.booking-widget {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-embed {
    width: 100%;
    min-height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    gap: 16px;
    text-align: center;
}

.booking-placeholder p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Booking Form */
.booking-form {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 32px;
}

.booking-form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.bform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.bform-row.full {
    grid-template-columns: 1fr;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color var(--transition);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: var(--gray);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--teal);
}

.booking-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0bec5' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* ---- Client Dashboard Teaser ---- */
.dashboard-teaser {
    padding: 100px 0;
    background: var(--navy);
    overflow: hidden;
}

.dashboard-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.dashboard-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.dashboard-content > p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.dashboard-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.dashboard-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 0.92rem;
}

.dashboard-features li svg {
    flex-shrink: 0;
}

/* Dashboard Mockup */
.dash-mockup {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(800px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.dash-mockup:hover {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.dash-topbar {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 12px;
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #28ca41; }

.dash-url {
    font-size: 0.72rem;
    color: var(--gray);
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 4px;
    flex: 1;
    text-align: center;
}

.dash-body {
    display: flex;
    min-height: 280px;
}

.dash-sidebar {
    width: 52px;
    background: rgba(0, 0, 0, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-nav-item {
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
}

.dash-nav-item.active {
    background: rgba(45, 212, 168, 0.2);
    border-left: 2px solid var(--teal);
}

.dash-main {
    flex: 1;
    padding: 20px;
}

.dash-header-bar {
    height: 16px;
    width: 40%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    margin-bottom: 20px;
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.dash-mini-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 14px;
}

.dash-mini-label {
    height: 8px;
    width: 60%;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    margin-bottom: 10px;
}

.dash-mini-value {
    height: 20px;
    width: 45%;
    background: rgba(45, 212, 168, 0.15);
    border-radius: 4px;
    margin-bottom: 10px;
}

.dash-mini-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    overflow: hidden;
}

.dash-mini-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--purple));
    border-radius: 2px;
    animation: dashFill 2s ease-out forwards;
    transform-origin: left;
}

@keyframes dashFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.dash-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-row {
    height: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.dash-row:nth-child(1) { width: 100%; }
.dash-row:nth-child(2) { width: 85%; }
.dash-row:nth-child(3) { width: 70%; }

/* ---- Why CSS ---- */
.why {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.why-item {
    padding: 20px 0;
}

.why-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.why-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.why-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---- Contact ---- */
.contact {
    padding: 100px 0;
    background: var(--navy-light);
}

.contact-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.contact-logo img {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(45, 212, 168, 0.15));
}

.contact-form {
    margin-top: 8px;
    text-align: left;
}

.form-row {
    margin-bottom: 16px;
}

.form-row.full input,
.form-row.full textarea {
    width: 100%;
}

.form-row.half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color var(--transition);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--purple);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 16px;
    font-size: 1rem;
}

/* ---- Footer ---- */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
}

.footer-logo {
    width: 36px;
    height: auto;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-copy {
    color: rgba(176, 190, 197, 0.5);
    font-size: 0.8rem;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-logo img {
        width: 120px;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .form-row.half {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .booking-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-title {
        font-size: 1.8rem;
    }

    .bform-row {
        grid-template-columns: 1fr;
    }

    .dashboard-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .booking-title, .dashboard-content h2 {
        font-size: 1.5rem;
    }
}

/* ---- Scroll Animations ---- */
.about-card,
.product-card,
.why-item,
.builder-step,
.path-card,
.industry-tag,
.portfolio-item,
.stat-item,
.booking-type,
.dashboard-features li {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-card.visible,
.product-card.visible,
.why-item.visible,
.builder-step.visible,
.path-card.visible,
.industry-tag.visible,
.portfolio-item.visible,
.stat-item.visible,
.booking-type.visible,
.dashboard-features li.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.about-card:nth-child(2),
.product-card:nth-child(2),
.why-item:nth-child(2),
.industry-tag:nth-child(2),
.portfolio-item:nth-child(2),
.stat-item:nth-child(2) { transition-delay: 0.1s; }

.about-card:nth-child(3),
.product-card:nth-child(3),
.why-item:nth-child(3),
.industry-tag:nth-child(3),
.portfolio-item:nth-child(3),
.stat-item:nth-child(3) { transition-delay: 0.2s; }

.product-card:nth-child(4),
.why-item:nth-child(4),
.industry-tag:nth-child(4),
.portfolio-item:nth-child(4),
.stat-item:nth-child(4),
.about-card:nth-child(4) { transition-delay: 0.3s; }

.industry-tag:nth-child(5),
.portfolio-item:nth-child(5),
.about-card:nth-child(5) { transition-delay: 0.4s; }

.industry-tag:nth-child(6),
.portfolio-item:nth-child(6),
.about-card:nth-child(6) { transition-delay: 0.5s; }

.booking-type:nth-child(2) { transition-delay: 0.1s; }
.booking-type:nth-child(3) { transition-delay: 0.2s; }

.dashboard-features li:nth-child(2) { transition-delay: 0.1s; }
.dashboard-features li:nth-child(3) { transition-delay: 0.2s; }
.dashboard-features li:nth-child(4) { transition-delay: 0.3s; }
.dashboard-features li:nth-child(5) { transition-delay: 0.4s; }
