:root {
    --primary: #0058a3;
    --secondary: #ffcc00;
    --dark: #111111;
    --darker: #000000;
    --light: #ffffff;
    --accent: #ff6600;
    --bg: #ffcc00;
    --bg-alt: #ffffff;
    --text: #111111;
    --text-muted: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #dddddd;
    padding: 1rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo-img {
    height: 42px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    opacity: 1;
}

.btn-sm {
    padding: 0.7rem 1.5rem !important;
    font-size: 0.85rem !important;
}

.giveaway-banner {
    position: relative;
    z-index: 99;
    background: var(--secondary);
    border-bottom: 1px solid #cccccc;
    padding: 0.75rem 0;
    text-align: center;
    margin-top: 60px;
    animation: bannerGlow 3s ease-in-out infinite;
}

@keyframes bannerGlow {
}

.giveaway-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.giveaway-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.giveaway-banner strong {
    color: var(--secondary);
    letter-spacing: 1px;
}

.giveaway-banner a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

.giveaway-banner a:hover {
    color: #fff;
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--primary) 35px, var(--primary) 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--secondary) 35px, var(--secondary) 36px);
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero {
    text-align: center;
    position: relative;
    overflow: visible;
    padding: 6.5rem 0 2rem;
    background: rgba(0, 40, 80, 0.8);
    background: linear-gradient(rgba(0, 40, 80, 0.75), rgba(0, 40, 80, 0.9)), url('flooring-bg.webp') center/cover no-repeat;
    color: #ffffff;
}

.features,
.pricing {
    scroll-margin-top: 5rem;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: transparent;
    opacity: 0.15;
    animation: pulse 4s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.2); opacity: 0.25; }
}

.hero-content {
    position: relative;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.95;
    margin-bottom: 0.75rem;
    color: var(--text);
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.hero-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    letter-spacing: 8px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h1.hero-topline {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: #ffffff !important;
    animation: none !important;
    opacity: 1 !important;
}

.hero-million {
    font-size: clamp(3rem, 7vw, 5.5rem);
    display: block;
    line-height: 1;
    margin: 0.15em 0;
    color: var(--secondary);
}

.hero-subline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: #ffffff;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-cta-row {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.hero-scale-strip {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-scale-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-scale-mult {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--secondary);
    line-height: 1;
}

.hero-scale-label {
    font-size: 0.85rem;
    color: #444444;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-scale-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    color: var(--primary);
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .hero-scale-strip {
        gap: 1rem;
    }
    .hero-scale-mult {
        font-size: 2rem;
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ffffff;
    max-width: 720px;
    margin: 0 auto 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-result-line {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-subhead {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--secondary);
    font-weight: 700;
}

.hero-offer-box {
    margin: 1.5rem auto 0.5rem;
    max-width: 620px;
    background: #ffffff;
    border: 2px solid #cccccc;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero-offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}

.hero-offer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-offer-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-offer-dollar {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--primary);
    text-shadow: none;
}

.hero-offer-period {
    font-size: 1rem;
    color: #333333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-offer-divider {
    width: 2px;
    height: 70px;
    background: #dddddd;
}

.hero-offer-bonus {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-offer-discount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--secondary);
    text-shadow: none;
}

.hero-offer-detail {
    font-size: 0.9rem;
    color: #333333;
    max-width: 220px;
    line-height: 1.4;
}

.hero-offer-btn {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    letter-spacing: 2px;
}

@media (max-width: 500px) {
    .hero-offer-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-offer-divider {
        width: 60px;
        height: 2px;
    }

    .hero-offer-box {
        padding: 1.5rem;
    }
}


.pilot-offer-section {
    padding: 4rem 0;
}

.pilot-offer-trigger {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.pilot-offer-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}

.pilot-trigger-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: #f0f0f0;
    border: 1px solid #cccccc;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.pilot-trigger-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.pilot-trigger-value {
    color: var(--secondary);
    font-size: 1.2em;
}

.pilot-learn-btn {
    font-size: 1.15rem;
    padding: 1rem 3rem;
    letter-spacing: 1px;
}

.pilot-offer-reveal {
    display: none;
    margin-top: 2rem;
    animation: pilotSlideIn 0.5s ease-out;
}

.pilot-offer-reveal.active {
    display: block;
}

