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

body {
    font-family: 'Helvetica Neue', sans-serif;
    background: #000;
    color: white;
    scroll-behavior: smooth;
}

.hidden {
    display: none !important;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, transform 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.scrolled,
.navbar:hover {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a,
.soulful-logo {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ccc;
}

.soulful-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.soulful-logo:hover {
    color: #ccc;
}

.home-icon {
    width: 16px;
    height: 16px;
    stroke-width: 1.5;
    fill: none;
}

.home-icon path {
    stroke: currentColor;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5vw;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero.secondary-hero {
    min-height: 80vh;
    background: linear-gradient(180deg, #010101 0%, #050505 60%, #111 100%);
}

.services-hero {
    min-height: 70vh;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-tag {
    font-size: 0.9rem;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title--tight {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero-tag,
.hero-title,
.hero-description {
    margin: 0;
}

.hero.secondary-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    min-height: 2.2em;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    line-height: 1.1;
}

.hero-arrow {
    margin-top: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.hero-arrow:hover {
    transform: translateY(6px);
    color: #e63946;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    line-height: 1.6;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.primary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.primary-cta.text-link {
    padding: 0;
    border: none;
    color: #e63946;
    letter-spacing: 0.2rem;
}

.primary-cta.text-link::after {
    content: "";
    display: block;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    margin-top: 4px;
}

.primary-cta.text-link:hover {
    background: transparent;
}

.primary-cta.text-link:hover::after,
.primary-cta.text-link:focus-visible::after {
    transform: scaleX(1);
}

.primary-cta.text-link:focus-visible {
    outline: none;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.primary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.cta-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero:hover .cta-link,
.cta-link:focus-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cta-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 6px;
}

.cta-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Intro Section */
.intro {
    padding: 40px 0;
    background: linear-gradient(180deg, #000 0%, #111 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-message {
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Build Section */
.build-section {
    background: linear-gradient(180deg, #050505 0%, #0b0b0b 55%, #111 100%);
    padding: 100px 20px 120px;
}

.build-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.build-intro {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.build-kicker {
    text-transform: uppercase;
    letter-spacing: 0.32rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.build-heading,
.build-card h3 {
    color: #e63946;
    font-weight: 700;
    text-transform: uppercase;
}

.build-heading {
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: 0.14rem;
    line-height: 1.05;
}

.build-copy {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.75;
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.build-card {
    min-height: 220px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.build-card h3 {
    font-size: 0.95rem;
    letter-spacing: 0.3rem;
}

.build-card p {
    color: #fff;
    line-height: 1.7;
    font-size: 0.98rem;
    max-width: 26ch;
}

.primary-cta--brand {
    align-self: flex-start;
    background: #e63946;
    border-color: #e63946;
    border-radius: 4px;
}

.primary-cta--brand:hover {
    background: #ff4d4d;
    border-color: #ff4d4d;
}

.service-entry {
    background: #050505;
    text-align: center;
    padding: 10px 20px 20px;
}

.service-intro {
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 30px;
    font-size: 0.85rem;
}

.service-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-option {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    padding: 16px 30px;
    cursor: pointer;
    position: relative;
    flex: 1 1 300px;
    margin: 0 10px;
}

.service-option::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.service-option:hover {
    color: #fff;
}

.service-option:hover::after,
.service-option:focus-visible::after {
    transform: scaleX(1);
}

.service-option:focus-visible {
    outline: none;
}

.contact-section {
    background: linear-gradient(180deg, #050505 0%, #0b0b0b 60%, #111 100%);
    padding: 100px 20px;
}

.contact-form {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form label {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 14px;
    color: #fff;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 20px;
    border: none;
    border-radius: 4px;
    background: #e63946;
    color: #fff;
    padding: 14px 28px;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    cursor: pointer;
}

.contact-form button:hover {
    background: #ff4d4d;
}

.contact-note {
    text-align: center;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2rem;
    font-size: 0.85rem;
}

.service-form {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 420px;
    justify-content: center;
}

.service-selector {
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
}

.service-choice {
    flex: 1 1 180px;
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.22rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.service-choice:hover,
.service-choice:focus-visible {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

.service-choice.is-active {
    background: #e63946;
    border-color: #e63946;
    color: #fff;
}

.lane-selection-screen[hidden],
.wizard-container[hidden],
.wizard-path[hidden],
.wizard-step[hidden],
#finalCtaContainer[hidden] {
    display: none !important;
}

.service-choice--large {
    min-height: 88px;
    font-size: 0.9rem;
    letter-spacing: 0.28rem;
}

.lane-selection-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    gap: 24px;
}

.wizard-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wizard-progress-label {
    text-transform: uppercase;
    letter-spacing: 0.28rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

.wizard-step-container {
    min-height: 280px;
}

.wizard-path {
    display: block;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wizard-step--shared {
    gap: 18px;
}

.service-form label {
    text-transform: uppercase;
    letter-spacing: 0.24rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-top: 4px;
}

.service-form input,
.service-form select,
.service-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 15px 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
}

.service-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 48px;
    background-color: rgba(0, 0, 0, 0.6);
    background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%), linear-gradient(-45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%);
    background-position: calc(100% - 24px) 50%, calc(100% - 18px) 50%;
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
}

.service-form input::placeholder,
.service-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.service-form input::-webkit-input-placeholder,
.service-form textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.service-form textarea {
    resize: vertical;
}

.service-form input:focus,
.service-form textarea:focus,
.service-form select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.wizard-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.wizard-nav-button,
#finalCtaContainer button {
    margin-top: 0;
}

.wizard-nav-button {
    min-width: 132px;
}

.wizard-nav-button--secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

.wizard-nav-button--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

#finalCtaContainer {
    margin-left: auto;
}

@media (max-width: 768px) {
    .hero.secondary-hero .hero-title {
        min-height: 0;
    }

    .service-form {
        min-height: 0;
    }

    .lane-selection-screen {
        min-height: 0;
    }

    .service-choice--large {
        min-height: 72px;
    }

    .wizard-step-container {
        min-height: 0;
    }

    .wizard-navigation {
        flex-wrap: wrap;
    }

    .wizard-nav-button,
    #finalCtaContainer,
    #finalCtaContainer button {
        width: 100%;
    }
}

.secret-body {
    background: #000;
    color: #fff;
    margin: 0;
}

.secret-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.secret-video {
    position: absolute;
    inset: 0;
}

.secret-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.secret-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.secret-message {
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-size: 1.2rem;
    color: #fff;
}

.secret-timer {
    font-size: 2.5rem;
    letter-spacing: 0.3rem;
    color: #fff;
}

.portfolio-section {
    background: #050505;
    padding: 80px 20px 120px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.portfolio-card header p {
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.portfolio-card h2 {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
}

.portfolio-notes {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    font-size: 0.95rem;
}

.portfolio-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

.portfolio-links a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 2px;
}

.portfolio-links a:hover {
    color: #e63946;
    border-color: #e63946;
}


.wizard-section {
    background: #0b0b0b;
    padding: 100px 20px;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    max-width: 720px;
    margin: 0 auto 30px;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.wizard-form {
    display: none;
    max-width: 720px;
    margin: 0 auto;
}

.wizard-form.active {
    display: block;
}

.wizard-step {
    display: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
}

.wizard-step.active {
    display: block;
}

.wizard-step h3 {
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.wizard-step label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.wizard-step input,
.wizard-step select,
.wizard-step textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 12px 14px;
    color: #fff;
    margin-bottom: 16px;
    font-family: inherit;
    font-size: 0.95rem;
}

.wizard-step input,
.wizard-step select {
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.styled-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 48px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(10, 10, 10, 0.9);
    background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%), linear-gradient(-45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%);
    background-position: calc(100% - 25px) 50%, calc(100% - 15px) 50%;
    background-size: 10px 10px, 10px 10px;
    background-repeat: no-repeat;
    position: relative;
}

.styled-select:focus {
    border-color: rgba(255, 255, 255, 0.6);
    outline: none;
}

.styled-select::-ms-expand {
    display: none;
}

.wizard-step textarea {
    resize: vertical;
}

.wizard-step button {
    border: none;
    border-radius: 4px;
    background: #e63946;
    color: #fff;
    padding: 14px 28px;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wizard-step button:hover {
    background: #ff4d4d;
}

.wizard-confirmation {
    text-align: center;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.wizard-confirmation button {
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    padding: 12px 28px;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    border-radius: 4px;
    cursor: pointer;
}

.credibility-marquee {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    padding: 20px 0;
}

.credibility-track {
    display: flex;
    gap: 60px;
    animation: slowScroll 20s linear infinite;
}

.credibility-item {
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.about-content {
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    padding: 60px 20px 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.about-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    min-height: 220px;
}

.about-card h3 {
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    font-size: 0.85rem;
    margin-bottom: 18px;
    color: #fff;
}

.about-card p {
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
    min-height: 400px;
}

.slide {
    display: none;
    flex: 1 1 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    width: 100%;
}

.slide.active {
    display: flex;
    opacity: 1;
    position: relative;
}

.slide-text {
    flex: 1;
    padding: 20px;
}

.slide-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.slide-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.slide-text a {
    color: #ff6600;
    text-decoration: underline;
}

.slide-image {
    flex: 1;
    padding: 20px;
    text-align: center;
    position: relative;
}

.slide-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    object-fit: cover;
}

.logo-slider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
}

.logo-slider .logo-slide {
    position: absolute;
    width: 320px;
    max-width: 85%;
    height: auto;
    opacity: 0;
    animation: logoToggle 8s steps(1, end) infinite;
    animation-fill-mode: both;
}

.logo-slider .logo-slide:nth-child(1) {
    animation-delay: 0s;
}

.logo-slider .logo-slide:nth-child(2) {
    animation-delay: 4s;
}

/* Fade animation */
@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoToggle {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

@keyframes slowScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .build-section {
        padding: 80px 20px 100px;
    }

    .build-shell {
        padding: 32px 24px;
        gap: 32px;
    }

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

    .build-card {
        min-height: auto;
    }

    .primary-cta--brand {
        width: 100%;
    }

    .slide {
        flex-direction: column;
    }

    .slide-image img {
        max-width: 100%;
    }
}

/* Footer */
.footer {
    background: #050505;
    padding: 60px 20px;
    color: #ccc;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
}

.footer h3,
.footer h4 {
    color: #fff;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-brand p {
    margin: 10px 0;
}

.footer-brand a {
    color: #fff;
    text-decoration: none;
}

.footer-social {
    flex: 1;
    min-width: 260px;
}

.social-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: #ccc;
    text-decoration: none;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.social-plus {
    font-size: 1rem;
}

.footer-newsletter {
    max-width: 600px;
    margin: 40px auto 0;
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #333;
    background: transparent;
    color: #fff;
}

.footer-newsletter button {
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    background: #e63946;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-newsletter button:hover {
    background: #ff4d4d;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-newsletter form {
        flex-direction: column;
    }

    .footer-newsletter button {
        width: 100%;
    }

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