/* CSS Variables & Theme */
:root {
    --primary: #EF4444;
    /* Loop bright red */
    --primary-dark: #DC2626;
    --text-dark: #333333;
    --text-main: #4A4A4A;
    --text-muted: #8E8E8E;
    --bg-main: #FFFFFF;
    --bg-alt: #FEF2F2;
    /* Light reddish */
    --border: #FEE2E2;
    --white: #FFFFFF;
    --accent-green: #BEE3D3;

    --font-head: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-ghost {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-ghost:hover {
    background-color: rgba(239, 68, 68, 0.05);
}

.btn-full {
    width: 100%;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1055;
    background-color: var(--white);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo,
.footer-brand {
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
}

.logo-z {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: 0;
    line-height: normal;
    margin: 0;
}

.logo-text {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 1rem;
    color: #475569;
    line-height: normal;
}

.logo-accent {
    font-weight: 500;
    color: #64748b;
    margin-left: 8px;
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a:not(.nav-cta) {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--primary);
}

.nav-cta {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 10px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .nav-inner {
        padding: 16px 32px;
    }
}

@media (max-width: 768px) {
    .nav-inner {
        padding: 14px 20px;
    }
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.nav-mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.mobile-link.cta {
    color: var(--primary);
}

/* Hero */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background-color: var(--white);
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(239, 68, 68, 0.06);
    color: var(--primary-dark);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-accent {
    color: var(--primary);
}

.hero-sub {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: rgba(74, 74, 74, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.06);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.01);
}

/* Value Strip */
.value-strip {
    background-color: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.value-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 16px 24px;
    background-color: var(--bg-alt);
    border-radius: 100px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    cursor: default;
    flex: 1;
    min-width: 200px;
    justify-content: center;
    white-space: nowrap;
}

.value-item:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 16px 32px rgba(239, 68, 68, 0.15);
    background-color: var(--white);
    color: var(--primary);
}

.value-item svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.value-item:hover svg {
    transform: scale(1.15);
}

/* Section Common */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.section-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Solutions */
.solutions {
    padding: 80px 0;
    background-color: var(--white);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding: 12px 4px 40px;
}

.tier-wide {
    min-width: 650px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: grid !important;
    grid-template-columns: 1fr 1px 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
    align-items: stretch;
}

.coliving-left {
    padding: 40px 48px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.coliving-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coliving-header .tier-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.coliving-header .tier-for {
    margin-bottom: 0;
}

.coliving-left .tier-name {
    font-size: 2rem;
    margin-bottom: 0;
}

.coliving-left .tier-desc {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.975rem;
    line-height: 1.7;
}

.coliving-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.coliving-plan {
    font-family: var(--font-head);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
}

.coliving-price-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.coliving-divider {
    width: 1px;
    background-color: var(--border);
    margin: 32px 0;
}

.coliving-right {
    padding: 40px 40px 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coliving-features-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.coliving-features-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 40px !important;
    flex-direction: unset !important;
}

.coliving-features-grid li {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .tier-wide {
        grid-template-columns: 1fr !important;
    }

    .coliving-divider {
        width: auto;
        height: 1px;
        margin: 0 32px;
    }

    .coliving-left,
    .coliving-right {
        padding: 32px;
    }
}

.tier-card {
    background-color: var(--bg-alt);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Icon + label on one line */
.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}

.card-header .tier-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.card-header .tier-for {
    margin-bottom: 0;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background-color: var(--white);
    border-color: var(--primary);
}

.tier-card.featured {
    border: 1px solid var(--primary);
    border-top: 3px solid var(--primary);
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.tier-card.featured:hover {
    transform: translateY(-4px);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tier-icon svg {
    width: 22px;
    height: 22px;
}

.tier-for {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.tier-name {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.tier-price {
    font-size: 1.375rem;
    font-weight: 700;
    font-family: var(--font-head);
    color: var(--primary);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}

.tier-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 4px;
}

.tier-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    flex-grow: 1;
}

.tier-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.tier-features li::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300B4F5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    flex-shrink: 0;
}

/* Relocations Dedicated Section */
.relocations {
    padding: 0;
    background-color: var(--white);
}

.relocations-card {
    display: grid !important;
    grid-template-columns: 1fr 1px 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
    align-items: stretch;
    background-color: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.relocations-left {
    padding: 40px 48px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.relocations-divider {
    width: 1px;
    background-color: var(--border);
    margin: 32px 0;
}

.relocations-right {
    padding: 40px 40px 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.relocations-desc {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.975rem;
    line-height: 1.7;
}

.relocations-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.relocations-plan {
    font-family: var(--font-head);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
}

.relocations-price-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.relocations-features-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.relocations-features-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 40px !important;
}

.relocations-features-grid li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.relocations-features-grid svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .relocations-card {
        grid-template-columns: 1fr;
    }

    .relocations-divider {
        width: auto;
        height: 1px;
        margin: 0 32px;
    }

    .relocations-left,
    .relocations-right {
        padding: 32px;
    }
}

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

/* Why Loop */
.why-loop {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.why-card {
    padding: 32px;
    border-radius: var(--radius);
    background-color: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.why-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.why-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 16px;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-muted);
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

.proof-header {
    text-align: center;
    margin-bottom: 48px;
}

.proof-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.proof-header p {
    color: var(--text-muted);
}

.logo-marquee {
    width: 100%;
    position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.logo-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    animation: scroll-logos 40s linear infinite;
}

.logo-item {
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    flex-shrink: 0;
    white-space: nowrap;
}

.logo-item span {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition);
}

.logo-item:hover span {
    opacity: 1;
    color: var(--text-dark);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

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

/* Form Section */
.form-section {
    padding: 80px 0;
    background-color: rgba(239, 68, 68, 0.04);
    color: var(--text-main);
    border-top: 1px solid rgba(239, 68, 68, 0.1);
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.form-info .section-tag {
    color: var(--primary);
    background-color: rgba(239, 68, 68, 0.08);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.form-title {
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.form-sub {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.125rem;
    font-family: var(--font-head);
    font-weight: 500;
}

.form-icon-wrap {
    width: 38px;
    height: 38px;
    background-color: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-benefit svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.form-contact {
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.form-contact p {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-phone {
    display: block;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.form-email {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
}

.form-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    color: var(--text-main);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.form-row {
    margin-bottom: 24px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    background-color: #F8FAFC;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.radio-group {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.radio-label {
    flex: 1;
    cursor: pointer;
}

.radio-label input {
    display: none;
}

.radio-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 10px;
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.radio-label:hover .radio-text {
    border-color: var(--primary);
    background-color: #F8FAFC;
}

.radio-label input:checked+.radio-text {
    background-color: rgba(239, 68, 68, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.form-card .btn-primary {
    margin-top: 16px;
    padding: 16px;
    font-size: 1.125rem;
}

.form-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 10;
}

.form-success.active {
    opacity: 1;
    pointer-events: auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-success p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border);
    color: var(--text-main);
    padding: 80px 0 32px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-brand .logo-text {
    color: #cbd5e1;
}

.footer-links {
    display: flex;
    gap: 32px;
}

/* Footer */
.footer {
    background-color: #f9fafc;
    color: var(--text-muted);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.footer-watermark {
    position: absolute;
    right: -40px;
    top: -20px;
    font-family: var(--font-head);
    font-size: 18rem;
    font-weight: 900;
    color: rgba(239, 68, 68, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -8px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.footer-logo-z {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
}

.footer-logo-text {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-muted);
}

.footer-logo-accent {
    color: var(--text-muted);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 260px;
    margin: 0;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.footer-cta-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.25s ease;
}

.footer-cta-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--primary);
}

.footer-cta-link:hover {
    color: var(--primary);
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    margin: 0;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.25s ease;
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Animations */
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

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

    .form-card {
        padding: 32px;
    }

    .tier-wide {
        flex-direction: column !important;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .value-strip-inner {
        justify-content: center;
    }

    .form-row-2,
    .form-row-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}