@keyframes pilotSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pilot-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pilot-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.pilot-orange {
    color: var(--secondary);
}

.pilot-orange-bold {
    color: var(--secondary);
    font-weight: 700;
}

.pilot-header p {
    font-size: 1.1rem;
    color: #333333;
}

.pilot-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: #111111;
    max-width: 680px;
    margin: 0 auto 1rem;
    text-align: center;
}

.pilot-intro strong {
    color: var(--dark);
}

.pilot-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem auto;
    max-width: 600px;
}

.pilot-stat {
    background: #111111;
    border: 1px solid #cccccc;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
}

.pilot-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    display: block;
}

.pilot-stat-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333333;
    margin-top: 0.25rem;
    display: block;
}

.pilot-box {
    max-width: 600px;
    margin: 1.5rem auto;
    padding: 1.5rem 2rem;
    border-radius: 16px;
}

.pilot-box-cyan {
    background: #111111;
    border: 1px solid #cccccc;
}

.pilot-box-orange {
    background: #111111;
    border: 1px solid #cccccc;
}

.pilot-box h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.pilot-list {
    font-size: 0.95rem;
    line-height: 2;
    color: #111111;
}

.pilot-list strong {
    color: var(--dark);
}

.pilot-pricing-tiers {
    font-size: 0.95rem;
    line-height: 2;
    color: #111111;
}

.pilot-pricing-tiers strong {
    color: var(--dark);
}

.pilot-price {
    color: var(--secondary);
    font-weight: 800;
}

.pilot-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #555555;
}

.pilot-why {
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
    max-width: 600px;
    margin: 2rem auto;
}

.pilot-cta-row {
    text-align: center;
    margin: 2rem 0;
}

.pilot-system-btn {
    font-size: 1rem;
    padding: 1rem 2.5rem;
}

.pilot-consult-form {
    max-width: 600px;
    margin: 2.5rem auto 0;
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 16px;
    text-align: center;
}

.pilot-consult-form h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.pilot-consult-form > p {
    font-size: 0.95rem;
    color: #444444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pilot-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pilot-form-grid input,
.pilot-form-grid select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #111111;
    border: 1px solid #dddddd;
    border-radius: 8px;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.pilot-form-grid input:focus,
.pilot-form-grid select:focus {
    border-color: var(--primary);
}

.pilot-form-grid input::placeholder {
    color: #666666;
}

.pilot-form-grid select {
    color: #666666;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%230058a3' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.pilot-form-grid select:valid {
    color: var(--dark);
}

.pilot-form-grid select option {
    background: #ffffff;
    color: #002663;
}

.pilot-submit-btn {
    width: 100%;
    font-size: 1.05rem;
    padding: 1rem;
    letter-spacing: 1px;
}

.pilot-form-success {
    margin-top: 1rem;
    padding: 1rem;
    background: #f0f0f0;
    border: 1px solid #cccccc;
    border-radius: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .pilot-stats-row {
        grid-template-columns: 1fr;
    }
    .pilot-form-grid {
        grid-template-columns: 1fr;
    }
    .pilot-offer-trigger {
        padding: 2rem 1.25rem;
    }
    .pilot-consult-form {
        padding: 1.5rem;
    }
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeIn 1s ease-out 1.1s backwards;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #0058a3;
    color: #ffffff;
    box-shadow: none;
    font-weight: 800;
}

.btn-primary::before {
    display: none;
}

.btn-primary:hover::before {
    display: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #004080;
}

.btn-secondary {
    background: #ffcc00;
    color: #111111;
    border: 2px solid #ffcc00;
}

.btn-secondary:hover {
    background: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
}

.features {
    padding: 8rem 0;
    background: var(--bg-alt);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    color: #0058a3;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    opacity: 0.7;
    margin-bottom: 4rem;
}

.home-cta-section {
    padding: 5rem 0;
}

.home-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.home-cta-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 16px;
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.3s;
}

.home-cta-card:hover {
    transform: translateY(-5px);
    border-color: #cccccc;
}

.home-cta-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}

.home-cta-accent-orange {
    background: var(--primary) !important;
}

.home-cta-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: #f0f0f0;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.home-cta-badge-orange {
    background: #e0e0e0 !important;
    color: var(--secondary) !important;
}

.home-cta-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.home-cta-sub {
    color: #444444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.home-cta-includes,
.home-cta-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #333333;
}

.home-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.home-cta-btn-orange {
    background: var(--primary) !important;
}

.home-cta-btn-orange:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.home-cta-limited {
    text-align: center;
    font-size: 0.8rem;
    color: var(--secondary);
    margin-top: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 700px) {
    .home-cta-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-card {
        padding: 2rem 1.5rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-text {
    color: var(--dark);
    opacity: 0.9;
    line-height: 1.7;
}

.portal-section {
    padding: 8rem 0;
    background: var(--bg-alt);
}

.portal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.portal-visual {
    position: relative;
    height: 400px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portal-visual::before {
    content: '🔒';
    font-size: 8rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.portal-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.portal-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.pricing {
    padding: 8rem 0;
    text-align: center;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 3rem;
    max-width: 600px;
    margin: 3rem auto;
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background: var(--secondary);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--primary);
    line-height: 1;
    margin: 1rem 0;
}

.price-subtext {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.pricing-features {
    text-align: left;
    margin: 2rem 0;
}

.pricing-feature {
    padding: 1rem;
    margin: 0.5rem 0;
    background: #f5f5f5;
    border-left: 3px solid var(--primary);
    border-radius: 4px;
}

.final-cta {
    padding: 8rem 0;
    text-align: center;
    background: var(--bg-alt);
}

.final-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
    color: var(--dark);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .portal-content {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 3rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

.hero-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-1 {
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    top: 30%;
    right: 20%;
    background: transparent;
}

[id] {
    scroll-margin-top: 5rem;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.section-body {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 750px;
}

.value-cards-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--secondary);
}

.value-cards-section .section-label {
    text-align: center;
    margin-bottom: 3rem;
}

.accordion {
    max-width: 750px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.acc-item {
    border: 1px solid #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
    cursor: pointer;
}

.acc-item.active {
    border-color: var(--c);
}

.acc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: #fffae6;
    user-select: none;
}

.acc-item.active .acc-header {
    background: #f5f5f5;
}

.acc-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.acc-title {
    flex: 1;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    text-align: left;
}

.acc-arrow {
    font-size: 1.2rem;
    color: #666666;
    transition: transform 0.3s;
}

.acc-item.active .acc-arrow {
    transform: rotate(180deg);
}

.acc-status {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.acc-status-cyan {
    background: #f0f0f0;
    color: var(--primary);
}

.acc-status-orange {
    background: #f0f0f0;
    color: var(--secondary);
}

.acc-status-purple {
    background: #fff5cc;
    color: var(--accent);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    text-align: left;
}

.acc-item.active .acc-body {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.acc-body p {
    color: #444444;
    font-size: 0.95rem;
    line-height: 1.7;
}

.acc-detail {
    display: flex;
    gap: 2rem;
    margin-top: 0.8rem;
}

.acc-stat {
    text-align: center;
}

.acc-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
}

.acc-num-cyan { color: var(--primary); }
.acc-num-orange { color: var(--secondary); }
.acc-num-purple { color: var(--accent); }

.acc-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666666;
}

.value-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #555555;
    letter-spacing: 2px;
}

.system-section {
    padding: 6rem 0;
    border-top: 1px solid #f2f2f2;
}

.system-section .section-body {
    margin-bottom: 3rem;
}

.system-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.system-feature {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.system-feature-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.system-accent-cyan {
    background: var(--primary);
}

.system-accent-orange {
    background: #ffcc00;
}

.system-feature h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.system-feature > p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.system-feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: #fff8dd;
    border-radius: 12px;
    border: 1px solid #f2f2f2;
}

.system-feature-bullets div {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.7;
}

.system-feature-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-detail {
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f2f2f2;
}

.feature-detail h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.feature-detail p {
    font-size: 0.9rem;
    color: #444444;
    line-height: 1.7;
}

.feature-highlight {
    font-weight: 600;
    color: var(--secondary) !important;
    font-style: italic;
}

.system-cta-box {
    text-align: center;
    padding: 3rem;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
}

.system-cta-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.system-cta-box p {
    font-size: 1rem;
    color: #444444;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-section {
    padding: 6rem 0;
    border-top: 1px solid #f2f2f2;
}

.payment-section .section-label {
    text-align: center;
}

.payment-section .section-heading,
.payment-section .section-body {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.payment-section .section-body {
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.comparison-col {
    padding: 2rem;
    border-radius: 16px;
}

.comparison-old {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-new {
    background: #f5f5f5;
    border: 1px solid #dddddd;
}

.comparison-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.comparison-old h4 {
    color: #ef4444;
}

.comparison-new h4 {
    color: var(--primary);
}

.comparison-item {
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 0.4rem 0;
}

.comparison-bad {
    color: rgba(239, 68, 68, 0.75);
}

.comparison-good {
    color: rgba(0, 88, 163, 0.8);
}

.payment-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.payment-detail {
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
}

.payment-detail h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--secondary);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.payment-detail p {
    font-size: 0.9rem;
    color: #444444;
    line-height: 1.7;
}

.consult-section {
    padding: 6rem 0;
    border-top: 1px solid #f2f2f2;
}

.consult-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.consult-info .section-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.consult-info .section-body {
    margin-bottom: 2rem;
}

.consult-walkaway {
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
}

.consult-walkaway h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.consult-walkaway > p {
    font-size: 0.9rem;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.consult-bullets div {
    font-size: 0.9rem;
    color: rgba(0, 88, 163, 0.7);
    line-height: 2;
}

.consult-form-card {
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 20px;
    padding: 2.5rem;
}

.consult-form-card .form-group {
    margin-bottom: 1.25rem;
}

.consult-form-card .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.consult-form-card .form-group input,
.consult-form-card .form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: #f5f5f5;
    border: 1px solid #dddddd;
    border-radius: 10px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.consult-form-card .form-group input:focus,
.consult-form-card .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px #dddddd;
}

.consult-form-card .form-group input::placeholder {
    color: #555555;
}

.consult-form-card .form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230058a3' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.consult-form-card .form-group select option {
    background: var(--bg);
    color: var(--text);
}

.consult-submit-btn {
    width: 100%;
    margin-top: 0.5rem;
}

.consult-form-success {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #f0f0f0;
    border: 1px solid #cccccc;
    border-radius: 10px;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
}

.pilot-banner-section {
    padding: 4rem 0;
}

.pilot-banner {
    padding: 3rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    text-align: center;
}

.pilot-banner h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--secondary);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.pilot-banner > p {
    font-size: 1rem;
    color: #444444;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.pilot-banner-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: left;
}

.pilot-banner-perks div {
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.8;
}

.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid #f0f0f0;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #555555;
    line-height: 1.7;
    max-width: 350px;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: #555555;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #f2f2f2;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.8rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.35;
}

.founder-ask-section {
    padding: 5rem 0;
    text-align: center;
}

.founder-ask {
    max-width: 800px;
    margin: 0 auto;
}

.founder-ask .section-heading {
    margin-bottom: 0.75rem;
}

.founder-ask .section-body {
    margin-bottom: 2.5rem;
}

.founder-ask-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.founder-ask-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #f8f8f8;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: left;
}

.founder-ask-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.founder-ask-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.founder-ask-item p {
    font-size: 0.9rem;
    color: #444444;
    line-height: 1.7;
}

.founder-ask-result {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.founder-ask-result-item {
    font-size: 0.9rem;
    color: #333333;
    text-align: left;
}

.founder-ask-result-item span {
    color: var(--primary);
    margin-right: 0.4rem;
}

@media (max-width: 768px) {
    .acc-header {
        gap: 0.6rem;
        padding: 1rem 1rem;
    }

    .acc-title {
        font-size: 1.1rem;
    }

    .acc-status {
        font-size: 0.55rem;
        padding: 0.15rem 0.4rem;
    }

    .acc-detail {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .acc-body {
        padding: 0 1rem;
    }

    .acc-item.active .acc-body {
        padding: 0 1rem 1.2rem;
    }

    .system-feature-details {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .payment-details {
        grid-template-columns: 1fr;
    }

    .consult-layout {
        grid-template-columns: 1fr;
    }

    .pilot-banner-perks {
        grid-template-columns: 1fr;
    }

    .founder-ask-items {
        grid-template-columns: 1fr;
    }

    .founder-ask-result {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
