:root {
    --navy: #0a1628;
    --navy-light: #122340;
    --orange: #ff6b2b;
    --orange-glow: #ff8c5a;
    --cream: #f7f4ef;
    --gray: #8a8f99;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 16px 64px rgba(10, 22, 40, 0.18);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--orange);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    top: 16px;
}

.top-bar {
    background: var(--navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 100;
}

.top-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-contact {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-contact a {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: color 0.2s;
}

.top-bar-contact a:hover {
    color: var(--orange-glow);
}

.top-bar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 43, 0.15);
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--orange-glow);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(247, 244, 239, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transition: box-shadow 0.3s;
}

.main-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    gap: 16px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--orange);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover {
    background: rgba(10, 22, 40, 0.05);
}

.nav-link .chevron {
    font-size: 0.6rem;
    transition: transform 0.2s;
}

.nav-item:hover .chevron {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    pointer-events: none;
}

.nav-item:hover .dropdown,
.nav-item.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.15s;
}

.dropdown a:hover {
    background: rgba(255, 107, 43, 0.08);
    color: var(--orange);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    line-height: 1.2;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 107, 43, 0.3);
}

.btn-primary:hover {
    background: #e85a1e;
    box-shadow: 0 6px 24px rgba(255, 107, 43, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid rgba(10, 22, 40, 0.15);
}

.btn-outline:hover {
    border-color: var(--navy);
    background: rgba(10, 22, 40, 0.03);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--cream);
    z-index: 800;
    padding: 24px;
    overflow-y: auto;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
}

.mobile-nav a:hover {
    background: rgba(10, 22, 40, 0.04);
}

.hero {
    position: relative;
    background: var(--navy);
    color: var(--white);
    padding: 100px 0 120px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(18, 35, 64, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--orange-glow);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange-glow);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1 / 1;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(1.05);
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10, 22, 40, 0.75) 100%);
    pointer-events: none;
}

.hero-visual-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38d17a;
    box-shadow: 0 0 0 0 rgba(56, 209, 122, 0.7);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(56, 209, 122, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(56, 209, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(56, 209, 122, 0); }
}

.marquee-strip {
    background: var(--white);
    padding: 22px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
}

.marquee-track {
    display: flex;
    gap: 48px;
    align-items: center;
    white-space: nowrap;
    animation: marqueeScroll 32s linear infinite;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.marquee-track span:nth-child(odd) {
    color: var(--navy);
    font-weight: 600;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.section {
    padding: 96px 0;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--orange);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 620px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy-light);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-body p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.2s;
}

.service-card:hover .service-link {
    gap: 10px;
}

.materials-showcase {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.materials-showcase::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.material-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: background 0.3s, border-color 0.3s;
}

.material-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 107, 43, 0.3);
}

.material-thumb {
    width: 100%;
    height: 140px;
    border-radius: var(--radius-sm);
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    filter: saturate(0.9);
}

.material-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.material-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.material-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.spec-tag {
    background: rgba(255, 107, 43, 0.15);
    color: var(--orange-glow);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.materials-cta {
    margin-top: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--orange), rgba(255, 107, 43, 0.2));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-number {
    width: 64px;
    height: 64px;
    background: var(--white);
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--orange);
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.industries-strip {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.industry-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px 8px 8px;
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.08);
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--navy);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.industry-pill img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.industry-pill:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 12px rgba(255, 107, 43, 0.15);
    transform: translateY(-2px);
}

.cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, #e85a1e 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-section .section-inner {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-ghost {
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-section .btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.cta-inverse {
    background: var(--white);
    color: var(--orange);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-inverse:hover {
    background: var(--cream);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.appointment-section {
    background: var(--white);
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.appointment-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.appointment-info > p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 43, 0.1);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-detail span {
    font-size: 0.9rem;
    color: var(--gray);
}

.contact-detail a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.appointment-form {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.04);
}

.appointment-form h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.appointment-form > p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(10, 22, 40, 0.1);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--navy);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 43, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.file-upload-zone {
    border: 2px dashed rgba(10, 22, 40, 0.15);
    border-radius: var(--radius-sm);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: var(--white);
}

.file-upload-zone:hover {
    border-color: var(--orange);
    background: rgba(255, 107, 43, 0.02);
}

.file-upload-zone .upload-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.file-upload-zone p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.upload-hint {
    font-size: 0.78rem;
    color: rgba(10, 22, 40, 0.4);
}

.file-upload-zone input[type="file"] {
    display: none;
}

.file-selected {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 107, 43, 0.06);
    border-radius: var(--radius-sm);
    margin-top: 12px;
    font-size: 0.9rem;
}

.file-selected.visible {
    display: flex;
}

.remove-file {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-note {
    font-size: 0.78rem;
    color: var(--gray);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

.form-note a {
    color: var(--orange);
    text-decoration: underline;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.04);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(255, 107, 43, 0.15);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.testimonial-stars {
    color: #f5a623;
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray);
}

.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 22, 40, 0.06);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--orange);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--orange);
}

.faq-more {
    text-align: center;
    margin-top: 32px;
}

.main-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--orange-glow);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--orange-glow);
}

.footer-hours p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-hours p strong {
    color: var(--white);
    font-size: 0.88rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 48px;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--orange-glow);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: var(--white);
    padding: 20px 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -4px 24px rgba(10, 22, 40, 0.2);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
    min-width: 280px;
}

.cookie-banner p a {
    color: var(--orange-glow);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform 0.3s;
    text-align: center;
}

.modal-overlay.visible .modal {
    transform: scale(1);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 107, 43, 0.1);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--orange);
}

.modal h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal .btn {
    width: 100%;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .nav-desktop .nav-link {
        padding: 8px 8px;
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
        max-width: 460px;
        margin: 0 auto;
    }

    .appointment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .top-bar-contact {
        gap: 12px;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section {
        padding: 64px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .appointment-form {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .modal {
        padding: 32px 24px;
    }
}
.page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 64px 0 72px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.55);
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--orange-glow);
}

.breadcrumb-sep {
    opacity: 0.5;
}

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    max-width: 900px;
}

.page-hero-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 720px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.services-index {
    padding: 96px 0;
}

.service-detail-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 56px;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.04);
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-detail:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-detail.reverse .service-detail-media {
    order: 2;
}

.service-detail-media {
    position: relative;
    min-height: 380px;
    background: var(--navy-light);
    overflow: hidden;
}

.service-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.service-detail:hover .service-detail-media img {
    transform: scale(1.04);
}

.service-detail-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
    background: var(--orange);
    color: var(--white);
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 6px 20px rgba(255, 107, 43, 0.4);
    z-index: 2;
}

.service-detail-body {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-body h3 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.service-detail-lead {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.service-bullets li {
    position: relative;
    padding-left: 30px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--navy);
}

.service-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    background: rgba(255, 107, 43, 0.12);
    border-radius: 50%;
}

.service-bullets li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 12px;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(45deg);
}

.service-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
    flex-wrap: wrap;
}

.service-detail-price {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.01em;
}

.compare-section {
    background: var(--white);
}

.compare-table-wrap {
    margin-top: 48px;
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    background: var(--white);
}

.compare-table thead th {
    background: var(--navy);
    color: var(--white);
    text-align: left;
    padding: 18px 22px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.compare-table tbody td {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    font-size: 0.92rem;
    color: var(--navy);
    vertical-align: middle;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:nth-child(even) {
    background: rgba(10, 22, 40, 0.015);
}

.compare-table tbody td:first-child {
    font-weight: 600;
}

.compare-table tbody td a {
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
    transition: color 0.2s, border-color 0.2s;
}

.compare-table tbody td a:hover {
    color: var(--orange);
    border-color: var(--orange);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.addon-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.addon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(255, 107, 43, 0.25);
}

.addon-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 43, 0.1);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.addon-card h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.addon-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
}

.addon-price {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    padding: 6px 12px;
    border-radius: 999px;
    align-self: flex-start;
}

.services-scope {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-scope::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.scope-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    position: relative;
    z-index: 2;
}

.scope-column .section-label {
    color: var(--orange-glow);
}

.scope-column .section-title {
    color: var(--white);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 24px;
}

.scope-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.scope-list li {
    position: relative;
    padding-left: 34px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.scope-list li::before {
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 700;
}

.scope-list-yes li::before {
    content: '\2713';
    background: rgba(56, 209, 122, 0.15);
    color: #38d17a;
}

.scope-list-no li::before {
    content: '\2715';
    background: rgba(255, 107, 43, 0.15);
    color: var(--orange-glow);
}

.how-strip {
    background: var(--cream);
}

.how-strip-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
}

.how-strip-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(to right, rgba(255, 107, 43, 0.5) 0, rgba(255, 107, 43, 0.5) 8px, transparent 8px, transparent 16px);
    z-index: 0;
}

.how-strip-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.how-strip-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 24px rgba(255, 107, 43, 0.35);
}

.how-strip-step h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.how-strip-step p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.55;
}

.how-strip-cta {
    text-align: center;
    margin-top: 40px;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.metric-block {
    text-align: center;
    padding: 32px 20px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s;
}

.metric-block:hover {
    transform: translateY(-4px);
}

.metric-value {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail.reverse .service-detail-media {
        order: 0;
    }

    .service-detail-media {
        min-height: 260px;
    }

    .service-detail-body {
        padding: 32px 28px;
    }

    .scope-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-strip-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-strip-track::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 40px 0 56px;
    }

    .services-index {
        padding: 64px 0;
    }

    .how-strip-track {
        grid-template-columns: 1fr;
    }

    .service-detail-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .service-detail-footer .btn {
        width: 100%;
    }
}
.service-page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.service-page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.service-page-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(18, 35, 64, 0.9) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.service-page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-tag-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 107, 43, 0.12);
    border: 1px solid rgba(255, 107, 43, 0.25);
    color: var(--orange-glow);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-tag-live {
    background: rgba(56, 209, 122, 0.1);
    border-color: rgba(56, 209, 122, 0.3);
    color: #6ee7a3;
}

.service-page-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.service-page-hero-copy > p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-page-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-mini-stats > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-mini-stats strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-mini-stats span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.service-page-hero-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    aspect-ratio: 1 / 1;
}

.service-page-hero-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    color: var(--white);
    min-width: 190px;
}

.floating-card-top {
    top: 24px;
    right: -28px;
    animation: floatY 5s ease-in-out infinite;
}

.floating-card-bottom {
    bottom: 24px;
    left: -28px;
    animation: floatY 5s ease-in-out infinite reverse;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-bottom: 4px;
}

.floating-card-value {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}

.progress-bar {
    margin-top: 10px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(to right, var(--orange), var(--orange-glow));
    border-radius: 4px;
    animation: progressPulse 3s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.tech-section {
    padding: 96px 0;
    background: var(--cream);
}

.tech-tabs {
    margin-top: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
    overflow: hidden;
}

.tech-tab-list {
    display: flex;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    background: rgba(10, 22, 40, 0.015);
}

.tech-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 22px 24px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: var(--navy);
    border-bottom: 3px solid transparent;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
}

.tech-tab:hover {
    background: rgba(255, 107, 43, 0.04);
}

.tech-tab.active {
    background: var(--white);
    border-bottom-color: var(--orange);
}

.tech-tab-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}

.tech-tab.active .tech-tab-name {
    color: var(--orange);
}

.tech-tab-sub {
    display: block;
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 500;
}

.tech-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.tech-panel.active {
    display: grid;
}

.tech-panel-media {
    min-height: 420px;
    background: var(--navy-light);
    overflow: hidden;
}

.tech-panel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-panel-body {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-panel-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.tech-panel-body > p {
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.tech-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px 22px;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.tech-specs li {
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.tech-specs strong {
    color: var(--navy);
    font-weight: 600;
}

.tech-materials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-materials span {
    padding: 6px 14px;
    background: rgba(255, 107, 43, 0.08);
    color: var(--orange);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-section {
    padding: 96px 0;
    background: var(--white);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    align-items: stretch;
}

.tier-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1.5px solid rgba(10, 22, 40, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 43, 0.3);
}

.tier-card-featured {
    background: var(--navy);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 12px 40px rgba(255, 107, 43, 0.2);
    transform: translateY(-8px);
}

.tier-card-featured:hover {
    transform: translateY(-14px);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.tier-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.tier-card-featured .tier-name {
    color: var(--white);
}

.tier-badge {
    padding: 5px 12px;
    background: rgba(10, 22, 40, 0.06);
    color: var(--navy);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tier-badge-hot {
    background: var(--orange);
    color: var(--white);
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.tier-price-value {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.03em;
    line-height: 1;
}

.tier-card-featured .tier-price-value {
    color: var(--orange-glow);
}

.tier-price-unit {
    font-size: 0.88rem;
    color: var(--gray);
    font-weight: 500;
}

.tier-card-featured .tier-price-unit {
    color: rgba(255, 255, 255, 0.6);
}

.tier-time {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.tier-card-featured .tier-time {
    color: var(--orange-glow);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.tier-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex: 1;
}

.tier-features li {
    position: relative;
    padding-left: 26px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--navy);
}

.tier-card-featured .tier-features li {
    color: rgba(255, 255, 255, 0.8);
}

.tier-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(-45deg);
}

.tier-card-featured .tier-features li::before {
    border-color: var(--orange-glow);
}

.tier-btn {
    width: 100%;
}

.tier-card-featured .tier-btn {
    background: var(--orange);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 16px rgba(255, 107, 43, 0.4);
}

.tier-card-featured .tier-btn:hover {
    background: #e85a1e;
}

.tier-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.95rem;
    color: var(--gray);
}

.tier-note a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
    transition: border-color 0.2s;
}

.tier-note a:hover {
    border-color: var(--orange);
}

.timing-section {
    background: var(--cream);
}

.timing-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
}

.timing-cta {
    margin-top: 28px;
}

.timing-track {
    position: relative;
    padding-left: 8px;
}

.timing-track::before {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 21px;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange) 0%, rgba(255, 107, 43, 0.15) 100%);
}

.timing-item {
    display: flex;
    gap: 24px;
    padding-bottom: 28px;
    position: relative;
}

.timing-item:last-child {
    padding-bottom: 0;
}

.timing-marker {
    flex-shrink: 0;
    width: 28px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    position: relative;
    z-index: 1;
}

.timing-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(255, 107, 43, 0.15);
}

.timing-dot-end {
    background: var(--navy);
    box-shadow: 0 0 0 5px rgba(10, 22, 40, 0.12);
}

.timing-content {
    flex: 1;
}

.timing-time {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.timing-content h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.timing-content p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.65;
}

.usecase-section {
    background: var(--white);
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.usecase-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.usecase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: var(--shadow-sm);
}

.usecase-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(255, 107, 43, 0.35);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.usecase-card h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.usecase-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.usecase-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
}

.quality-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quality-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.quality-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.quality-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-copy .section-label {
    color: var(--orange-glow);
}

.quality-copy .section-title {
    color: var(--white);
}

.quality-copy .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.quality-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    counter-reset: qc;
}

.quality-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.quality-num {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange-glow);
    background: rgba(255, 107, 43, 0.12);
    border: 1px solid rgba(255, 107, 43, 0.25);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
}

.quality-list h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.quality-list p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.band-section {
    padding: 72px 0;
    background: var(--white);
}

.band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    color: var(--white);
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.band-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}

.band-copy {
    flex: 1;
    min-width: 280px;
    position: relative;
    z-index: 2;
}

.band-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.band-copy p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 560px;
}

.band-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.related-section {
    padding: 96px 0;
    background: var(--cream);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.related-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.related-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.6s;
}

.related-card:hover img {
    transform: scale(1.05);
}

.related-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-body p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.related-link {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.88rem;
}

@media (max-width: 1024px) {
    .service-page-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-page-hero-media {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .floating-card-top {
        right: -12px;
    }

    .floating-card-bottom {
        left: -12px;
    }

    .tech-panel.active {
        grid-template-columns: 1fr;
    }

    .tech-panel-media {
        min-height: 260px;
    }

    .tech-panel-body {
        padding: 32px 28px;
    }

    .tier-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .tier-card-featured {
        transform: none;
    }

    .tier-card-featured:hover {
        transform: translateY(-6px);
    }

    .timing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quality-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quality-media {
        aspect-ratio: 16 / 10;
    }

    .band-inner {
        padding: 32px;
    }
}

@media (max-width: 640px) {
    .service-page-hero {
        padding: 48px 0 64px;
    }

    .hero-mini-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tech-tab-list {
        flex-direction: column;
    }

    .tech-tab {
        border-bottom: none;
        border-left: 3px solid transparent;
        text-align: left;
    }

    .tech-tab.active {
        border-left-color: var(--orange);
        border-bottom-color: transparent;
    }

    .tech-specs li {
        flex-direction: column;
        gap: 4px;
    }

    .band-inner {
        padding: 28px 24px;
    }

    .band-actions {
        width: 100%;
    }

    .band-actions .btn {
        flex: 1;
        min-width: 140px;
    }

    .floating-card {
        padding: 10px 14px;
        min-width: 160px;
    }
}
.datasheet-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.datasheet-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.datasheet-hero::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.datasheet-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.breadcrumbs-dark {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
}

.breadcrumbs-dark a {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs-dark a:hover {
    color: var(--orange-glow);
}

.datasheet-tagline {
    margin-bottom: 20px;
}

.datasheet-rev {
    display: inline-block;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange-glow);
    padding: 6px 14px;
    border: 1px solid rgba(255, 107, 43, 0.3);
    border-radius: 4px;
    background: rgba(255, 107, 43, 0.08);
}

.datasheet-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.datasheet-hero-copy > p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.datasheet-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.datasheet-hero-specs {
    position: relative;
}

.spec-sheet {
    background: rgba(10, 22, 40, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    font-family: 'Space Grotesk', monospace;
}

.spec-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.spec-sheet-live {
    color: #6ee7a3;
    font-size: 0.72rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 16px;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-key {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    text-align: right;
}

.spec-row-highlight {
    background: rgba(255, 107, 43, 0.1);
    margin: 0 -12px;
    padding: 12px;
    border-radius: 6px;
    border-bottom: none;
    margin-top: 8px;
}

.spec-row-highlight .spec-key {
    color: var(--orange-glow);
}

.spec-row-highlight .spec-value {
    color: var(--orange-glow);
    font-size: 1.05rem;
}

.capability-section {
    background: var(--cream);
}

.capability-legend {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--gray);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.legend-bar {
    display: block;
    width: 40px;
    height: 8px;
    border-radius: 4px;
}

.capability-matrix {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.matrix-row {
    display: grid;
    grid-template-columns: 1.6fr repeat(5, 1fr) 0.8fr;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    min-height: 68px;
    transition: background 0.2s;
}

.matrix-row:last-child {
    border-bottom: none;
}

.matrix-row:not(.matrix-head):hover {
    background: rgba(255, 107, 43, 0.03);
}

.matrix-head {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    min-height: 52px;
}

.matrix-head .matrix-cell {
    color: rgba(255, 255, 255, 0.7);
}

.matrix-cell {
    padding: 12px 8px;
    font-size: 0.9rem;
    color: var(--navy);
}

.matrix-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.matrix-label strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
}

.matrix-label span {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.score-bar {
    display: block;
    height: 10px;
    border-radius: 5px;
    max-width: 90px;
}

.score-1 { width: 20%; background: #e8e5e0; }
.score-2 { width: 40%; background: #ffe0cc; }
.score-3 { width: 60%; background: #ffb187; }
.score-4 { width: 80%; background: #ff8c5a; }
.score-5 { width: 100%; background: #ff6b2b; }

.score-text {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--orange);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.capability-note {
    margin-top: 24px;
    font-size: 0.92rem;
    color: var(--gray);
}

.capability-note a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
    transition: border-color 0.2s;
}

.capability-note a:hover {
    border-color: var(--orange);
}

.tolerance-section {
    background: var(--white);
}

.tolerance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.tolerance-diagram {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tolerance-tier {
    padding: 24px 28px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tolerance-tier:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.tolerance-tier-critical {
    background: rgba(255, 107, 43, 0.08);
    border-left-color: #ff6b2b;
}

.tolerance-tier-standard {
    background: rgba(255, 107, 43, 0.04);
    border-left-color: #ffb187;
}

.tolerance-tier-loose {
    background: rgba(10, 22, 40, 0.03);
    border-left-color: rgba(10, 22, 40, 0.3);
}

.tolerance-tier-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    gap: 16px;
    flex-wrap: wrap;
}

.tolerance-tier-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy);
}

.tolerance-tier-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--orange);
}

.tolerance-tier p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.tolerance-note {
    margin-top: 8px;
    padding: 20px 24px;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    line-height: 1.65;
}

.tolerance-note strong {
    color: var(--orange-glow);
    display: block;
    margin-bottom: 4px;
}

.application-section {
    background: var(--cream);
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.application-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.application-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.application-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy-light);
}

.application-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.application-card:hover .application-media img {
    transform: scale(1.05);
}

.application-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.application-industry {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
    align-self: flex-start;
    margin-bottom: 12px;
}

.application-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.application-body > p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.application-stats {
    display: flex;
    gap: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
}

.application-stats > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.application-stats strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.application-stats span {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.validation-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.validation-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.validation-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.validation-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.validation-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.validation-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 107, 43, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    min-width: 120px;
}

.validation-badge-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange-glow);
    line-height: 1;
    letter-spacing: -0.03em;
}

.validation-badge-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    font-weight: 600;
}

.validation-copy .section-label {
    color: var(--orange-glow);
}

.validation-copy .section-title {
    color: var(--white);
}

.validation-copy .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.validation-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.validation-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.validation-item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 107, 43, 0.12);
    border: 1px solid rgba(255, 107, 43, 0.25);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
}

.validation-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.validation-item p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.process-compare-section {
    background: var(--white);
}

.process-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    align-items: stretch;
}

.process-compare-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(10, 22, 40, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.process-compare-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 43, 0.3);
}

.process-compare-featured {
    background: var(--navy);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 12px 40px rgba(255, 107, 43, 0.18);
    transform: translateY(-8px);
}

.process-compare-featured:hover {
    transform: translateY(-14px);
}

.process-compare-head {
    padding: 28px 32px 20px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.process-compare-featured .process-compare-head {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.process-compare-head h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.process-compare-featured .process-compare-head h3 {
    color: var(--orange-glow);
}

.process-compare-head span {
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 500;
}

.process-compare-featured .process-compare-head span {
    color: rgba(255, 255, 255, 0.6);
}

.process-compare-body {
    padding: 24px 32px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.process-compare-lead {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(10, 22, 40, 0.12);
}

.process-compare-featured .process-compare-lead {
    color: rgba(255, 255, 255, 0.75);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.process-compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    flex: 1;
}

.process-compare-list li {
    position: relative;
    padding-left: 26px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--navy);
}

.process-compare-featured .process-compare-list li {
    color: rgba(255, 255, 255, 0.8);
}

.process-compare-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(-45deg);
}

.process-compare-featured .process-compare-list li::before {
    border-color: var(--orange-glow);
}

.process-compare-use {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.55;
    padding-top: 16px;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
}

.process-compare-featured .process-compare-use {
    color: rgba(255, 255, 255, 0.6);
    border-top-color: rgba(255, 255, 255, 0.1);
}

.process-compare-use strong {
    color: var(--navy);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.process-compare-featured .process-compare-use strong {
    color: var(--white);
}

.spec-band-section {
    padding: 72px 0;
    background: var(--cream);
}

.spec-band {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.spec-band-col {
    text-align: center;
}

.spec-band-value {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.03em;
    line-height: 1;
}

.spec-band-unit {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.spec-band-label {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
    margin-top: 12px;
}

.spec-band-divider {
    width: 1px;
    height: 60px;
    background: rgba(10, 22, 40, 0.08);
}

@media (max-width: 1024px) {
    .datasheet-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .spec-sheet {
        max-width: 520px;
    }

    .matrix-row {
        grid-template-columns: 1.4fr repeat(5, 1fr) 0.8fr;
        padding: 0 16px;
        font-size: 0.85rem;
    }

    .tolerance-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .validation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .validation-media {
        aspect-ratio: 16 / 10;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .process-compare-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-compare-featured {
        transform: none;
    }

    .process-compare-featured:hover {
        transform: translateY(-6px);
    }

    .spec-band {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 40px 32px;
    }

    .spec-band-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .capability-matrix {
        overflow-x: auto;
    }

    .matrix-row {
        min-width: 720px;
    }
}

@media (max-width: 640px) {
    .datasheet-hero {
        padding: 48px 0 64px;
    }

    .spec-sheet {
        padding: 22px 20px;
    }

    .datasheet-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .datasheet-hero-actions .btn {
        width: 100%;
    }

    .spec-band {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .spec-band-divider {
        display: block;
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }

    .tolerance-tier-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .application-stats {
        flex-direction: column;
        gap: 12px;
    }
}
.run-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.run-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.run-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(18, 35, 64, 0.85) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.run-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.run-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 107, 43, 0.1);
    border: 1px solid rgba(255, 107, 43, 0.25);
    border-radius: 999px;
    color: var(--orange-glow);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.run-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 0 rgba(255, 107, 43, 0.7);
    animation: pulseDot 2s infinite;
}

.run-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.run-hero-copy > p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.run-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.run-hero-panel {
    background: rgba(10, 22, 40, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.run-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.run-panel-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6ee7a3;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.run-panel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 8px rgba(110, 231, 163, 0.8);
}

.run-panel-gauge {
    margin-bottom: 24px;
}

.run-gauge-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-weight: 500;
}

.run-gauge-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.run-gauge-fill {
    height: 100%;
    background: linear-gradient(to right, var(--orange), var(--orange-glow));
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(255, 107, 43, 0.5);
}

.run-gauge-meta {
    display: flex;
    justify-content: space-between;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.run-panel-rows {
    display: flex;
    flex-direction: column;
}

.run-panel-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 16px;
}

.run-panel-row:last-child {
    border-bottom: none;
}

.run-panel-key {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.run-panel-val {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    text-align: right;
}

.run-panel-row-highlight {
    background: rgba(255, 107, 43, 0.08);
    margin: 4px -12px 0;
    padding: 12px;
    border-radius: 6px;
    border-bottom: none;
}

.run-panel-row-highlight .run-panel-key {
    color: var(--orange-glow);
}

.run-panel-row-highlight .run-panel-val {
    color: var(--orange-glow);
    font-size: 1.05rem;
}

.capacity-section {
    background: var(--cream);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.fleet-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.fleet-count {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}

.fleet-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--navy);
}

.fleet-detail {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.fleet-bar {
    height: 6px;
    background: rgba(10, 22, 40, 0.06);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.fleet-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(to right, var(--orange), var(--orange-glow));
    border-radius: 3px;
}

.fleet-bar-label {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-ladder-section {
    background: var(--white);
}

.ladder-table {
    margin-top: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.ladder-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.9fr 1.6fr;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 18px 24px;
    gap: 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ladder-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.9fr 1.6fr;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    align-items: center;
    transition: background 0.2s;
}

.ladder-row:last-child {
    border-bottom: none;
}

.ladder-row:not(.ladder-row-hot):hover {
    background: rgba(255, 107, 43, 0.03);
}

.ladder-row-hot {
    background: rgba(255, 107, 43, 0.06);
    position: relative;
}

.ladder-row-hot::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--orange);
}

.ladder-cell {
    font-size: 0.92rem;
    color: var(--navy);
    line-height: 1.5;
}

.ladder-cell strong {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
}

.ladder-discount {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: rgba(10, 22, 40, 0.06);
    color: var(--navy);
}

.ladder-discount-mid {
    background: rgba(255, 107, 43, 0.12);
    color: var(--orange);
}

.ladder-discount-hot {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 43, 0.35);
}

.ladder-discount-max {
    background: var(--navy);
    color: var(--orange-glow);
}

.ladder-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.ladder-note {
    padding: 18px 20px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.55;
    border-left: 3px solid var(--orange);
}

.ladder-note strong {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 2px;
}

.traceability-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.traceability-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.traceability-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.traceability-copy .section-label {
    color: var(--orange-glow);
}

.traceability-copy .section-title {
    color: var(--white);
}

.traceability-copy .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.traceability-flow {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.traceability-flow::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 26px;
    bottom: 26px;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange) 0%, rgba(255, 107, 43, 0.15) 100%);
}

.trace-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 16px 0;
    position: relative;
}

.trace-step-num {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 107, 43, 0.15);
    border: 1px solid rgba(255, 107, 43, 0.3);
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange-glow);
    position: relative;
    z-index: 1;
}

.trace-step-body h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.trace-step-body p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
}

.schedule-section {
    background: var(--white);
}

.gantt {
    margin-top: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.gantt-header {
    display: grid;
    grid-template-columns: 240px 1fr;
    background: var(--navy);
    padding: 16px 24px;
    align-items: center;
    gap: 16px;
}

.gantt-label-col {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.gantt-days {
    display: flex;
    justify-content: space-between;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
}

.gantt-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    padding: 16px 24px;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    transition: background 0.2s;
}

.gantt-row:last-child {
    border-bottom: none;
}

.gantt-row:hover {
    background: rgba(255, 107, 43, 0.02);
}

.gantt-row .gantt-label-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-transform: none;
    letter-spacing: 0;
}

.gantt-row .gantt-label-col strong {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: none;
}

.gantt-row .gantt-label-col span {
    font-size: 0.72rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.gantt-track {
    position: relative;
    height: 32px;
    background: rgba(10, 22, 40, 0.025);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.gantt-bar {
    position: absolute;
    top: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-glow) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: var(--white);
    font-family: 'Space Grotesk', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 107, 43, 0.25);
    transition: filter 0.2s;
}

.gantt-bar:hover {
    filter: brightness(1.08);
}

.gantt-bar-main {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    box-shadow: 0 2px 8px rgba(10, 22, 40, 0.25);
}

.gantt-bar-alt {
    background: linear-gradient(135deg, #ff8c5a 0%, #ffb187 100%);
}

.gantt-bar-soft {
    background: rgba(255, 107, 43, 0.55);
}

.case-section {
    background: var(--cream);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.case-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.case-card-featured {
    border-color: var(--orange);
    box-shadow: 0 8px 32px rgba(255, 107, 43, 0.15);
}

.case-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background: var(--navy-light);
}

.case-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.case-card:hover .case-media img {
    transform: scale(1.05);
}

.case-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.case-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.case-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.case-body > p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
}

.case-metrics > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.case-metrics strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1;
}

.case-card-featured .case-metrics strong {
    color: var(--orange);
}

.case-metrics span {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.qa-workflow-section {
    background: var(--white);
}

.qa-workflow-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.qa-workflow-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.qa-workflow-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qa-gates {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.qa-gate {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 22px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
}

.qa-gate:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.qa-gate-num {
    flex-shrink: 0;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    padding-top: 2px;
    min-width: 55px;
}

.qa-gate-body h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--navy);
}

.qa-gate-body p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

.materials-volume-section {
    background: var(--cream);
}

.volume-materials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.volume-material {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.volume-material:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.3);
}

.volume-material-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.volume-material-stock {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.volume-material-status {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(56, 209, 122, 0.1);
    color: #1e9e56;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.volume-material-status-low {
    background: rgba(255, 107, 43, 0.1);
    color: var(--orange);
}

.volume-materials-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.92rem;
    color: var(--gray);
}

.volume-materials-note a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
}

.volume-materials-note a:hover {
    border-color: var(--orange);
}

@media (max-width: 1024px) {
    .run-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .run-hero-panel {
        max-width: 520px;
    }

    .ladder-head,
    .ladder-row {
        grid-template-columns: 1fr 1fr;
    }

    .ladder-head .ladder-cell:nth-child(4),
    .ladder-head .ladder-cell:nth-child(5),
    .ladder-row .ladder-cell:nth-child(4),
    .ladder-row .ladder-cell:nth-child(5) {
        display: none;
    }

    .ladder-notes {
        grid-template-columns: 1fr;
    }

    .traceability-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gantt-header,
    .gantt-row {
        grid-template-columns: 180px 1fr;
    }

    .qa-workflow-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .qa-workflow-media {
        aspect-ratio: 16 / 10;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .gantt-header,
    .gantt-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gantt-days {
        font-size: 0.65rem;
    }

    .gantt-bar {
        font-size: 0.68rem;
        padding: 0 8px;
    }
}

@media (max-width: 640px) {
    .run-hero {
        padding: 48px 0 64px;
    }

    .run-hero-panel {
        padding: 22px 20px;
    }

    .run-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .run-hero-actions .btn {
        width: 100%;
    }

    .ladder-head,
    .ladder-row {
        grid-template-columns: 1fr;
    }

    .ladder-head .ladder-cell:not(:first-child),
    .ladder-row .ladder-cell:not(:first-child) {
        display: none;
    }

    .ladder-head .ladder-cell:nth-child(2),
    .ladder-row .ladder-cell:nth-child(2) {
        display: block;
    }

    .case-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .qa-gate {
        flex-direction: column;
        gap: 8px;
    }

    .qa-gate-num {
        min-width: auto;
    }
}
.mat-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.mat-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 107, 43, 0.14) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(255, 140, 90, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.mat-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.mat-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    max-width: 800px;
}

.mat-hero-copy > p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.mat-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
}

.mat-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mat-stat-num {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.03em;
    line-height: 1;
}

.mat-stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.mat-catalog {
    padding: 96px 0;
    background: var(--cream);
}

.mat-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 6px;
    background: var(--white);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
    width: fit-content;
    max-width: 100%;
}

.mat-filter-btn {
    padding: 10px 20px;
    border-radius: 999px;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.mat-filter-btn:hover {
    color: var(--navy);
    background: rgba(10, 22, 40, 0.04);
}

.mat-filter-btn.active {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 43, 0.3);
}

.mat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.mat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.04);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 43, 0.25);
}

.mat-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 14px 20px 0;
    position: relative;
    z-index: 2;
}

.mat-card-code {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mat-card-family {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    padding: 4px 10px;
    border-radius: 999px;
}

.mat-card-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    background: var(--navy);
    padding: 4px 10px;
    border-radius: 999px;
    margin-left: auto;
}

.mat-card-badge-hot {
    background: var(--orange);
}

.mat-card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy-light);
    margin: 12px 0 0;
}

.mat-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.mat-card:hover .mat-card-media img {
    transform: scale(1.05);
}

.mat-card-body {
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mat-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    line-height: 1.25;
}

.mat-card-desc {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.mat-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 14px 0;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    margin-bottom: 14px;
}

.mat-props > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.mat-props span {
    font-size: 0.65rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mat-props strong {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mat-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.mat-price {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--orange);
}

.mat-process {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
    background: rgba(10, 22, 40, 0.06);
    padding: 4px 10px;
    border-radius: 999px;
}

.mat-empty {
    padding: 48px 24px;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(10, 22, 40, 0.15);
}

.mat-empty p {
    font-size: 0.95rem;
    color: var(--gray);
}

.mat-empty a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
}

.mat-compare-section {
    background: var(--white);
}

.mat-compare-wrap {
    margin-top: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.mat-compare-row {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    padding: 16px 24px;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    transition: background 0.2s;
}

.mat-compare-row:last-child {
    border-bottom: none;
}

.mat-compare-row:not(.mat-compare-head):hover {
    background: rgba(255, 107, 43, 0.03);
}

.mat-compare-head {
    background: var(--navy);
    padding: 18px 24px;
}

.mat-compare-head .mat-compare-cell {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mat-compare-head .mat-compare-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.mat-compare-cell {
    font-size: 0.9rem;
    color: var(--navy);
    line-height: 1.4;
}

.mat-compare-cell strong {
    color: var(--orange);
    font-weight: 700;
}

.mat-compare-label {
    font-weight: 600;
    color: var(--navy);
}

.mat-compare-row-foot {
    background: rgba(10, 22, 40, 0.02);
    font-family: 'Space Grotesk', monospace;
}

.mat-compare-row-foot .mat-compare-cell {
    font-family: 'Space Grotesk', monospace;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.mat-chooser-section {
    background: var(--cream);
}

.chooser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.chooser-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.chooser-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s;
}

.chooser-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 43, 0.25);
}

.chooser-card:hover::before {
    transform: scaleY(1);
}

.chooser-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 43, 0.08);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.chooser-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.chooser-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.chooser-card p strong {
    color: var(--navy);
    font-weight: 700;
}

.chooser-link {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    transition: gap 0.2s;
}

.mat-sustainability-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 96px 0;
}

.mat-sustainability-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.sustainability-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sustainability-copy .section-label {
    color: var(--orange-glow);
}

.sustainability-copy .section-title {
    color: var(--white);
}

.sustainability-copy .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.sust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sust-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sust-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.03em;
    line-height: 1;
}

.sust-stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.45;
}

.sustainability-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.sustainability-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sust-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 107, 43, 0.3);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 130px;
}

.sust-badge-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange-glow);
    line-height: 1;
    letter-spacing: -0.03em;
}

.sust-badge-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.mat-ordering-section {
    background: var(--white);
    padding: 96px 0;
}

.ordering-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.ordering-path {
    display: flex;
    gap: 20px;
    padding: 28px 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
    align-items: flex-start;
}

.ordering-path:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.ordering-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 107, 43, 0.4);
    letter-spacing: -0.02em;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.ordering-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ordering-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.35;
}

.ordering-body p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

.ordering-link {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.ordering-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sustainability-media {
        aspect-ratio: 16 / 10;
        max-width: 520px;
    }

    .mat-compare-row {
        grid-template-columns: 1.4fr repeat(4, 1fr);
        padding: 14px 18px;
        gap: 10px;
    }

    .mat-compare-cell {
        font-size: 0.82rem;
    }
}

@media (max-width: 768px) {
    .mat-compare-wrap {
        overflow-x: auto;
    }

    .mat-compare-row {
        min-width: 640px;
    }

    .mat-filter {
        border-radius: var(--radius-md);
        width: 100%;
    }

    .mat-filter-btn {
        font-size: 0.82rem;
        padding: 8px 14px;
    }
}

@media (max-width: 640px) {
    .mat-hero {
        padding: 48px 0 64px;
    }

    .mat-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .mat-catalog {
        padding: 64px 0;
    }

    .sust-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sustainability-media {
        aspect-ratio: 1 / 1;
    }

    .ordering-path {
        flex-direction: column;
        gap: 10px;
    }
}
.ind-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.ind-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ind-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at top, black 0%, transparent 75%);
}

.ind-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.ind-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 24px;
}

.ind-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.ind-hero-copy > p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.ind-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ind-hero-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ind-tile {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
    cursor: default;
}

.ind-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.35);
    background: rgba(255, 107, 43, 0.06);
}

.ind-tile-icon {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1;
}

.ind-tile-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.ind-tile-count {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sector-switcher {
    background: var(--cream);
}

.sector-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    margin-top: 48px;
    align-items: start;
}

.sector-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    top: 96px;
}

.sector-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: var(--white);
    border: 1.5px solid rgba(10, 22, 40, 0.06);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: transform 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.sector-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s;
}

.sector-btn:hover {
    border-color: rgba(255, 107, 43, 0.25);
    transform: translateX(4px);
}

.sector-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.15);
}

.sector-btn.active::before {
    transform: scaleY(1);
}

.sector-btn-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.sector-btn-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.sector-btn-text strong {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.2s;
}

.sector-btn.active .sector-btn-text strong {
    color: var(--white);
}

.sector-btn-text small {
    font-size: 0.78rem;
    color: var(--gray);
    transition: color 0.2s;
}

.sector-btn.active .sector-btn-text small {
    color: rgba(255, 255, 255, 0.6);
}

.sector-content {
    position: relative;
}

.sector-panel {
    display: none;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.sector-panel.active {
    display: block;
    animation: sectorFade 0.4s ease;
}

@keyframes sectorFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.sector-panel-media {
    position: relative;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    background: var(--navy-light);
}

.sector-panel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sector-panel-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.65) 100%);
}

.sector-panel-tag {
    position: absolute;
    bottom: 20px;
    left: 24px;
    z-index: 2;
    padding: 6px 14px;
    background: rgba(255, 107, 43, 0.9);
    backdrop-filter: blur(8px);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sector-panel-body {
    padding: 40px;
}

.sector-panel-body h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.sector-panel-body > p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.sector-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px 22px;
    background: var(--cream);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
}

.sector-specs > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.sector-specs span {
    font-size: 0.72rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.sector-specs strong {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.sector-usecases {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-bottom: 28px;
}

.sector-usecases li {
    position: relative;
    padding-left: 26px;
    font-size: 0.92rem;
    color: var(--navy);
    line-height: 1.55;
}

.sector-usecases li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(-45deg);
}

.compliance-section {
    background: var(--white);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.compliance-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.compliance-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: var(--shadow-sm);
}

.compliance-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.compliance-sector {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy);
}

.compliance-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.compliance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compliance-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.55;
}

.compliance-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

.compliance-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.92rem;
    color: var(--gray);
}

.compliance-note a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
    transition: border-color 0.2s;
}

.compliance-note a:hover {
    border-color: var(--orange);
}

.ind-metrics-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ind-metrics-section::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ind-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ind-metric-copy .section-label {
    color: var(--orange-glow);
}

.ind-metric-copy .section-title {
    color: var(--white);
}

.ind-metric-copy .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.ind-metrics-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ind-metric-block {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: background 0.3s, border-color 0.3s;
}

.ind-metric-block:hover {
    background: rgba(255, 107, 43, 0.06);
    border-color: rgba(255, 107, 43, 0.25);
}

.ind-metric-num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
}

.ind-metric-label {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.3;
}

.ind-metric-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.ind-matrix-section {
    background: var(--cream);
}

.ind-matrix-wrap {
    margin-top: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.ind-matrix-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1.5fr 1.3fr;
    padding: 16px 24px;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    transition: background 0.2s;
}

.ind-matrix-row:last-child {
    border-bottom: none;
}

.ind-matrix-row:not(.ind-matrix-head):hover {
    background: rgba(255, 107, 43, 0.03);
}

.ind-matrix-head {
    background: var(--navy);
    padding: 18px 24px;
}

.ind-matrix-head .ind-matrix-cell {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ind-matrix-cell {
    font-size: 0.9rem;
    color: var(--navy);
    line-height: 1.45;
}

.ind-matrix-cell strong {
    font-family: var(--font-display);
    font-weight: 700;
}

.ind-case-section {
    background: var(--white);
}

.ind-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.ind-case-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 26px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.ind-case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: var(--shadow-sm);
}

.ind-case-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.ind-case-sector {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
}

.ind-case-code {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 0.06em;
}

.ind-case-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ind-case-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
    flex: 1;
}

.ind-case-cta {
    text-align: center;
    margin-top: 40px;
}

.ind-regulatory-section {
    background: var(--cream);
}

.ind-regulatory-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.ind-regulatory-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.ind-regulatory-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.regulatory-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 24px;
}

.regulatory-col {
    padding: 22px;
    border-radius: var(--radius-md);
    border-left: 3px solid;
}

.regulatory-col-yes {
    background: rgba(56, 209, 122, 0.06);
    border-left-color: #38d17a;
}

.regulatory-col-no {
    background: rgba(255, 107, 43, 0.06);
    border-left-color: var(--orange);
}

.regulatory-col h4 {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    color: var(--navy);
}

.regulatory-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.regulatory-col li {
    position: relative;
    padding-left: 22px;
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.55;
}

.regulatory-col-yes li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: #38d17a;
    font-weight: 700;
    font-size: 0.85rem;
}

.regulatory-col-no li::before {
    content: '\2715';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.85rem;
}

.regulatory-note {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
}

.regulatory-note a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
    transition: border-color 0.2s;
}

.regulatory-note a:hover {
    border-color: var(--orange);
}

@media (max-width: 1024px) {
    .ind-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ind-hero-tiles {
        grid-template-columns: repeat(3, 1fr);
    }

    .sector-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sector-menu {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
        gap: 10px;
    }

    .sector-btn {
        flex-shrink: 0;
        min-width: 220px;
    }

    .sector-btn::before {
        display: none;
    }

    .sector-btn:hover {
        transform: none;
    }

    .ind-metrics-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ind-regulatory-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ind-regulatory-media {
        aspect-ratio: 16 / 10;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .ind-matrix-wrap {
        overflow-x: auto;
    }

    .ind-matrix-row {
        min-width: 860px;
    }
}

@media (max-width: 768px) {
    .sector-specs {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sector-usecases {
        grid-template-columns: 1fr;
    }

    .sector-panel-body {
        padding: 28px 22px;
    }

    .regulatory-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ind-hero {
        padding: 48px 0 64px;
    }

    .ind-hero-tiles {
        grid-template-columns: 1fr 1fr;
    }

    .ind-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ind-hero-actions .btn {
        width: 100%;
    }

    .ind-metrics-cards {
        grid-template-columns: 1fr;
    }

    .sector-panel-media {
        aspect-ratio: 16 / 10;
    }
}
.hiw-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
}

.hiw-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hiw-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hiw-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    max-width: 820px;
}

.hiw-hero-copy > p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 720px;
    line-height: 1.7;
    margin-bottom: 64px;
}

.hiw-hero-strip {
    display: flex;
    align-items: stretch;
    gap: 8px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
    scrollbar-width: none;
}

.hiw-hero-strip::-webkit-scrollbar {
    display: none;
}

.hiw-strip-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 12px;
    flex: 1;
    min-width: 120px;
}

.hiw-strip-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: 0.1em;
}

.hiw-strip-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.hiw-strip-time {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hiw-strip-sep {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.hiw-pipeline {
    background: var(--cream);
}

.hiw-stage-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-top: 48px;
    align-items: start;
}

.hiw-stage-rail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: sticky;
    top: 96px;
}

.hiw-stage-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: transparent;
    border: 1.5px solid rgba(10, 22, 40, 0.06);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: transform 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
    position: relative;
}

.hiw-stage-btn:hover {
    border-color: rgba(255, 107, 43, 0.3);
    background: var(--white);
    transform: translateX(4px);
}

.hiw-stage-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.15);
}

.hiw-stage-btn-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.04em;
    flex-shrink: 0;
    width: 28px;
}

.hiw-stage-btn.active .hiw-stage-btn-num {
    color: var(--orange-glow);
}

.hiw-stage-btn-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.hiw-stage-btn-info strong {
    font-family: var(--font-display);
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.2s;
}

.hiw-stage-btn.active .hiw-stage-btn-info strong {
    color: var(--white);
}

.hiw-stage-btn-info small {
    font-size: 0.74rem;
    color: var(--gray);
    transition: color 0.2s;
}

.hiw-stage-btn.active .hiw-stage-btn-info small {
    color: rgba(255, 255, 255, 0.55);
}

.hiw-stage-content {
    position: relative;
}

.hiw-stage-panel {
    display: none;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.hiw-stage-panel.active {
    display: block;
    animation: hiwFade 0.4s ease;
}

@keyframes hiwFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.hiw-stage-head {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.hiw-stage-badge {
    display: inline-block;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.1);
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hiw-stage-head h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hiw-stage-lead {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 620px;
}

.hiw-stage-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hiw-stage-block {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 24px 26px;
}

.hiw-stage-block h4 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy);
    margin-bottom: 14px;
}

.hiw-stage-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hiw-stage-block li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.hiw-stage-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 7px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(-45deg);
}

.hiw-stage-block-accent {
    background: rgba(255, 107, 43, 0.06);
    border-left: 3px solid var(--orange);
}

.hiw-stage-block-accent h4 {
    color: var(--orange);
}

.hiw-stage-block-accent p {
    font-size: 0.92rem;
    color: var(--navy);
    line-height: 1.7;
    margin: 0;
}

.hiw-stage-block-accent a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
    transition: border-color 0.2s;
}

.hiw-stage-block-accent a:hover {
    border-color: var(--orange);
}

.hiw-stage-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 20px;
    border-top: 1px dashed rgba(10, 22, 40, 0.12);
}

.hiw-stage-meta > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hiw-stage-meta-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
}

.hiw-stage-meta-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.hiw-split-section {
    background: var(--white);
}

.hiw-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hiw-split-col {
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1.5px solid;
}

.hiw-split-you {
    background: rgba(10, 22, 40, 0.02);
    border-color: rgba(10, 22, 40, 0.08);
}

.hiw-split-us {
    background: rgba(255, 107, 43, 0.04);
    border-color: rgba(255, 107, 43, 0.25);
}

.hiw-split-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(10, 22, 40, 0.12);
}

.hiw-split-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.08);
}

.hiw-split-us .hiw-split-icon {
    background: rgba(255, 107, 43, 0.1);
    border-color: rgba(255, 107, 43, 0.25);
}

.hiw-split-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hiw-split-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hiw-split-list li {
    position: relative;
    padding-left: 26px;
    font-size: 0.92rem;
    color: var(--navy);
    line-height: 1.6;
}

.hiw-split-you .hiw-split-list li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(10, 22, 40, 0.5);
    font-weight: 700;
}

.hiw-split-us .hiw-split-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-weight: 700;
}

.hiw-timing-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hiw-timing-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hiw-timing-section .section-label {
    color: var(--orange-glow);
}

.hiw-timing-section .section-title {
    color: var(--white);
}

.hiw-timing-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.hiw-clock {
    margin-top: 48px;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hiw-clock-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 32px;
    padding: 16px 0;
    align-items: flex-start;
}

.hiw-clock-time {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: 0.02em;
    text-align: right;
    padding-top: 4px;
    white-space: nowrap;
}

.hiw-clock-event {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 24px;
}

.hiw-clock-row:last-child .hiw-clock-event {
    border-left-color: transparent;
}

.hiw-clock-dot {
    position: absolute;
    left: -7px;
    top: 6px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--navy);
    border: 2px solid var(--orange);
    flex-shrink: 0;
}

.hiw-clock-dot-warn {
    border-color: #f5a623;
}

.hiw-clock-dot-success {
    background: #38d17a;
    border-color: #38d17a;
    box-shadow: 0 0 0 4px rgba(56, 209, 122, 0.15);
}

.hiw-clock-event strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.hiw-clock-event p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.hiw-behind-section {
    background: var(--white);
}

.hiw-behind-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hiw-tools {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
}

.hiw-tool {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 22px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hiw-tool:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.hiw-tool-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--white);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(10, 22, 40, 0.06);
}

.hiw-tool h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--navy);
}

.hiw-tool p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

.hiw-behind-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.hiw-behind-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hiw-behind-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 107, 43, 0.3);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 180px;
}

.hiw-behind-float-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
}

.hiw-behind-float-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--orange-glow);
}

.hiw-honest-section {
    background: var(--cream);
}

.hiw-honest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.hiw-honest-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.hiw-honest-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: var(--shadow-sm);
}

.hiw-honest-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.hiw-honest-freq {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
}

.hiw-honest-pct {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.hiw-honest-card h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.35;
}

.hiw-honest-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
    flex: 1;
}

.hiw-honest-card a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
}

.hiw-honest-card a:hover {
    border-color: var(--orange);
}

.hiw-prep-section {
    background: var(--white);
}

.hiw-prep-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
}

.hiw-prep-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
}

.hiw-prep-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 22px;
    background: var(--cream);
    border-radius: var(--radius-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hiw-prep-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.hiw-prep-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 43, 0.3);
}

.hiw-prep-item h4 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--navy);
}

.hiw-prep-item p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

.hiw-prep-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.hiw-prep-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .hiw-stage-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hiw-stage-rail {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
        gap: 10px;
    }

    .hiw-stage-btn {
        flex-shrink: 0;
        min-width: 200px;
    }

    .hiw-stage-btn:hover {
        transform: none;
    }

    .hiw-split {
        grid-template-columns: 1fr;
    }

    .hiw-behind-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hiw-behind-media {
        aspect-ratio: 16 / 10;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .hiw-prep-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hiw-prep-media {
        aspect-ratio: 16 / 10;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hiw-clock-row {
        grid-template-columns: 100px 1fr;
        gap: 18px;
    }

    .hiw-clock-time {
        font-size: 0.75rem;
    }

    .hiw-stage-meta {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hiw-stage-panel {
        padding: 28px 22px;
    }

    .hiw-stage-head h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 640px) {
    .hiw-hero {
        padding: 48px 0 0;
    }

    .hiw-hero-copy > p {
        margin-bottom: 40px;
    }

    .hiw-hero-strip {
        flex-direction: column;
        padding: 20px 0;
    }

    .hiw-strip-sep {
        width: 100%;
        height: 1px;
    }

    .hiw-strip-item {
        padding: 8px 0;
    }

    .hiw-clock-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .hiw-clock-time {
        text-align: left;
    }
}
.pr-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.pr-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pr-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 30% 40%, black 0%, transparent 70%);
}

.pr-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.pr-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 24px;
}

.pr-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.pr-hero-copy > p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.pr-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.pr-badge-icon {
    color: var(--orange-glow);
    font-weight: 700;
}

.pr-hero-promise {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pr-promise-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: background 0.3s, border-color 0.3s;
}

.pr-promise-item:hover {
    background: rgba(255, 107, 43, 0.06);
    border-color: rgba(255, 107, 43, 0.25);
}

.pr-promise-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.02em;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 4px;
}

.pr-promise-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.pr-promise-item p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.pr-calculator-section {
    padding: 96px 0;
    background: var(--cream);
}

.pr-calc {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    margin-top: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.pr-calc-inputs {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pr-calc-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pr-calc-group label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
}

.pr-calc-select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(10, 22, 40, 0.1);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--navy);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pr-calc-select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 43, 0.12);
}

.pr-calc-slider-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pr-calc-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(10, 22, 40, 0.08);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.pr-calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(255, 107, 43, 0.4);
    transition: transform 0.15s;
}

.pr-calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.pr-calc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(255, 107, 43, 0.4);
}

.pr-calc-slider-val {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    min-width: 80px;
    text-align: right;
    letter-spacing: -0.01em;
}

.pr-calc-hint {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.5;
}

.pr-calc-radio-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.pr-calc-radio {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    background: var(--cream);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: border-color 0.2s, background 0.2s;
}

.pr-calc-radio:hover {
    background: rgba(255, 107, 43, 0.05);
}

.pr-calc-radio.active {
    background: rgba(255, 107, 43, 0.08);
    border-color: var(--orange);
}

.pr-calc-radio span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.pr-calc-radio small {
    font-size: 0.72rem;
    color: var(--gray);
    font-weight: 500;
}

.pr-calc-radio.active small {
    color: var(--orange);
    font-weight: 600;
}

.pr-calc-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pr-calc-check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s;
}

.pr-calc-check:hover {
    background: rgba(255, 107, 43, 0.05);
}

.pr-calc-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--orange);
    cursor: pointer;
    flex-shrink: 0;
}

.pr-calc-check span {
    font-size: 0.88rem;
    color: var(--navy);
    font-weight: 500;
}

.pr-calc-check-price {
    margin-left: auto;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange) !important;
}

.pr-calc-output {
    background: var(--navy);
    color: var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pr-calc-output::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pr-calc-output-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.pr-calc-output-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6ee7a3;
    font-size: 0.72rem;
}

.pr-calc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 0 0 rgba(110, 231, 163, 0.7);
    animation: pulseDot 2s infinite;
}

.pr-calc-total {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.pr-calc-unit {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange-glow);
    letter-spacing: 0.02em;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.pr-calc-breakdown {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.pr-calc-breakdown-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.pr-calc-breakdown-row span:last-child {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.pr-calc-discount-active {
    color: #6ee7a3 !important;
}

.pr-calc-cta {
    width: 100%;
    position: relative;
    z-index: 2;
}

.pr-calc-note {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.pr-drivers-section {
    background: var(--white);
}

.pr-drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.pr-driver {
    padding: 32px 28px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pr-driver:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: var(--shadow-sm);
}

.pr-driver-icon {
    font-size: 1.6rem;
    margin-bottom: 16px;
    line-height: 1;
}

.pr-driver-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 107, 43, 0.4);
    letter-spacing: 0.08em;
}

.pr-driver h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.pr-driver p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.pr-driver-example {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.04em;
    padding-top: 16px;
    border-top: 1px dashed rgba(10, 22, 40, 0.1);
}

.pr-process-section {
    background: var(--cream);
}

.pr-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    align-items: stretch;
}

.pr-process-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1.5px solid rgba(10, 22, 40, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pr-process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 43, 0.3);
}

.pr-process-featured {
    background: var(--navy);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 12px 40px rgba(255, 107, 43, 0.18);
    transform: translateY(-8px);
}

.pr-process-featured:hover {
    transform: translateY(-14px);
}

.pr-process-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    flex-wrap: wrap;
}

.pr-process-featured .pr-process-head {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pr-process-tag {
    padding: 5px 12px;
    background: var(--orange);
    color: var(--white);
    border-radius: 999px;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.pr-process-head h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.pr-process-featured .pr-process-head h3 {
    color: var(--white);
}

.pr-process-badge {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 10px;
    background: rgba(255, 107, 43, 0.15);
    color: var(--orange-glow);
    border-radius: 999px;
}

.pr-process-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 24px;
}

.pr-process-from {
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 500;
}

.pr-process-featured .pr-process-from {
    color: rgba(255, 255, 255, 0.6);
}

.pr-process-amount {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pr-process-featured .pr-process-amount {
    color: var(--orange-glow);
}

.pr-process-per {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.pr-process-featured .pr-process-per {
    color: rgba(255, 255, 255, 0.6);
}

.pr-process-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex: 1;
}

.pr-process-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.85rem;
    color: var(--navy);
    line-height: 1.55;
}

.pr-process-featured .pr-process-list li {
    color: rgba(255, 255, 255, 0.8);
}

.pr-process-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 7px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(-45deg);
}

.pr-process-featured .pr-process-list li::before {
    border-color: var(--orange-glow);
}

.pr-process-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
    padding-top: 16px;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
    transition: gap 0.2s;
}

.pr-process-featured .pr-process-link {
    color: var(--orange-glow);
    border-top-color: rgba(255, 255, 255, 0.1);
}

.pr-process-link:hover {
    gap: 10px;
}

.pr-materials-section {
    background: var(--white);
}

.pr-materials-rate {
    margin-top: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.pr-rate-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
    background: var(--navy);
    padding: 18px 24px;
    gap: 16px;
    align-items: center;
}

.pr-rate-head .pr-rate-cell {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pr-rate-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
    padding: 16px 24px;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    transition: background 0.2s;
}

.pr-rate-row:last-child {
    border-bottom: none;
}

.pr-rate-row:hover {
    background: rgba(255, 107, 43, 0.03);
}

.pr-rate-row-special {
    background: rgba(255, 107, 43, 0.04);
}

.pr-rate-cell {
    font-size: 0.9rem;
    color: var(--navy);
    line-height: 1.4;
}

.pr-rate-cell strong {
    font-family: var(--font-display);
    font-weight: 600;
}

.pr-rate-price {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    color: var(--orange) !important;
    font-size: 0.98rem;
}

.pr-materials-note {
    margin-top: 24px;
    font-size: 0.92rem;
    color: var(--gray);
    text-align: center;
}

.pr-materials-note a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
    transition: border-color 0.2s;
}

.pr-materials-note a:hover {
    border-color: var(--orange);
}

.pr-volume-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.pr-volume-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.pr-volume-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.pr-volume-copy .section-label {
    color: var(--orange-glow);
}

.pr-volume-copy .section-title {
    color: var(--white);
}

.pr-volume-copy .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.pr-volume-scale {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pr-volume-tier {
    display: grid;
    grid-template-columns: 120px 1fr 90px;
    align-items: center;
    gap: 20px;
}

.pr-volume-tier-qty {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
}

.pr-volume-tier-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 5px;
    overflow: hidden;
}

.pr-volume-tier-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(to right, var(--orange), var(--orange-glow));
    border-radius: 5px;
    transition: width 0.6s ease;
}

.pr-volume-tier-pct {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange-glow);
    text-align: right;
    letter-spacing: -0.01em;
}

.pr-volume-aside {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.pr-volume-aside-head {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 43, 0.15);
    border: 1px solid rgba(255, 107, 43, 0.3);
    color: var(--orange-glow);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pr-volume-aside > p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 24px;
}

.pr-volume-aside-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pr-volume-aside-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.55;
}

.pr-volume-aside-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 7px;
    border-left: 2px solid var(--orange-glow);
    border-bottom: 2px solid var(--orange-glow);
    transform: rotate(-45deg);
}

.pr-volume-aside .btn {
    width: 100%;
}

.pr-scenarios-section {
    background: var(--cream);
}

.pr-scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    align-items: start;
}

.pr-scenario {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1.5px solid rgba(10, 22, 40, 0.06);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.pr-scenario:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 43, 0.25);
}

.pr-scenario-featured {
    border-color: var(--orange);
    box-shadow: 0 8px 32px rgba(255, 107, 43, 0.12);
}

.pr-scenario-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.pr-scenario-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.04em;
}

.pr-scenario-tag {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    background: rgba(10, 22, 40, 0.06);
    color: var(--navy);
    border-radius: 999px;
}

.pr-scenario-tag-hot {
    background: var(--orange);
    color: var(--white);
}

.pr-scenario h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.pr-scenario-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pr-scenario-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px dashed rgba(10, 22, 40, 0.1);
    border-bottom: 1px dashed rgba(10, 22, 40, 0.1);
    margin-bottom: 20px;
}

.pr-scenario-lines > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.45;
}

.pr-scenario-lines > div span:first-child {
    flex: 1;
}

.pr-scenario-lines > div span:last-child {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    text-align: right;
}

.pr-scenario-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-top: auto;
}

.pr-scenario-total span:first-child {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
}

.pr-scenario-total span:last-child {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pr-included-section {
    background: var(--white);
}

.pr-included-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.pr-included-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pr-included-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 22px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pr-included-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.pr-included-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pr-included-item h4 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--navy);
    line-height: 1.3;
}

.pr-included-item p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.55;
}

.pr-nohidden-section {
    background: var(--cream);
}

.pr-nohidden-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.pr-nohidden-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.pr-nohidden-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: var(--shadow-sm);
}

.pr-nohidden-x {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 107, 43, 0.1);
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.pr-nohidden-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.pr-nohidden-card p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.65;
    flex: 1;
}

.pr-payment-section {
    background: var(--white);
}

.pr-payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.pr-payment-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.pr-payment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.3);
}

.pr-payment-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    border: 1px solid rgba(10, 22, 40, 0.06);
}

.pr-payment-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.pr-payment-card p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.pr-payment-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
}

.pr-payment-note {
    max-width: 780px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
    padding: 20px 28px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--orange);
}

.pr-payment-note strong {
    color: var(--navy);
}

.pr-payment-note a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
}

.pr-payment-note a:hover {
    border-color: var(--orange);
}

@media (max-width: 1024px) {
    .pr-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pr-calc {
        grid-template-columns: 1fr;
    }

    .pr-process-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pr-process-featured {
        transform: none;
    }

    .pr-process-featured:hover {
        transform: translateY(-6px);
    }

    .pr-volume-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pr-scenarios {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .pr-included-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pr-rate-head,
    .pr-rate-row {
        grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr 0.8fr;
        padding: 14px 18px;
        gap: 10px;
    }

    .pr-rate-cell {
        font-size: 0.82rem;
    }
}

@media (max-width: 768px) {
    .pr-materials-rate {
        overflow-x: auto;
    }

    .pr-rate-head,
    .pr-rate-row {
        min-width: 720px;
    }

    .pr-included-list {
        grid-template-columns: 1fr;
    }

    .pr-calc-inputs,
    .pr-calc-output {
        padding: 28px 22px;
    }

    .pr-calc-radio-row {
        grid-template-columns: 1fr;
    }

    .pr-volume-tier {
        grid-template-columns: 100px 1fr 70px;
        gap: 12px;
    }

    .pr-volume-tier-qty,
    .pr-volume-tier-pct {
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .pr-hero {
        padding: 48px 0 64px;
    }

    .pr-calculator-section {
        padding: 64px 0;
    }

    .pr-calc-total {
        font-size: 2.4rem;
    }

    .pr-included-item {
        flex-direction: column;
        gap: 10px;
    }

    .pr-scenario-total span:last-child {
        font-size: 1.4rem;
    }

    .pr-payment-note {
        padding: 16px 20px;
    }
}
.cs-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.cs-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cs-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(18, 35, 64, 0.85) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cs-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.cs-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.55);
}

.cs-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
}

.cs-hero .breadcrumbs a:hover {
    color: var(--orange-glow);
}

.cs-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    margin-top: 24px;
}

.cs-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.cs-hero-copy > p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.cs-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-hero-meta > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cs-hero-meta-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.02em;
    line-height: 1;
}

.cs-hero-meta-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.cs-hero-featured {
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    position: relative;
}

.cs-hero-featured-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    padding: 6px 14px;
    background: var(--orange);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(255, 107, 43, 0.4);
}

.cs-hero-featured-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy-light);
    position: relative;
}

.cs-hero-featured-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.75) 100%);
}

.cs-hero-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-hero-featured-body {
    padding: 24px 28px 28px;
}

.cs-hero-featured-industry {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange-glow);
    background: rgba(255, 107, 43, 0.12);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.cs-hero-featured-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 20px;
    color: var(--white);
}

.cs-hero-featured-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.cs-hero-featured-stats > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cs-hero-featured-stats strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
}

.cs-hero-featured-stats span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cs-hero-featured-link {
    color: var(--orange-glow);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: letter-spacing 0.2s;
}

.cs-hero-featured-link:hover {
    letter-spacing: 0.02em;
}

.cs-filter-bar {
    background: var(--white);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    padding: 18px 0;
    position: sticky;
    top: 72px;
    z-index: 800;
    box-shadow: 0 2px 8px rgba(10, 22, 40, 0.04);
}

.cs-filter-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cs-filter-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
    flex-shrink: 0;
}

.cs-filter-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cs-filter-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1.5px solid rgba(10, 22, 40, 0.08);
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
    white-space: nowrap;
}

.cs-filter-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.cs-filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.15);
}

.cs-featured-section {
    background: var(--cream);
}

.cs-feature {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 0;
    margin-top: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.cs-feature-media {
    position: relative;
    overflow: hidden;
    background: var(--navy-light);
    min-height: 100%;
}

.cs-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.cs-feature-body {
    padding: 48px 44px;
}

.cs-feature-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
    flex-wrap: wrap;
}

.cs-feature-tag {
    padding: 5px 12px;
    background: rgba(255, 107, 43, 0.08);
    color: var(--orange);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cs-feature-date,
.cs-feature-duration {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cs-feature-duration::before {
    content: '\00B7';
    margin-right: 16px;
    color: rgba(10, 22, 40, 0.2);
}

.cs-feature-block {
    margin-bottom: 28px;
}

.cs-feature-block-title {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    padding-left: 14px;
    position: relative;
}

.cs-feature-block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.cs-feature-block-title-problem {
    color: #d1495b;
}

.cs-feature-block-title-problem::before {
    background: #d1495b;
}

.cs-feature-block-title-approach {
    color: var(--orange);
}

.cs-feature-block-title-approach::before {
    background: var(--orange);
}

.cs-feature-block-title-result {
    color: #38a169;
}

.cs-feature-block-title-result::before {
    background: #38a169;
}

.cs-feature-block p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 12px;
}

.cs-feature-block p:last-child {
    margin-bottom: 0;
}

.cs-feature-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid rgba(10, 22, 40, 0.08);
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
    margin-bottom: 28px;
}

.cs-feature-metric {
    text-align: center;
}

.cs-feature-metric-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}

.cs-feature-metric-label {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.cs-feature-quote {
    background: var(--cream);
    border-left: 3px solid var(--orange);
    border-radius: var(--radius-sm);
    padding: 24px;
}

.cs-feature-quote > p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 16px;
}

.cs-feature-quote-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cs-feature-quote-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}

.cs-feature-quote-role {
    font-size: 0.8rem;
    color: var(--gray);
}

.cs-grid-section {
    background: var(--white);
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.cs-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.cs-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 43, 0.25);
}

.cs-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy-light);
}

.cs-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.cs-card:hover .cs-card-media img {
    transform: scale(1.05);
}

.cs-card-industry {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 12px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(8px);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cs-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cs-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.cs-card-code {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 0.06em;
}

.cs-card-date {
    font-size: 0.72rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.cs-card h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 10px;
}

.cs-card > .cs-card-body > p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.cs-card-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 14px 0;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    margin-bottom: 16px;
}

.cs-card-metrics > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cs-card-metrics strong {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cs-card-metrics span {
    font-size: 0.65rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cs-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange);
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
}

.cs-empty {
    padding: 48px 24px;
    text-align: center;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(10, 22, 40, 0.15);
    margin-top: 48px;
}

.cs-empty p {
    font-size: 0.95rem;
    color: var(--gray);
}

.cs-empty a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
}

.cs-results-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cs-results-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cs-results-section .section-label {
    color: var(--orange-glow);
}

.cs-results-section .section-title {
    color: var(--white);
}

.cs-results-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.cs-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.cs-result {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: background 0.3s, border-color 0.3s;
}

.cs-result:hover {
    background: rgba(255, 107, 43, 0.06);
    border-color: rgba(255, 107, 43, 0.25);
}

.cs-result-num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 12px;
}

.cs-result-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 40px;
}

.cs-result-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.cs-result-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(to right, var(--orange), var(--orange-glow));
    border-radius: 3px;
}

.cs-lessons-section {
    background: var(--cream);
}

.cs-lessons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cs-lesson {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 28px 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cs-lesson:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.cs-lesson-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(255, 107, 43, 0.35);
    letter-spacing: -0.03em;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 4px;
    min-width: 50px;
}

.cs-lesson-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    color: var(--navy);
    line-height: 1.3;
}

.cs-lesson-body p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
}

.cs-testimonial-section {
    background: var(--white);
}

.cs-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.cs-testimonial {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 32px;
    position: relative;
    border: 1px solid rgba(10, 22, 40, 0.04);
    display: flex;
    flex-direction: column;
}

.cs-testimonial::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(255, 107, 43, 0.15);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.cs-testimonial-stars {
    color: #f5a623;
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.cs-testimonial-text {
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 22px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.cs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cs-testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.cs-testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
}

.cs-testimonial-author span {
    font-size: 0.78rem;
    color: var(--gray);
}

@media (max-width: 1024px) {
    .cs-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cs-hero-featured {
        max-width: 560px;
    }

    .cs-feature {
        grid-template-columns: 1fr;
    }

    .cs-feature-media {
        aspect-ratio: 16 / 10;
        min-height: auto;
        position: relative;
    }

    .cs-feature-media img {
        position: relative;
    }

    .cs-feature-body {
        padding: 36px 28px;
    }

    .cs-feature-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cs-filter-bar {
        position: static;
    }

    .cs-filter-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cs-filter-btns {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .cs-filter-btn {
        flex-shrink: 0;
    }

    .cs-lesson {
        flex-direction: column;
        gap: 12px;
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .cs-hero {
        padding: 48px 0 64px;
    }

    .cs-hero-meta {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cs-feature-body {
        padding: 28px 22px;
    }

    .cs-feature-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .cs-feature-metric-value {
        font-size: 1.25rem;
    }

    .cs-card-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}
.ab-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
}

.ab-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ab-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.ab-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}

.ab-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
}

.ab-hero .breadcrumbs a:hover {
    color: var(--orange-glow);
}

.ab-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ab-hero-est {
    display: inline-block;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange-glow);
    padding: 6px 14px;
    border: 1px solid rgba(255, 107, 43, 0.3);
    border-radius: 999px;
    background: rgba(255, 107, 43, 0.08);
    margin-bottom: 22px;
}

.ab-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}

.ab-hero-copy > p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.ab-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ab-hero-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.ab-hero-collage-large {
    grid-column: 1 / -1;
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.ab-hero-collage-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-hero-collage-large::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.6) 100%);
}

.ab-hero-collage-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(56, 209, 122, 0.3);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6ee7a3;
}

.ab-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 0 0 rgba(110, 231, 163, 0.7);
    animation: pulseDot 2s infinite;
}

.ab-hero-collage-small {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--navy-light);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.ab-hero-collage-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-hero-facts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 72px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.ab-fact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 140px;
}

.ab-fact-num {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.03em;
    line-height: 1;
}

.ab-fact-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.ab-fact-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.ab-story-section {
    background: var(--cream);
    padding-top: 96px;
}

.ab-story-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 72px;
    align-items: start;
}

.ab-story-para {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.ab-story-para:first-of-type {
    margin-top: 24px;
    border-top: none;
    padding-top: 0;
}

.ab-story-marker {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.02em;
    line-height: 1;
    padding-top: 4px;
}

.ab-story-para p {
    font-size: 0.98rem;
    color: var(--gray);
    line-height: 1.75;
    margin: 0;
}

.ab-story-media {
    position: sticky;
    top: 96px;
}

.ab-story-media > img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 24px;
}

.ab-story-quote {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.ab-story-quote::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}

.ab-story-quote > p {
    font-size: 0.98rem;
    font-style: italic;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.ab-story-quote-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
    z-index: 2;
}

.ab-story-quote-author strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--orange-glow);
}

.ab-story-quote-author span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.ab-values-section {
    background: var(--white);
}

.ab-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.ab-value {
    padding: 32px 28px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.ab-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--orange);
    transition: height 0.3s;
}

.ab-value:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.25);
    box-shadow: var(--shadow-sm);
}

.ab-value:hover::before {
    height: 100%;
}

.ab-value-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 107, 43, 0.4);
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.ab-value h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--navy);
}

.ab-value p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

.ab-team-section {
    background: var(--cream);
}

.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.ab-team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.04);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.ab-team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 43, 0.25);
}

.ab-team-photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--navy-light);
}

.ab-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.ab-team-card:hover .ab-team-photo img {
    transform: scale(1.04);
}

.ab-team-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ab-team-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.ab-team-role {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.ab-team-info p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
    flex: 1;
}

.ab-team-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.92rem;
    color: var(--gray);
}

.ab-team-note a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
    transition: border-color 0.2s;
}

.ab-team-note a:hover {
    border-color: var(--orange);
}

.ab-facility-section {
    background: var(--navy);
    color: var(--white);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.ab-facility-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.ab-facility-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ab-facility-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ab-facility-main {
    grid-column: 1 / -1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.ab-facility-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-facility-thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--navy-light);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.ab-facility-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-facility-copy .section-label {
    color: var(--orange-glow);
}

.ab-facility-copy .section-title {
    color: var(--white);
}

.ab-facility-copy .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.ab-facility-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ab-facility-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: background 0.3s, border-color 0.3s;
}

.ab-facility-item:hover {
    background: rgba(255, 107, 43, 0.06);
    border-color: rgba(255, 107, 43, 0.2);
}

.ab-facility-icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.ab-facility-item h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.3;
}

.ab-facility-item p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}

.ab-sustainability-section {
    background: var(--cream);
}

.ab-sustain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.ab-sustain-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.ab-sustain-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 209, 122, 0.3);
    box-shadow: var(--shadow-sm);
}

.ab-sustain-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
    line-height: 1;
}

.ab-sustain-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: #38a169;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 12px;
}

.ab-sustain-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.35;
}

.ab-sustain-card p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.65;
    flex: 1;
}

.ab-community-section {
    background: var(--white);
}

.ab-community-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
}

.ab-community-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
}

.ab-community-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    align-items: flex-start;
}

.ab-community-item:last-child {
    border-bottom: none;
}

.ab-community-year {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.02em;
    line-height: 1.5;
    padding-top: 2px;
}

.ab-community-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--navy);
    line-height: 1.3;
}

.ab-community-item p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
}

.ab-community-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.ab-community-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-community-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 43, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 180px;
}

.ab-community-float-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.03em;
    line-height: 1;
}

.ab-community-float-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.ab-metrics-section {
    background: var(--navy);
    color: var(--white);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.ab-metrics-section::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ab-metrics-section .section-label {
    color: var(--orange-glow);
}

.ab-metrics-section .section-title {
    color: var(--white);
}

.ab-metrics-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.ab-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.ab-metric {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: background 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.ab-metric:hover {
    background: rgba(255, 107, 43, 0.06);
    border-color: rgba(255, 107, 43, 0.25);
}

.ab-metric-icon {
    font-size: 1.4rem;
    margin-bottom: 16px;
    line-height: 1;
}

.ab-metric-num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 12px;
}

.ab-metric-label {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}

.ab-metric-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.ab-press-section {
    background: var(--cream);
}

.ab-press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.ab-press-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ab-press-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: rgba(255, 107, 43, 0.15);
    position: absolute;
    top: 8px;
    right: 20px;
    line-height: 1;
}

.ab-press-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(255, 107, 43, 0.25);
}

.ab-press-quote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    font-style: italic;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.ab-press-source {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 18px;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
}

.ab-press-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ab-press-date {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .ab-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ab-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab-story-media {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .ab-facility-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ab-facility-list {
        grid-template-columns: 1fr;
    }

    .ab-community-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab-community-media {
        aspect-ratio: 16 / 10;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ab-hero-facts {
        flex-wrap: wrap;
        gap: 20px;
    }

    .ab-fact-sep {
        display: none;
    }

    .ab-fact {
        flex: 0 0 calc(50% - 10px);
        min-width: 0;
    }

    .ab-story-para {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .ab-community-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 640px) {
    .ab-hero {
        padding: 48px 0 0;
    }

    .ab-hero-collage-small {
        display: none;
    }

    .ab-hero-collage-large {
        aspect-ratio: 4 / 3;
    }

    .ab-hero-facts {
        margin-top: 48px;
        padding: 24px 0;
    }

    .ab-fact {
        flex: 0 0 100%;
    }

    .ab-story-quote {
        padding: 24px;
    }

    .ab-facility-section,
    .ab-metrics-section {
        padding: 64px 0;
    }

    .ab-facility-item {
        padding: 16px;
    }
}
.ct-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.ct-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ct-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 30% 40%, black 0%, transparent 70%);
}

.ct-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.ct-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}

.ct-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
}

.ct-hero .breadcrumbs a:hover {
    color: var(--orange-glow);
}

.ct-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
}

.ct-hero-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(56, 209, 122, 0.1);
    border: 1px solid rgba(56, 209, 122, 0.3);
    color: #6ee7a3;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 22px;
}

.ct-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 0 0 rgba(110, 231, 163, 0.7);
    animation: pulseDot 2s infinite;
}

.ct-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.ct-hero-copy > p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.ct-hero-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.ct-channel {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--white);
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

.ct-channel:hover {
    background: rgba(255, 107, 43, 0.08);
    border-color: rgba(255, 107, 43, 0.3);
    transform: translateX(6px);
}

.ct-channel-primary {
    background: rgba(255, 107, 43, 0.1);
    border-color: rgba(255, 107, 43, 0.35);
}

.ct-channel-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 43, 0.15);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
}

.ct-channel-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.ct-channel-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
}

.ct-channel-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ct-channel-primary .ct-channel-value {
    color: var(--orange-glow);
}

.ct-channel-arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    transition: transform 0.2s, color 0.2s;
}

.ct-channel:hover .ct-channel-arrow {
    color: var(--orange-glow);
    transform: translateX(4px);
}

.ct-hero-response {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.ct-response-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 100px;
}

.ct-response-item strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.02em;
    line-height: 1;
}

.ct-response-item span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.ct-response-sep {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.ct-hero-card {
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.ct-card-head {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-card-head-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
}

.ct-card-options {
    display: flex;
    flex-direction: column;
}

.ct-card-option {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 18px 24px;
    text-decoration: none;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s, padding 0.2s;
}

.ct-card-option:last-child {
    border-bottom: none;
}

.ct-card-option:hover {
    background: rgba(255, 107, 43, 0.06);
    padding-left: 28px;
}

.ct-card-option-icon {
    font-size: 1.3rem;
    line-height: 1;
    text-align: center;
}

.ct-card-option h4 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--white);
    line-height: 1.3;
}

.ct-card-option p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.ct-card-option-arrow {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.95rem;
    transition: transform 0.2s, color 0.2s;
}

.ct-card-option:hover .ct-card-option-arrow {
    color: var(--orange-glow);
    transform: translateX(4px);
}

.ct-form-section {
    background: var(--cream);
}

.ct-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.ct-form-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.ct-form-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ct-form-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 43, 0.08);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.ct-form-info-item h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--navy);
}

.ct-form-info-item p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
}

.ct-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 22, 40, 0.04);
}

.ct-form-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    flex-wrap: wrap;
}

.ct-form-head h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.ct-form-head-note {
    font-size: 0.78rem;
    color: var(--gray);
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ct-form-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-top: 8px;
}

.ct-form-submit {
    width: 100%;
}

.ct-form .form-note {
    margin-top: 16px;
}

.ct-map-section {
    background: var(--white);
}

.ct-map-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    margin-top: 48px;
    align-items: stretch;
}

.ct-map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 22, 40, 0.06);
    background: var(--navy-light);
    min-height: 480px;
    position: relative;
}

.ct-map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: none;
    display: block;
    filter: saturate(0.85) contrast(1.05);
}

.ct-map-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-map-item {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid rgba(10, 22, 40, 0.04);
}

.ct-map-item-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.ct-map-item-icon {
    font-size: 1.15rem;
}

.ct-map-item-head h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.ct-map-item > p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 12px;
}

.ct-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.ct-map-link:hover {
    gap: 10px;
}

.ct-hours-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ct-hours-table > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.88rem;
    padding: 4px 0;
    border-bottom: 1px dashed rgba(10, 22, 40, 0.06);
}

.ct-hours-table > div:last-child {
    border-bottom: none;
}

.ct-hours-table span:first-child {
    color: var(--navy);
    font-weight: 600;
}

.ct-hours-table span:last-child {
    color: var(--gray);
    font-family: 'Space Grotesk', monospace;
    font-weight: 600;
    font-size: 0.85rem;
}

.ct-hours-closed span:last-child {
    color: rgba(10, 22, 40, 0.35);
}

.ct-transit {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ct-transit > div {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.6;
    padding-left: 12px;
    position: relative;
}

.ct-transit > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background: var(--orange);
    border-radius: 50%;
}

.ct-transit strong {
    color: var(--navy);
    font-weight: 700;
    margin-right: 4px;
}

.ct-departments-section {
    background: var(--cream);
}

.ct-dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.ct-dept-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.ct-dept-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: var(--shadow-sm);
}

.ct-dept-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.ct-dept-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 43, 0.08);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ct-dept-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--navy);
    line-height: 1.3;
}

.ct-dept-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.ct-dept-link {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    padding-top: 14px;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
    letter-spacing: -0.01em;
    transition: letter-spacing 0.2s;
    word-break: break-all;
}

.ct-dept-link:hover {
    letter-spacing: 0.01em;
}

.ct-visit-section {
    background: var(--white);
}

.ct-visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.ct-visit-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.ct-visit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ct-visit-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 43, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
}

.ct-visit-badge-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.03em;
    line-height: 1;
}

.ct-visit-badge-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.ct-visit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.ct-visit-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 22px;
    background: var(--cream);
    border-radius: var(--radius-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ct-visit-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.ct-visit-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.04em;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 6px;
    min-width: 32px;
}

.ct-visit-item h4 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--navy);
    line-height: 1.3;
}

.ct-visit-item p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.6;
}

.ct-emergency-section {
    background: var(--navy);
    color: var(--white);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.ct-emergency-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.ct-emergency-section .section-label {
    color: var(--orange-glow);
}

.ct-emergency-section .section-title {
    color: var(--white);
}

.ct-emergency-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.ct-emergency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.ct-emergency-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: background 0.3s, border-color 0.3s;
}

.ct-emergency-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 43, 0.3);
}

.ct-emergency-card-primary {
    background: rgba(255, 107, 43, 0.08);
    border-color: rgba(255, 107, 43, 0.3);
}

.ct-emergency-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 107, 43, 0.15);
    border: 1px solid rgba(255, 107, 43, 0.3);
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.ct-emergency-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: var(--white);
}

.ct-emergency-card > p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.ct-emergency-phone {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange-glow);
    text-decoration: none;
    letter-spacing: -0.01em;
    padding: 16px 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
    transition: color 0.2s;
    word-break: break-all;
}

.ct-emergency-phone:hover {
    color: var(--white);
}

.ct-emergency-phone-email {
    font-size: 1.1rem;
}

.ct-emergency-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ct-emergency-meta > span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.ct-emergency-meta strong {
    color: var(--orange-glow);
    font-weight: 700;
    margin-right: 6px;
}

.ct-emergency-note {
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .ct-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ct-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ct-map-grid {
        grid-template-columns: 1fr;
    }

    .ct-map-embed {
        min-height: 360px;
    }

    .ct-map-embed iframe {
        min-height: 360px;
    }

    .ct-visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ct-visit-media {
        aspect-ratio: 16 / 10;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .ct-emergency-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ct-hero {
        padding: 48px 0 64px;
    }

    .ct-hero-response {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .ct-response-sep {
        display: none;
    }

    .ct-channel {
        grid-template-columns: 44px 1fr auto;
        padding: 14px 16px;
    }

    .ct-channel-value {
        font-size: 0.9rem;
    }

    .ct-form {
        padding: 28px 22px;
    }

    .ct-form-row {
        grid-template-columns: 1fr;
    }

    .ct-emergency-section {
        padding: 64px 0;
    }

    .ct-emergency-card {
        padding: 28px 24px;
    }

    .ct-emergency-phone {
        font-size: 1.2rem;
    }

    .ct-emergency-phone-email {
        font-size: 0.95rem;
    }
}
.bk-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
}

.bk-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bk-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.bk-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}

.bk-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
}

.bk-hero .breadcrumbs a:hover {
    color: var(--orange-glow);
}

.bk-hero-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: end;
}

.bk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(56, 209, 122, 0.1);
    border: 1px solid rgba(56, 209, 122, 0.3);
    color: #6ee7a3;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 22px;
}

.bk-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 0 0 rgba(110, 231, 163, 0.7);
    animation: pulseDot 2s infinite;
}

.bk-hero-left h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.bk-hero-left > p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    line-height: 1.7;
}

.bk-hero-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 8px;
}

.bk-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
}

.bk-hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.03em;
    line-height: 1;
}

.bk-hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    line-height: 1.35;
}

.bk-booking-section {
    padding: 72px 0 96px;
    background: var(--cream);
    scroll-margin-top: 96px;
}

.bk-booking-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.bk-form-column {
    min-width: 0;
}

.bk-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
    overflow-x: auto;
    scrollbar-width: none;
}

.bk-steps::-webkit-scrollbar {
    display: none;
}

.bk-step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.bk-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(10, 22, 40, 0.06);
    color: var(--gray);
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.bk-step-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray);
    white-space: nowrap;
    transition: color 0.3s;
}

.bk-step.active .bk-step-num {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 43, 0.35);
}

.bk-step.active .bk-step-label {
    color: var(--navy);
}

.bk-step.completed .bk-step-num {
    background: var(--navy);
    color: var(--white);
}

.bk-step.completed .bk-step-num::before {
    content: '\2713';
}

.bk-step.completed .bk-step-num {
    font-size: 0.9rem;
}

.bk-step.completed .bk-step-label {
    color: var(--navy);
}

.bk-step-line {
    flex: 1;
    height: 2px;
    background: rgba(10, 22, 40, 0.08);
    min-width: 20px;
    flex-shrink: 0;
}

.bk-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.bk-panel {
    display: none;
}

.bk-panel.active {
    display: block;
    animation: bkFade 0.35s ease;
}

@keyframes bkFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.bk-panel-head {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.bk-panel-kicker {
    display: inline-block;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.bk-panel-head h2 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 10px;
}

.bk-panel-head > p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.65;
}

.bk-format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bk-format-card {
    cursor: pointer;
    position: relative;
}

.bk-format-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bk-format-inner {
    padding: 24px 20px;
    border: 2px solid rgba(10, 22, 40, 0.08);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, background 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bk-format-card:hover .bk-format-inner {
    border-color: rgba(255, 107, 43, 0.3);
    transform: translateY(-2px);
}

.bk-format-card input[type="radio"]:checked + .bk-format-inner {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(255, 107, 43, 0.15);
    background: rgba(255, 107, 43, 0.03);
}

.bk-format-card input[type="radio"]:checked + .bk-format-inner::after {
    content: '\2713';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 700;
}

.bk-format-icon {
    font-size: 1.7rem;
    margin-bottom: 14px;
    line-height: 1;
}

.bk-format-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.bk-format-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
}

.bk-format-rec {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 14px;
    border-top: 1px dashed rgba(10, 22, 40, 0.1);
}

.bk-calendar-wrap {
    margin-bottom: 32px;
}

.bk-calendar {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.bk-calendar-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.bk-cal-range {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    letter-spacing: -0.01em;
}

.bk-cal-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid rgba(10, 22, 40, 0.08);
    color: var(--navy);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 0.95rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}

.bk-cal-nav:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.bk-cal-days {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 8px;
}

.bk-cal-day {
    background: var(--white);
    border: 1.5px solid rgba(10, 22, 40, 0.06);
    border-radius: var(--radius-sm);
    padding: 14px 8px;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.bk-cal-day:hover:not(.bk-cal-day-disabled) {
    border-color: var(--orange);
    transform: translateY(-2px);
}

.bk-cal-day-dow {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
}

.bk-cal-day-num {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.02em;
}

.bk-cal-day-month {
    font-size: 0.68rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bk-cal-day-selected {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 6px 20px rgba(255, 107, 43, 0.3);
}

.bk-cal-day-selected .bk-cal-day-dow,
.bk-cal-day-selected .bk-cal-day-num,
.bk-cal-day-selected .bk-cal-day-month {
    color: var(--white);
}

.bk-cal-day-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: transparent;
}

.bk-times-wrap {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.bk-times-head {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.bk-times-head strong {
    color: var(--navy);
    font-weight: 700;
}

.bk-times {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
}

.bk-time-slot {
    padding: 10px 8px;
    background: var(--white);
    border: 1.5px solid rgba(10, 22, 40, 0.08);
    border-radius: var(--radius-sm);
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
    text-align: center;
}

.bk-time-slot:hover:not(.bk-time-slot-disabled) {
    border-color: var(--orange);
    transform: translateY(-2px);
}

.bk-time-slot-selected {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 107, 43, 0.3);
}

.bk-time-slot-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: transparent;
    text-decoration: line-through;
}

.bk-extra-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bk-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
    flex-wrap: wrap;
}

.bk-form-actions-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    flex-wrap: wrap;
}

.bk-step-indicator {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bk-summary {
    position: sticky;
    top: 96px;
}

.bk-summary-inner {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 24px 64px rgba(10, 22, 40, 0.15);
    position: relative;
    overflow: hidden;
}

.bk-summary-inner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bk-summary-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.bk-summary-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6ee7a3;
    font-size: 0.72rem;
}

.bk-summary-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 0 0 rgba(110, 231, 163, 0.7);
    animation: pulseDot 2s infinite;
}

.bk-summary-rows {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.bk-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bk-summary-row:last-child {
    border-bottom: none;
}

.bk-summary-key {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    flex-shrink: 0;
}

.bk-summary-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    text-align: right;
    letter-spacing: -0.01em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 60%;
}

.bk-summary-what {
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.bk-summary-what-head {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange-glow);
    margin-bottom: 14px;
}

.bk-summary-what-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bk-summary-what-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.bk-summary-what-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange-glow);
    font-weight: 700;
    font-size: 0.8rem;
}

.bk-summary-contact {
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.bk-summary-contact-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.bk-summary-contact-phone {
    display: block;
    font-family: 'Space Grotesk', monospace;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--orange-glow);
    text-decoration: none;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    transition: color 0.2s;
}

.bk-summary-contact-phone:hover {
    color: var(--white);
}

.bk-summary-contact-hours {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

.bk-prep-section {
    background: var(--white);
}

.bk-prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.bk-prep-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.bk-prep-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: var(--shadow-sm);
}

.bk-prep-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 107, 43, 0.45);
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.bk-prep-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--navy);
}

.bk-prep-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
}

.bk-format-detail-section {
    background: var(--cream);
}

.bk-format-detail {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.bk-format-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.bk-format-block-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.bk-format-block-reverse .bk-format-block-media {
    order: 2;
}

.bk-format-block-media {
    position: relative;
    overflow: hidden;
    background: var(--navy-light);
    min-height: 320px;
}

.bk-format-block-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.bk-format-block:hover .bk-format-block-media img {
    transform: scale(1.04);
}

.bk-format-block-body {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bk-format-block-tag {
    display: inline-block;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    align-self: flex-start;
}

.bk-format-block-body h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.2;
}

.bk-format-block-body > p {
    font-size: 0.96rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 22px;
}

.bk-format-block-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px dashed rgba(10, 22, 40, 0.1);
}

.bk-format-block-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.88rem;
    color: var(--navy);
    line-height: 1.55;
}

.bk-format-block-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 7px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(-45deg);
}

.bk-slots-section {
    background: var(--white);
    padding: 64px 0;
}

.bk-slots-card {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 32px;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bk-slots-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bk-slots-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 107, 43, 0.15);
    border: 1px solid rgba(255, 107, 43, 0.3);
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.bk-slots-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.bk-slots-copy h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.bk-slots-copy p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

.bk-slots-stats {
    display: flex;
    gap: 28px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.bk-slots-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bk-slots-stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.03em;
    line-height: 1;
}

.bk-slots-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    line-height: 1.3;
}

.bk-slots-card .btn {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .bk-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bk-hero-right {
        grid-template-columns: repeat(3, 1fr);
    }

    .bk-booking-layout {
        grid-template-columns: 1fr;
    }

    .bk-summary {
        position: static;
    }

    .bk-format-grid {
        grid-template-columns: 1fr;
    }

    .bk-format-block,
    .bk-format-block-reverse {
        grid-template-columns: 1fr;
    }

    .bk-format-block-reverse .bk-format-block-media {
        order: 0;
    }

    .bk-format-block-media {
        min-height: 240px;
        aspect-ratio: 16 / 10;
    }

    .bk-format-block-body {
        padding: 32px 28px;
    }

    .bk-slots-card {
        grid-template-columns: 1fr;
        padding: 32px 28px;
        gap: 24px;
    }

    .bk-slots-stats {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .bk-hero {
        padding: 48px 0 40px;
    }

    .bk-hero-right {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bk-hero-stat {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 14px 18px;
    }

    .bk-hero-stat-num {
        font-size: 1.4rem;
    }

    .bk-booking-section {
        padding: 48px 0 64px;
    }

    .bk-form {
        padding: 28px 22px;
    }

    .bk-panel-head h2 {
        font-size: 1.3rem;
    }

    .bk-steps {
        padding: 12px 16px;
        gap: 6px;
    }

    .bk-step-label {
        display: none;
    }

    .bk-step.completed .bk-step-label {
        display: none;
    }

    .bk-form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .bk-form-actions-right {
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        gap: 12px;
    }

    .bk-form-actions .btn {
        width: 100%;
    }

    .bk-step-indicator {
        text-align: center;
    }

    .bk-summary-inner {
        padding: 24px;
    }

    .bk-summary-value {
        max-width: 55%;
    }

    .bk-format-block-body h3 {
        font-size: 1.3rem;
    }

    .bk-cal-days {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    }

    .bk-cal-day {
        padding: 10px 6px;
    }

    .bk-cal-day-num {
        font-size: 1.1rem;
    }

    .bk-times {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}
.cr-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.cr-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cr-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 30% 40%, black 0%, transparent 70%);
}

.cr-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.cr-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}

.cr-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
}

.cr-hero .breadcrumbs a:hover {
    color: var(--orange-glow);
}

.cr-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
}

.cr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(56, 209, 122, 0.1);
    border: 1px solid rgba(56, 209, 122, 0.3);
    color: #6ee7a3;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 22px;
}

.cr-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 0 0 rgba(110, 231, 163, 0.7);
    animation: pulseDot 2s infinite;
}

.cr-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.cr-hero-copy > p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cr-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cr-hero-panel {
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.cr-hero-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.cr-panel-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6ee7a3;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.cr-panel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 8px rgba(110, 231, 163, 0.8);
}

.cr-hero-rows {
    display: flex;
    flex-direction: column;
}

.cr-hero-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 16px;
}

.cr-hero-row:last-child {
    border-bottom: none;
}

.cr-hero-row span {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.6);
}

.cr-hero-row strong {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.cr-hero-row-highlight {
    background: rgba(255, 107, 43, 0.1);
    margin: 6px -12px 0;
    padding: 13px 12px;
    border-radius: 6px;
    border-bottom: none;
}

.cr-hero-row-highlight span {
    color: var(--orange-glow);
}

.cr-hero-row-highlight strong {
    color: var(--orange-glow);
    font-size: 1.1rem;
}

.cr-why-section {
    background: var(--cream);
}

.cr-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.cr-why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cr-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--orange);
    transition: height 0.3s;
}

.cr-why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.25);
    box-shadow: var(--shadow-sm);
}

.cr-why-card:hover::before {
    height: 100%;
}

.cr-why-card-wide {
    grid-column: 1 / -1;
}

.cr-why-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 107, 43, 0.45);
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.cr-why-card h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--navy);
}

.cr-why-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

.cr-openings-section {
    background: var(--white);
}

.cr-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 6px;
    background: var(--cream);
    border-radius: 999px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    width: fit-content;
    max-width: 100%;
}

.cr-filter-btn {
    padding: 10px 20px;
    border-radius: 999px;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.cr-filter-btn:hover {
    color: var(--navy);
    background: rgba(10, 22, 40, 0.04);
}

.cr-filter-btn.active {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.15);
}

.cr-jobs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cr-job {
    background: var(--white);
    border: 1.5px solid rgba(10, 22, 40, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.cr-job:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: var(--shadow-md);
}

.cr-job-featured {
    border-color: var(--orange);
    box-shadow: 0 8px 32px rgba(255, 107, 43, 0.12);
}

.cr-job-apprentice {
    background: linear-gradient(135deg, rgba(255, 107, 43, 0.04) 0%, rgba(255, 107, 43, 0.08) 100%);
    border-color: rgba(255, 107, 43, 0.25);
}

.cr-job-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    flex-wrap: wrap;
}

.cr-job-title-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.cr-job-dept {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
}

.cr-job-title-group h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--navy);
}

.cr-job-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.cr-job-status-open {
    background: rgba(56, 209, 122, 0.1);
    color: #1e9e56;
    border: 1px solid rgba(56, 209, 122, 0.3);
}

.cr-job-status-window {
    background: rgba(255, 107, 43, 0.1);
    color: var(--orange);
    border: 1px solid rgba(255, 107, 43, 0.3);
}

.cr-job-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 0 currentColor;
    animation: pulseDot 2s infinite;
}

.cr-job-summary {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 22px;
}

.cr-job-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    margin-bottom: 22px;
}

.cr-job-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cr-job-meta-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
}

.cr-job-meta-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.cr-job-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.cr-job-secondary {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.cr-job-secondary:hover {
    text-decoration: underline;
}

.cr-jobs-empty {
    padding: 48px 24px;
    text-align: center;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(10, 22, 40, 0.15);
    margin-top: 24px;
}

.cr-jobs-empty p {
    font-size: 0.95rem;
    color: var(--gray);
}

.cr-jobs-empty a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
}

.cr-benefits-section {
    background: var(--cream);
}

.cr-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.cr-benefit {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.cr-benefit:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.25);
    box-shadow: var(--shadow-sm);
}

.cr-benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 43, 0.08);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.cr-benefit h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--navy);
}

.cr-benefit p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
}

.cr-hiring-section {
    background: var(--white);
}

.cr-hiring-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
    max-width: 900px;
    position: relative;
}

.cr-hiring-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange) 0%, rgba(255, 107, 43, 0.15) 100%);
}

.cr-hiring-step {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    align-items: flex-start;
    position: relative;
}

.cr-hiring-marker {
    flex-shrink: 0;
    width: 64px;
    display: flex;
    justify-content: center;
    padding-top: 2px;
    position: relative;
    z-index: 2;
}

.cr-hiring-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', monospace;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.2);
    border: 3px solid var(--white);
}

.cr-hiring-body {
    flex: 1;
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cr-hiring-body:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.cr-hiring-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.cr-hiring-day {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cr-hiring-duration {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 600;
    position: relative;
    padding-left: 18px;
}

.cr-hiring-duration::before {
    content: '\00B7';
    position: absolute;
    left: 6px;
    color: rgba(10, 22, 40, 0.2);
}

.cr-hiring-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    color: var(--navy);
    line-height: 1.3;
}

.cr-hiring-body p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
}

.cr-hiring-body p a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
}

.cr-hiring-body p a:hover {
    border-color: var(--orange);
}

.cr-life-section {
    background: var(--navy);
    color: var(--white);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cr-life-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cr-life-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cr-life-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.cr-life-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cr-life-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 43, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
}

.cr-life-badge-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.03em;
    line-height: 1;
}

.cr-life-badge-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.cr-life-copy .section-label {
    color: var(--orange-glow);
}

.cr-life-copy .section-title {
    color: var(--white);
}

.cr-life-copy .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.cr-life-timeline {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cr-life-item {
    display: flex;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    align-items: flex-start;
}

.cr-life-item:last-child {
    border-bottom: none;
}

.cr-life-item-end {
    border-bottom: none;
}

.cr-life-time {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: 0.02em;
    flex-shrink: 0;
    min-width: 75px;
    padding-top: 2px;
}

.cr-life-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
    line-height: 1.3;
}

.cr-life-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.cr-apprenticeship-section {
    background: var(--cream);
}

.cr-apprentice-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.cr-apprentice-head .section-label {
    justify-content: center;
}

.cr-apprentice-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    margin-top: 48px;
    align-items: start;
}

.cr-apprentice-tracks {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    box-shadow: var(--shadow-sm);
}

.cr-apprentice-tracks-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    color: var(--navy);
}

.cr-apprentice-track {
    padding: 20px 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.cr-apprentice-track:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cr-apprentice-track-head {
    display: flex;
    gap: 18px;
    align-items: baseline;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.cr-apprentice-track-month {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    min-width: 100px;
}

.cr-apprentice-track h4 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    flex: 1;
}

.cr-apprentice-track p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    padding-left: 118px;
}

.cr-apprentice-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cr-apprentice-detail-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.cr-apprentice-detail-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cr-apprentice-detail-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.cr-apprentice-detail-rows {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.cr-apprentice-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: baseline;
}

.cr-apprentice-detail-row:last-child {
    border-bottom: none;
}

.cr-apprentice-detail-row span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

.cr-apprentice-detail-row strong {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange-glow);
    text-align: right;
    letter-spacing: -0.01em;
}

.cr-apprentice-note {
    background: rgba(255, 107, 43, 0.08);
    border-left: 3px solid var(--orange);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    font-size: 0.9rem;
    color: var(--navy);
    line-height: 1.7;
}

.cr-apprentice-note strong {
    color: var(--orange);
    font-weight: 700;
}

.cr-voices-section {
    background: var(--white);
}

.cr-voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.cr-voice {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 32px;
    position: relative;
    border: 1px solid rgba(10, 22, 40, 0.04);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.cr-voice:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(255, 107, 43, 0.2);
}

.cr-voice-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(255, 107, 43, 0.15);
    line-height: 0.6;
    margin-bottom: 16px;
}

.cr-voice-text {
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 22px;
    flex: 1;
}

.cr-voice-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 18px;
    border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.cr-voice-role {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
}

.cr-voice-tenure {
    font-size: 0.78rem;
    color: var(--gray);
}

.cr-honest-section {
    background: var(--cream);
}

.cr-honest-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.cr-honest-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.cr-honest-item {
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cr-honest-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.cr-honest-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--navy);
    line-height: 1.3;
}

.cr-honest-item p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
}

.cr-honest-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.cr-honest-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cr-honest-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 43, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
}

.cr-honest-float-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.cr-honest-float-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.02em;
    line-height: 1;
}

@media (max-width: 1024px) {
    .cr-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cr-hero-panel {
        max-width: 520px;
    }

    .cr-life-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cr-life-media {
        aspect-ratio: 16 / 10;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .cr-apprentice-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cr-honest-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cr-honest-media {
        aspect-ratio: 16 / 10;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cr-hiring-timeline::before {
        left: 24px;
    }

    .cr-hiring-step {
        gap: 20px;
    }

    .cr-hiring-marker {
        width: 48px;
    }

    .cr-hiring-num {
        width: 48px;
        height: 48px;
        font-size: 0.9rem;
    }

    .cr-apprentice-track p {
        padding-left: 0;
    }
}

@media (max-width: 640px) {
    .cr-hero {
        padding: 48px 0 64px;
    }

    .cr-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cr-hero-actions .btn {
        width: 100%;
    }

    .cr-job {
        padding: 24px;
    }

    .cr-job-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .cr-job-title-group h3 {
        font-size: 1.15rem;
    }

    .cr-apprentice-tracks {
        padding: 24px;
    }

    .cr-apprentice-track-head {
        flex-direction: column;
        gap: 4px;
    }

    .cr-apprentice-track-month {
        min-width: 0;
    }

    .cr-life-item {
        flex-direction: column;
        gap: 8px;
    }

    .cr-life-time {
        min-width: 0;
    }

    .cr-hiring-body {
        padding: 20px 22px;
    }
}
.fq-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.fq-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fq-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 30% 40%, black 0%, transparent 70%);
}

.fq-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.fq-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}

.fq-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
}

.fq-hero .breadcrumbs a:hover {
    color: var(--orange-glow);
}

.fq-hero-content {
    max-width: 780px;
}

.fq-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.fq-hero-content > p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}

.fq-search-wrap {
    position: relative;
    max-width: 640px;
}

.fq-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    transition: border-color 0.2s, background 0.2s;
}

.fq-search:focus-within {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 107, 43, 0.15);
}

.fq-search-icon {
    font-size: 1.05rem;
    opacity: 0.6;
    flex-shrink: 0;
}

.fq-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    min-width: 0;
}

.fq-search input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.fq-search-clear {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.fq-search-clear:hover {
    background: var(--orange);
}

.fq-search-meta {
    margin-top: 14px;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

.fq-cats {
    background: var(--white);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    padding: 24px 0;
    position: sticky;
    top: 72px;
    z-index: 800;
    box-shadow: 0 2px 8px rgba(10, 22, 40, 0.03);
}

.fq-cats-inner {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.fq-cats-inner::-webkit-scrollbar {
    display: none;
}

.fq-cat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--cream);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--navy);
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
    flex-shrink: 0;
    min-width: 200px;
}

.fq-cat:hover {
    border-color: var(--orange);
    background: rgba(255, 107, 43, 0.04);
    transform: translateY(-2px);
}

.fq-cat-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
}

.fq-cat-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.fq-cat-body strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.fq-cat-body span {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.fq-main {
    padding: 72px 0 96px;
    background: var(--cream);
}

.fq-main-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    align-items: start;
}

.fq-content {
    min-width: 0;
}

.fq-group {
    margin-bottom: 64px;
    scroll-margin-top: 96px;
}

.fq-group:last-of-type {
    margin-bottom: 0;
}

.fq-group-head {
    padding-bottom: 22px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.fq-group-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.fq-group-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.fq-group-head > p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.65;
    max-width: 620px;
}

.fq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 22, 40, 0.05);
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.fq-item:hover {
    box-shadow: var(--shadow-sm);
}

.fq-item.open {
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: 0 8px 24px rgba(255, 107, 43, 0.08);
}

.fq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.2s;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.fq-q:hover {
    color: var(--orange);
}

.fq-item.open .fq-q {
    color: var(--orange);
}

.fq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 107, 43, 0.1);
    color: var(--orange);
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s, color 0.3s;
    line-height: 1;
}

.fq-item.open .fq-icon {
    transform: rotate(45deg);
    background: var(--orange);
    color: var(--white);
}

.fq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.fq-item.open .fq-a {
    max-height: 800px;
}

.fq-a-inner {
    padding: 0 26px 26px;
    border-top: 1px dashed rgba(10, 22, 40, 0.08);
    padding-top: 22px;
    margin-top: 0;
}

.fq-a-inner p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 12px;
}

.fq-a-inner p:last-child {
    margin-bottom: 0;
}

.fq-a-inner a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
    transition: border-color 0.2s;
}

.fq-a-inner a:hover {
    border-color: var(--orange);
}

.fq-empty {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 64px 40px;
    text-align: center;
    border: 1px dashed rgba(10, 22, 40, 0.15);
}

.fq-empty-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.fq-empty h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.fq-empty p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.65;
    max-width: 460px;
    margin: 0 auto;
}

.fq-sidebar {
    position: sticky;
    top: 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fq-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    box-shadow: var(--shadow-sm);
}

.fq-sidebar-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.fq-sidebar-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.fq-sidebar-head h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.fq-sidebar-card > p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 20px;
}

.fq-sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.fq-sidebar-form .form-group {
    margin-bottom: 0;
}

.fq-sidebar-form .form-group label {
    font-size: 0.78rem;
    margin-bottom: 5px;
}

.fq-sidebar-form .form-group input,
.fq-sidebar-form .form-group textarea {
    padding: 10px 14px;
    font-size: 0.9rem;
}

.fq-sidebar-submit {
    width: 100%;
    margin-top: 4px;
}

.fq-sidebar-note {
    font-size: 0.72rem;
    color: var(--gray);
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.fq-sidebar-note a {
    color: var(--orange);
    text-decoration: underline;
}

.fq-sidebar-divider {
    height: 1px;
    background: rgba(10, 22, 40, 0.08);
    margin: 20px 0;
}

.fq-sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fq-sidebar-contact-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-bottom: 4px;
}

.fq-sidebar-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--navy);
    font-family: 'Space Grotesk', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: -0.01em;
}

.fq-sidebar-contact-link:hover {
    background: rgba(255, 107, 43, 0.08);
    transform: translateX(4px);
    color: var(--orange);
}

.fq-sidebar-contact-link span {
    font-size: 0.95rem;
}

.fq-sidebar-card-alt {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    position: relative;
    overflow: hidden;
}

.fq-sidebar-card-alt::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.fq-sidebar-card-alt .fq-sidebar-head h3 {
    color: var(--white);
}

.fq-sidebar-card-alt > p {
    color: rgba(255, 255, 255, 0.65);
}

.fq-sidebar-card-alt .btn {
    position: relative;
    z-index: 2;
    width: 100%;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.fq-sidebar-card-alt .btn:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-full {
    width: 100%;
}

.fq-sidebar-card-info {
    background: var(--cream);
}

.fq-sidebar-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.fq-sidebar-hours > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.86rem;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(10, 22, 40, 0.08);
}

.fq-sidebar-hours > div:last-child {
    border-bottom: none;
}

.fq-sidebar-hours span {
    color: var(--gray);
    font-weight: 500;
}

.fq-sidebar-hours strong {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.85rem;
    letter-spacing: -0.01em;
}

.fq-sidebar-info-text {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.fq-related-section {
    background: var(--white);
}

@media (max-width: 1024px) {
    .fq-main-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fq-sidebar {
        position: static;
    }

    .fq-cats {
        position: static;
    }
}

@media (max-width: 640px) {
    .fq-hero {
        padding: 48px 0 64px;
    }

    .fq-hero-content h1 {
        font-size: 2.4rem;
    }

    .fq-main {
        padding: 48px 0 64px;
    }

    .fq-group {
        margin-bottom: 48px;
    }

    .fq-q {
        padding: 18px 20px;
        font-size: 0.98rem;
    }

    .fq-a-inner {
        padding: 0 20px 20px;
        padding-top: 18px;
    }

    .fq-icon {
        width: 24px;
        height: 24px;
        font-size: 0.95rem;
    }

    .fq-sidebar-card {
        padding: 24px;
    }

    .fq-cat {
        min-width: 170px;
        padding: 12px 16px;
    }
}
.legal-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.legal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 30% 40%, black 0%, transparent 70%);
}

.legal-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.legal-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}

.legal-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
}

.legal-hero .breadcrumbs a:hover {
    color: var(--orange-glow);
}

.legal-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: end;
}

.legal-tag-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.legal-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 107, 43, 0.12);
    border: 1px solid rgba(255, 107, 43, 0.25);
    color: var(--orange-glow);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.legal-tag-live {
    background: rgba(56, 209, 122, 0.1);
    border-color: rgba(56, 209, 122, 0.3);
    color: #6ee7a3;
}

.legal-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 0 0 rgba(110, 231, 163, 0.7);
    animation: pulseDot 2s infinite;
}

.legal-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.legal-hero-copy > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 640px;
}

.legal-hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 28px;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.legal-meta-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.legal-meta-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

.legal-meta-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.4;
    word-break: break-word;
}

.legal-summary-section {
    padding: 64px 0;
    background: var(--white);
}

.legal-summary {
    background: linear-gradient(135deg, rgba(255, 107, 43, 0.04) 0%, rgba(255, 107, 43, 0.08) 100%);
    border: 1px solid rgba(255, 107, 43, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.legal-summary-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 107, 43, 0.2);
}

.legal-summary-icon {
    font-size: 1.7rem;
    line-height: 1;
}

.legal-summary-head h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.legal-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.legal-summary-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-summary-item strong {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
}

.legal-summary-item p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
}

.legal-summary-item a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
}

.legal-summary-item a:hover {
    border-color: var(--orange);
}

.legal-main {
    padding: 0 0 96px;
    background: var(--white);
}

.legal-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 56px;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: 96px;
}

.legal-toc-inner {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.legal-toc-head {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.legal-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 24px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 6px;
}

.legal-toc-nav a {
    display: block;
    padding: 9px 12px;
    font-size: 0.85rem;
    color: var(--gray);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s, padding 0.15s;
    line-height: 1.45;
    border-left: 2px solid transparent;
}

.legal-toc-nav a:hover {
    color: var(--navy);
    background: rgba(10, 22, 40, 0.04);
}

.legal-toc-nav a.active {
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    border-left-color: var(--orange);
    font-weight: 600;
}

.legal-toc-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.legal-toc-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: var(--white);
    border: 1.5px solid rgba(10, 22, 40, 0.08);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    text-align: left;
}

.legal-toc-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 107, 43, 0.04);
}

.legal-toc-btn span {
    font-size: 1rem;
    line-height: 1;
}

.legal-toc-btn-outline {
    background: transparent;
}

.legal-content {
    max-width: 780px;
    min-width: 0;
}

.legal-section {
    padding: 40px 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    scroll-margin-top: 96px;
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--navy);
}

.legal-section h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--navy);
    line-height: 1.35;
}

.legal-section p {
    font-size: 0.96rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-left: 4px;
}

.legal-section ul li {
    position: relative;
    padding-left: 26px;
    font-size: 0.94rem;
    color: var(--gray);
    line-height: 1.75;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

.legal-section a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
    transition: border-color 0.2s;
}

.legal-section a:hover {
    border-color: var(--orange);
}

.legal-callout {
    background: rgba(255, 107, 43, 0.06);
    border-left: 3px solid var(--orange);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin: 24px 0;
    font-size: 0.92rem;
    color: var(--navy);
    line-height: 1.7;
}

.legal-callout strong {
    color: var(--orange);
    font-weight: 700;
}

.legal-callout a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
}

.legal-callout-final {
    margin-top: 32px;
    background: var(--cream);
    border-left-color: var(--navy);
}

.legal-callout-final strong {
    color: var(--navy);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(10, 22, 40, 0.06);
    font-size: 0.9rem;
}

.legal-table thead {
    background: var(--cream);
}

.legal-table th {
    text-align: left;
    padding: 14px 18px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.legal-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    color: var(--gray);
    line-height: 1.6;
    vertical-align: top;
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

.legal-table tbody tr:hover {
    background: rgba(255, 107, 43, 0.02);
}

.legal-table td strong {
    color: var(--navy);
    font-weight: 700;
}

.legal-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 24px 0 20px;
}

.legal-right {
    padding: 22px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.legal-right:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 43, 0.25);
}

.legal-right-icon {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1;
}

.legal-right h4 {
    font-family: var(--font-display);
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.3;
}

.legal-right p {
    font-size: 0.84rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.legal-version-log {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.legal-version {
    display: grid;
    grid-template-columns: 60px 150px 1fr;
    gap: 20px;
    padding: 18px 22px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--orange);
    align-items: baseline;
}

.legal-version:first-child {
    background: rgba(255, 107, 43, 0.06);
}

.legal-version-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.01em;
}

.legal-version-date {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.01em;
}

.legal-version-note {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.6;
}

.legal-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.legal-contact-card {
    padding: 26px 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 22, 40, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.3s, border-color 0.3s;
}

.legal-contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 43, 0.25);
}

.legal-contact-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
    line-height: 1;
}

.legal-contact-card h4 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.legal-contact-card a,
.legal-contact-card strong {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    letter-spacing: -0.01em;
    word-break: break-word;
}

.legal-contact-card span {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.55;
}

.legal-contact-card a:hover {
    color: var(--navy);
}

.legal-footer-note {
    margin-top: 48px;
    padding: 28px;
    background: var(--cream);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legal-footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
    font-size: 0.82rem;
    color: var(--gray);
}

.legal-footer-meta strong {
    color: var(--navy);
    font-weight: 700;
    margin-right: 4px;
}

.legal-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    font-size: 0.85rem;
}

.legal-footer-links a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-footer-links a:hover {
    color: var(--orange);
}

.legal-footer-links span {
    color: rgba(10, 22, 40, 0.2);
}

.legal-related-section {
    background: var(--cream);
}

@media (max-width: 1024px) {
    .legal-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-toc {
        position: static;
    }

    .legal-toc-nav {
        max-height: none;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 6px;
    }

    .legal-toc-nav a {
        border-left: none;
        border-top: 2px solid transparent;
    }

    .legal-toc-nav a.active {
        border-left: none;
        border-top-color: var(--orange);
    }
}

@media (max-width: 768px) {
    .legal-version {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .legal-table {
        font-size: 0.82rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 12px 14px;
    }

    .legal-table-wrap {
        overflow-x: auto;
    }
}

@media (max-width: 640px) {
    .legal-hero {
        padding: 48px 0 64px;
    }

    .legal-hero-copy h1 {
        font-size: 2.2rem;
    }

    .legal-hero-meta {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .legal-summary {
        padding: 28px 22px;
    }

    .legal-summary-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .legal-toc-inner {
        padding: 22px;
    }

    .legal-toc-nav {
        grid-template-columns: 1fr;
    }

    .legal-section {
        padding: 32px 0;
    }

    .legal-section h2 {
        font-size: 1.4rem;
    }

    .legal-rights-grid,
    .legal-contact-grid {
        grid-template-columns: 1fr;
    }

    .legal-footer-meta {
        flex-direction: column;
        gap: 10px;
    }

    .legal-footer-note {
        padding: 22px;
    }
}
.tos-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.tos-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tos-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(255, 255, 255, 0.02) 39px, rgba(255, 255, 255, 0.02) 40px),
        repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(255, 255, 255, 0.02) 39px, rgba(255, 255, 255, 0.02) 40px);
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 40% 50%, black 0%, transparent 70%);
}

.tos-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.tos-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}

.tos-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
}

.tos-hero .breadcrumbs a:hover {
    color: var(--orange-glow);
}

.tos-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
}

.tos-hero-tag-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tos-hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tos-hero-tag-accent {
    background: rgba(56, 209, 122, 0.1);
    border-color: rgba(56, 209, 122, 0.3);
    color: #6ee7a3;
}

.tos-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.tos-hero-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 32px;
}

.tos-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.tos-hero-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.tos-hero-actions .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.tos-hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tos-hero-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.tos-hero-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 43, 0.35);
    background: rgba(255, 107, 43, 0.06);
}

.tos-hero-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 107, 43, 0.15);
    border: 1px solid rgba(255, 107, 43, 0.3);
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    color: var(--orange-glow);
    flex-shrink: 0;
}

.tos-hero-card-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.tos-hero-card-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}

.tos-hero-card-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.tos-glance-section {
    padding: 64px 0;
    background: var(--cream);
}

.tos-glance {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10, 22, 40, 0.05);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.tos-glance-head {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.tos-glance-head-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 107, 43, 0.15);
    border: 1px solid rgba(255, 107, 43, 0.3);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: var(--orange-glow);
    flex-shrink: 0;
}

.tos-glance-head h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.tos-glance-head p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.tos-glance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    padding: 8px;
}

.tos-glance-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 22px;
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.tos-glance-item:hover {
    background: rgba(10, 22, 40, 0.02);
}

.tos-glance-mark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.tos-glance-yes .tos-glance-mark {
    background: rgba(56, 209, 122, 0.12);
    color: #1e9e56;
    border: 1px solid rgba(56, 209, 122, 0.3);
}

.tos-glance-no .tos-glance-mark {
    background: rgba(255, 107, 43, 0.12);
    color: var(--orange);
    border: 1px solid rgba(255, 107, 43, 0.3);
}

.tos-glance-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
    line-height: 1.35;
}

.tos-glance-item p {
    font-size: 0.84rem;
    color: var(--gray);
    line-height: 1.6;
}

.tos-main {
    padding: 0 0 96px;
    background: var(--white);
}

.tos-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: start;
}

.tos-nav {
    position: sticky;
    top: 96px;
}

.tos-nav-inner {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
    position: relative;
    overflow: hidden;
}

.tos-nav-inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tos-nav-head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.tos-nav-head-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.03em;
    line-height: 1;
}

.tos-nav-head-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.tos-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 24px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 4px;
    position: relative;
    z-index: 2;
}

.tos-nav-links::-webkit-scrollbar {
    width: 4px;
}

.tos-nav-links::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.tos-nav-links a {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    line-height: 1.4;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    border-left: 2px solid transparent;
}

.tos-nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(3px);
}

.tos-nav-links a.active {
    color: var(--white);
    background: rgba(255, 107, 43, 0.12);
    border-left-color: var(--orange);
}

.tos-nav-links a.active .tos-nav-num {
    color: var(--orange-glow);
}

.tos-nav-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.04em;
    flex-shrink: 0;
    transition: color 0.2s;
}

.tos-nav-label {
    font-weight: 500;
}

.tos-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.tos-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    text-align: left;
}

.tos-nav-btn:hover {
    background: rgba(255, 107, 43, 0.12);
    border-color: rgba(255, 107, 43, 0.35);
}

.tos-nav-btn span {
    font-size: 0.95rem;
    line-height: 1;
}

.tos-nav-btn-outline {
    background: transparent;
}

.tos-content {
    max-width: 800px;
    min-width: 0;
}

.tos-section {
    padding: 40px 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    scroll-margin-top: 96px;
}

.tos-section:first-child {
    padding-top: 0;
}

.tos-section:last-of-type {
    border-bottom: none;
}

.tos-section-head {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(10, 22, 40, 0.1);
}

.tos-section-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: rgba(255, 107, 43, 0.35);
    letter-spacing: -0.03em;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 4px;
}

.tos-section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 6px;
}

.tos-section-sub {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

.tos-section-body > p {
    font-size: 0.96rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.tos-section-body h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: 28px;
    margin-bottom: 10px;
    color: var(--navy);
    line-height: 1.35;
}

.tos-section-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-left: 4px;
}

.tos-section-body ul li {
    position: relative;
    padding-left: 24px;
    font-size: 0.94rem;
    color: var(--gray);
    line-height: 1.75;
}

.tos-section-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

.tos-section-body a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
    transition: border-color 0.2s;
}

.tos-section-body a:hover {
    border-color: var(--orange);
}

.tos-keyline {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 24px;
    background: rgba(10, 22, 40, 0.03);
    border-left: 3px solid var(--navy);
    border-radius: var(--radius-md);
    margin: 20px 0 8px;
}

.tos-keyline-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.tos-keyline strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tos-keyline p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

.tos-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.tos-split-col {
    border-radius: var(--radius-md);
    padding: 24px 22px;
    border-left: 3px solid;
}

.tos-split-in {
    background: rgba(56, 209, 122, 0.05);
    border-left-color: #38a169;
}

.tos-split-out {
    background: rgba(255, 107, 43, 0.05);
    border-left-color: var(--orange);
}

.tos-split-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.tos-split-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}

.tos-split-in .tos-split-icon {
    background: rgba(56, 209, 122, 0.15);
    color: #1e9e56;
}

.tos-split-out .tos-split-icon {
    background: rgba(255, 107, 43, 0.15);
    color: var(--orange);
}

.tos-split-head h4 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.tos-split-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.tos-split-col ul li {
    position: relative;
    padding-left: 20px;
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.tos-split-col ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.tos-split-in ul li::before {
    background: #38a169;
}

.tos-split-out ul li::before {
    background: var(--orange);
}

.tos-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0 24px;
    padding: 0;
    counter-reset: tos;
}

.tos-steps li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 22, 40, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0;
    padding-left: 20px;
}

.tos-steps li:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.tos-steps li::before {
    display: none;
}

.tos-steps-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 43, 0.3);
}

.tos-steps li > div {
    flex: 1;
    min-width: 0;
}

.tos-steps li strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.35;
}

.tos-steps li p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.tos-payment-table {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(10, 22, 40, 0.06);
    margin: 20px 0 24px;
}

.tos-payment-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.5fr;
    gap: 16px;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.55;
}

.tos-payment-row:last-child {
    border-bottom: none;
}

.tos-payment-head {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 22px;
}

.tos-payment-head span {
    color: rgba(255, 255, 255, 0.75);
}

.tos-payment-row:not(.tos-payment-head):hover {
    background: rgba(255, 107, 43, 0.02);
}

.tos-payment-row span:first-child {
    color: var(--navy);
    font-weight: 600;
}

.tos-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(10, 22, 40, 0.06);
    font-size: 0.9rem;
}

.tos-table thead {
    background: var(--navy);
}

.tos-table th {
    text-align: left;
    padding: 14px 18px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tos-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    color: var(--gray);
    line-height: 1.6;
    vertical-align: top;
}

.tos-table tbody tr:last-child td {
    border-bottom: none;
}

.tos-table tbody tr:hover {
    background: rgba(255, 107, 43, 0.02);
}

.tos-table td strong {
    color: var(--navy);
    font-weight: 700;
}

.tos-warranty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0 24px;
}

.tos-warranty-card {
    border-radius: var(--radius-md);
    padding: 24px 22px;
    border: 1px solid;
}

.tos-warranty-covered {
    background: rgba(56, 209, 122, 0.05);
    border-color: rgba(56, 209, 122, 0.25);
}

.tos-warranty-not {
    background: rgba(255, 107, 43, 0.05);
    border-color: rgba(255, 107, 43, 0.25);
}

.tos-warranty-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.tos-warranty-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}

.tos-warranty-covered .tos-warranty-icon {
    background: rgba(56, 209, 122, 0.15);
    color: #1e9e56;
}

.tos-warranty-not .tos-warranty-icon {
    background: rgba(255, 107, 43, 0.15);
    color: var(--orange);
}

.tos-warranty-head h4 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.tos-warranty-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.tos-warranty-card ul li {
    position: relative;
    padding-left: 20px;
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.tos-warranty-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.tos-warranty-covered ul li::before {
    background: #38a169;
}

.tos-warranty-not ul li::before {
    background: var(--orange);
}

.tos-callout {
    background: rgba(255, 107, 43, 0.06);
    border-left: 3px solid var(--orange);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin: 24px 0;
    font-size: 0.92rem;
    color: var(--navy);
    line-height: 1.75;
}

.tos-callout strong {
    color: var(--orange);
    font-weight: 700;
}

.tos-callout a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
}

.tos-callout-warn {
    background: rgba(245, 166, 35, 0.08);
    border-left-color: #f5a623;
}

.tos-callout-warn strong {
    color: #b8791a;
}

.tos-callout-final {
    background: var(--cream);
    border-left-color: var(--navy);
}

.tos-callout-final strong {
    color: var(--navy);
}

.tos-prohibited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.tos-prohibited-card {
    padding: 24px 22px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 22, 40, 0.06);
    border-left: 3px solid #d1495b;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tos-prohibited-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.tos-prohibited-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(209, 73, 91, 0.08);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.tos-prohibited-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.tos-prohibited-card p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

.tos-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 24px;
    padding: 0;
}

.tos-check-list li {
    position: relative;
    padding-left: 32px;
    font-size: 0.94rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.tos-check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(56, 209, 122, 0.12);
    color: #1e9e56;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 700;
}

.tos-liability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0 24px;
}

.tos-liability-block {
    padding: 22px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--navy);
}

.tos-liability-label {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.35;
}

.tos-liability-block p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

.tos-legal-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
}

.tos-legal-contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tos-legal-contact-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
}

.tos-legal-contact-item a,
.tos-legal-contact-item span {
    font-size: 0.88rem;
    color: var(--navy);
    line-height: 1.6;
    font-weight: 500;
}

.tos-legal-contact-item a {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
    word-break: break-word;
}

.tos-legal-contact-item a:hover {
    border-color: var(--orange);
}

.tos-footer-doc {
    margin-top: 48px;
    padding: 32px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.tos-footer-doc::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tos-footer-doc-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.tos-footer-doc-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.tos-footer-doc-head strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.tos-footer-doc-head span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.tos-footer-doc-rows {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.tos-footer-doc-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    align-items: baseline;
}

.tos-footer-doc-row:last-child {
    border-bottom: none;
}

.tos-footer-doc-row span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.tos-footer-doc-row strong {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--orange-glow);
    text-align: right;
    letter-spacing: -0.01em;
}

.tos-footer-doc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    font-size: 0.84rem;
    position: relative;
    z-index: 2;
}

.tos-footer-doc-links a {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 1.5px solid transparent;
}

.tos-footer-doc-links a:hover {
    color: var(--orange-glow);
    border-bottom-color: var(--orange-glow);
}

.tos-footer-doc-links span {
    color: rgba(255, 255, 255, 0.2);
}

.tos-related-section {
    background: var(--cream);
}

@media (max-width: 1024px) {
    .tos-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tos-hero-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .tos-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tos-nav {
        position: static;
    }

    .tos-nav-links {
        max-height: none;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 4px;
    }

    .tos-nav-links a {
        border-left: none;
        border-top: 2px solid transparent;
    }

    .tos-nav-links a.active {
        border-left: none;
        border-top-color: var(--orange);
    }
}

@media (max-width: 768px) {
    .tos-split {
        grid-template-columns: 1fr;
    }

    .tos-warranty-grid {
        grid-template-columns: 1fr;
    }

    .tos-liability-grid {
        grid-template-columns: 1fr;
    }

    .tos-payment-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .tos-payment-head {
        display: none;
    }

    .tos-payment-row span:first-child {
        font-family: var(--font-display);
        font-size: 1rem;
        padding-bottom: 6px;
        border-bottom: 1px dashed rgba(10, 22, 40, 0.08);
        margin-bottom: 4px;
    }

    .tos-table {
        font-size: 0.82rem;
    }

    .tos-table th,
    .tos-table td {
        padding: 12px 14px;
    }
}

@media (max-width: 640px) {
    .tos-hero {
        padding: 48px 0 64px;
    }

    .tos-hero-copy h1 {
        font-size: 2.2rem;
    }

    .tos-hero-cards {
        grid-template-columns: 1fr;
    }

    .tos-glance-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 24px 22px;
    }

    .tos-glance-grid {
        padding: 4px;
    }

    .tos-glance-item {
        padding: 16px 18px;
    }

    .tos-nav-inner {
        padding: 22px;
    }

    .tos-nav-links {
        grid-template-columns: 1fr;
    }

    .tos-section {
        padding: 32px 0;
    }

    .tos-section-head {
        gap: 16px;
    }

    .tos-section-num {
        font-size: 1.8rem;
    }

    .tos-section-head h2 {
        font-size: 1.3rem;
    }

    .tos-steps li {
        padding: 16px;
        gap: 14px;
    }

    .tos-footer-doc {
        padding: 24px;
    }

    .tos-footer-doc-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .tos-footer-doc-row strong {
        text-align: left;
    }

    .tos-legal-contact {
        padding: 20px;
    }
}
.rf-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.rf-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.rf-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(18, 35, 64, 0.85) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.rf-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.rf-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}

.rf-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
}

.rf-hero .breadcrumbs a:hover {
    color: var(--orange-glow);
}

.rf-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
}

.rf-hero-tag-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.rf-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rf-hero-tag-accent {
    background: rgba(56, 209, 122, 0.1);
    border-color: rgba(56, 209, 122, 0.3);
    color: #6ee7a3;
}

.rf-hero-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 0 0 rgba(110, 231, 163, 0.7);
    animation: pulseDot 2s infinite;
}

.rf-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.rf-hero-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 32px;
}

.rf-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.rf-hero-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.rf-hero-actions .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.rf-hero-panel {
    background: rgba(10, 22, 40, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.rf-hero-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.rf-hero-panel-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6ee7a3;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.rf-hero-panel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 8px rgba(110, 231, 163, 0.8);
}

.rf-hero-panel-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rf-hero-panel-row:last-child {
    border-bottom: none;
}

.rf-hero-panel-key {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
}

.rf-hero-panel-val {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    text-align: right;
    letter-spacing: -0.01em;
}

.rf-hero-panel-row-highlight {
    background: rgba(255, 107, 43, 0.1);
    margin: 4px -12px 0;
    padding: 12px;
    border-radius: 6px;
    border-bottom: none;
}

.rf-hero-panel-row-highlight .rf-hero-panel-key {
    color: var(--orange-glow);
}

.rf-hero-panel-row-highlight .rf-hero-panel-val {
    color: var(--orange-glow);
    font-size: 1.05rem;
}

.rf-promise-section {
    padding: 48px 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.rf-promise {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(56, 209, 122, 0.08) 0%, rgba(56, 209, 122, 0.02) 100%);
    border: 1.5px solid rgba(56, 209, 122, 0.3);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}

.rf-promise-left {
    display: flex;
    gap: 24px;
    align-items: center;
    flex: 1;
    min-width: 280px;
}

.rf-promise-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(56, 209, 122, 0.15);
    border: 1px solid rgba(56, 209, 122, 0.35);
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    flex-shrink: 0;
}

.rf-promise-left h2 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.rf-promise-left p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.65;
    max-width: 720px;
}

.rf-scenario-section {
    padding: 96px 0;
    background: var(--white);
}

.rf-scenario-switcher {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    margin-top: 48px;
    align-items: start;
}

.rf-scenario-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    top: 96px;
}

.rf-scenario-btn {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    background: var(--cream);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: transform 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.rf-scenario-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s;
}

.rf-scenario-btn:hover {
    border-color: rgba(255, 107, 43, 0.25);
    transform: translateX(4px);
}

.rf-scenario-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.15);
}

.rf-scenario-btn.active::before {
    transform: scaleY(1);
}

.rf-scenario-btn-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
}

.rf-scenario-btn-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.rf-scenario-btn-text strong {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.2s;
    line-height: 1.3;
}

.rf-scenario-btn.active .rf-scenario-btn-text strong {
    color: var(--white);
}

.rf-scenario-btn-text small {
    font-size: 0.78rem;
    color: var(--gray);
    transition: color 0.2s;
}

.rf-scenario-btn.active .rf-scenario-btn-text small {
    color: rgba(255, 255, 255, 0.55);
}

.rf-scenario-content {
    position: relative;
    min-width: 0;
}

.rf-scenario-panel {
    display: none;
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.rf-scenario-panel.active {
    display: block;
    animation: rfFade 0.4s ease;
}

@keyframes rfFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.rf-scenario-head {
    padding: 32px 36px 26px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    background: var(--cream);
}

.rf-scenario-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.rf-scenario-tag-green {
    background: rgba(56, 209, 122, 0.12);
    color: #1e9e56;
    border: 1px solid rgba(56, 209, 122, 0.3);
}

.rf-scenario-tag-orange {
    background: rgba(255, 107, 43, 0.1);
    color: var(--orange);
    border: 1px solid rgba(255, 107, 43, 0.3);
}

.rf-scenario-tag-red {
    background: rgba(209, 73, 91, 0.1);
    color: #d1495b;
    border: 1px solid rgba(209, 73, 91, 0.3);
}

.rf-scenario-head h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 10px;
    color: var(--navy);
}

.rf-scenario-head p {
    font-size: 0.98rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 620px;
}

.rf-scenario-body {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rf-scenario-block {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 24px 26px;
}

.rf-scenario-block h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
    margin-bottom: 14px;
}

.rf-scenario-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rf-scenario-block ul li {
    position: relative;
    padding-left: 26px;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
}

.rf-scenario-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 7px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(-45deg);
}

.rf-scenario-block ul li strong {
    color: var(--navy);
    font-weight: 700;
}

.rf-scenario-block-accent {
    background: rgba(255, 107, 43, 0.06);
    border-left: 3px solid var(--orange);
}

.rf-scenario-block-accent h4 {
    color: var(--orange);
}

.rf-scenario-block-accent p {
    font-size: 0.92rem;
    color: var(--navy);
    line-height: 1.75;
    margin: 0;
}

.rf-scenario-block-accent a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
    transition: border-color 0.2s;
}

.rf-scenario-block-accent a:hover {
    border-color: var(--orange);
}

.rf-scenario-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 20px;
    border-top: 1px dashed rgba(10, 22, 40, 0.12);
}

.rf-scenario-meta > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rf-scenario-meta-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
}

.rf-scenario-meta-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.rf-process-section {
    background: var(--cream);
}

.rf-process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.rf-process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 28px;
    align-items: flex-start;
}

.rf-process-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 24px;
    height: 100%;
}

.rf-process-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', monospace;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(255, 107, 43, 0.35);
    flex-shrink: 0;
    border: 3px solid var(--white);
    position: relative;
    z-index: 2;
}

.rf-process-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange) 0%, rgba(255, 107, 43, 0.15) 100%);
    margin-top: 4px;
    min-height: 40px;
}

.rf-process-step-end .rf-process-line {
    display: none;
}

.rf-process-body {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 20px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.rf-process-body:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.rf-process-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.rf-process-time {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rf-process-where {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 600;
    position: relative;
    padding-left: 16px;
}

.rf-process-where::before {
    content: '\00B7';
    position: absolute;
    left: 5px;
    color: rgba(10, 22, 40, 0.2);
}

.rf-process-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: var(--navy);
    line-height: 1.3;
}

.rf-process-body p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.rf-process-body p a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
}

.rf-process-body p a:hover {
    border-color: var(--orange);
}

.rf-coverage-section {
    background: var(--white);
}

.rf-coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.rf-coverage-col {
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1.5px solid;
}

.rf-coverage-covered {
    background: rgba(56, 209, 122, 0.04);
    border-color: rgba(56, 209, 122, 0.25);
}

.rf-coverage-not {
    background: rgba(255, 107, 43, 0.04);
    border-color: rgba(255, 107, 43, 0.25);
}

.rf-coverage-head {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.rf-coverage-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.rf-coverage-covered .rf-coverage-icon {
    background: rgba(56, 209, 122, 0.15);
    color: #1e9e56;
    border: 1px solid rgba(56, 209, 122, 0.3);
}

.rf-coverage-not .rf-coverage-icon {
    background: rgba(255, 107, 43, 0.15);
    color: var(--orange);
    border: 1px solid rgba(255, 107, 43, 0.3);
}

.rf-coverage-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    display: block;
    margin-bottom: 4px;
}

.rf-coverage-head h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--navy);
    line-height: 1.25;
}

.rf-coverage-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rf-coverage-list li {
    position: relative;
    padding-left: 32px;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
}

.rf-coverage-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 8px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
}

.rf-coverage-covered .rf-coverage-list li::before {
    border-color: #38a169;
}

.rf-coverage-not .rf-coverage-list li::before {
    border-color: var(--orange);
    transform: rotate(45deg);
    height: 0;
}

.rf-coverage-not .rf-coverage-list li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 0;
    border-top: 2px solid var(--orange);
    transform: rotate(-45deg);
}

.rf-coverage-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.65;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.rf-coverage-note a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
}

.rf-coverage-note a:hover {
    border-color: var(--orange);
}

.rf-timeline-section {
    background: var(--cream);
}

.rf-timeline-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.rf-timeline-head .section-label {
    justify-content: center;
}

.rf-timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.rf-timeline-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.rf-timeline-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: var(--shadow-sm);
}

.rf-timeline-icon {
    font-size: 1.5rem;
    margin-bottom: 16px;
    line-height: 1;
}

.rf-timeline-card h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.rf-timeline-bar {
    height: 8px;
    background: rgba(10, 22, 40, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.rf-timeline-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(to right, var(--orange), var(--orange-glow));
    border-radius: 4px;
}

.rf-timeline-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rf-timeline-meta strong {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.01em;
}

.rf-timeline-meta span {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.55;
}

.rf-exclusions-section {
    background: var(--white);
}

.rf-exclusions-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.rf-exclusions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.rf-exclusion {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 22px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 3px solid #d1495b;
    transition: transform 0.3s, box-shadow 0.3s;
}

.rf-exclusion:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.rf-exclusion-icon {
    font-size: 1.3rem;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.rf-exclusion h4 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--navy);
    line-height: 1.3;
}

.rf-exclusion p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

.rf-exclusions-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.rf-exclusions-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rf-exclusions-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 209, 122, 0.4);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rf-exclusions-float-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.rf-exclusions-float-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #6ee7a3;
    letter-spacing: -0.03em;
    line-height: 1;
}

.rf-exclusions-float-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.rf-numbers-section {
    background: var(--navy);
    color: var(--white);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.rf-numbers-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.rf-numbers-section .section-label {
    color: var(--orange-glow);
}

.rf-numbers-section .section-title {
    color: var(--white);
}

.rf-numbers-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.rf-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.rf-number {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: background 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rf-number:hover {
    background: rgba(255, 107, 43, 0.06);
    border-color: rgba(255, 107, 43, 0.25);
}

.rf-number-value {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}

.rf-number-label {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.rf-number-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.rf-forms-section {
    background: var(--cream);
}

.rf-forms-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: start;
}

.rf-forms-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.rf-form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.rf-form-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 43, 0.25);
    box-shadow: var(--shadow-sm);
}

.rf-form-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    padding: 4px 11px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.rf-form-card h4 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.35;
}

.rf-form-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.rf-forms-media {
    position: sticky;
    top: 96px;
}

.rf-forms-media-inner {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(10, 22, 40, 0.15);
}

.rf-forms-media-inner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.rf-forms-media-head {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.rf-forms-media-rows {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.rf-forms-media-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    align-items: baseline;
}

.rf-forms-media-row:last-child {
    border-bottom: none;
}

.rf-forms-media-row span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.rf-forms-media-row strong {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.01em;
    text-align: right;
    white-space: nowrap;
}

.rf-forms-media-cta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.rf-forms-media-cta .btn {
    width: 100%;
}

.rf-complaint-section {
    background: var(--white);
    padding: 96px 0;
}

.rf-complaint-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.rf-complaint-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.rf-complaint-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rf-complaint-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.rf-complaint-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 22px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
}

.rf-complaint-step:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.rf-complaint-level {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    padding: 5px 11px;
    border-radius: 999px;
    flex-shrink: 0;
    white-space: nowrap;
}

.rf-complaint-step h4 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--navy);
    line-height: 1.35;
}

.rf-complaint-step p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

.rf-complaint-step p a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 107, 43, 0.3);
}

.rf-complaint-step p a:hover {
    border-color: var(--orange);
}

.rf-complaint-callout {
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    line-height: 1.7;
}

.rf-complaint-callout strong {
    color: var(--orange-glow);
    font-weight: 700;
}

.rf-complaint-callout a {
    color: var(--orange-glow);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 140, 90, 0.4);
}

.rf-complaint-callout a:hover {
    border-color: var(--orange-glow);
}

.rf-footer-doc-section {
    background: var(--cream);
    padding: 64px 0;
}

.rf-footer-doc {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.rf-footer-doc::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.rf-footer-doc-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.rf-footer-doc-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.rf-footer-doc-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.rf-footer-doc-head strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1.25;
}

.rf-footer-doc-head span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.rf-footer-doc-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rf-footer-doc-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rf-footer-doc-row span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.rf-footer-doc-row strong {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--orange-glow);
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.rf-footer-doc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

.rf-footer-doc-links a {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 1.5px solid transparent;
}

.rf-footer-doc-links a:hover {
    color: var(--orange-glow);
    border-bottom-color: var(--orange-glow);
}

.rf-footer-doc-links span {
    color: rgba(255, 255, 255, 0.25);
}

.rf-related-section {
    background: var(--cream);
}

@media (max-width: 1024px) {
    .rf-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rf-hero-panel {
        max-width: 520px;
    }

    .rf-scenario-switcher {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rf-scenario-menu {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
        gap: 10px;
    }

    .rf-scenario-btn {
        flex-shrink: 0;
        min-width: 220px;
    }

    .rf-scenario-btn::before {
        display: none;
    }

    .rf-scenario-btn:hover {
        transform: none;
    }

    .rf-coverage-grid {
        grid-template-columns: 1fr;
    }

    .rf-exclusions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rf-exclusions-media {
        aspect-ratio: 16 / 10;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .rf-forms-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rf-forms-media {
        position: static;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .rf-complaint-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rf-complaint-media {
        aspect-ratio: 16 / 10;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .rf-footer-doc-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .rf-scenario-meta {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .rf-footer-doc-rows {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .rf-hero {
        padding: 48px 0 64px;
    }

    .rf-hero-copy h1 {
        font-size: 2.2rem;
    }

    .rf-hero-panel {
        padding: 22px 20px;
    }

    .rf-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .rf-hero-actions .btn {
        width: 100%;
    }

    .rf-promise {
        padding: 24px 22px;
        gap: 20px;
    }

    .rf-promise-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .rf-promise-cta {
        width: 100%;
    }

    .rf-scenario-section {
        padding: 64px 0;
    }

    .rf-scenario-head {
        padding: 24px 22px 20px;
    }

    .rf-scenario-head h3 {
        font-size: 1.35rem;
    }

    .rf-scenario-body {
        padding: 24px 22px;
    }

    .rf-process-step {
        grid-template-columns: 44px 1fr;
        gap: 16px;
    }

    .rf-process-num {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }

    .rf-process-body {
        padding: 20px 22px;
    }

    .rf-coverage-col {
        padding: 24px 22px;
    }

    .rf-exclusions-float-value {
        font-size: 1.6rem;
    }

    .rf-forms-media-inner {
        padding: 24px 22px;
    }

    .rf-complaint-step {
        flex-direction: column;
        gap: 8px;
    }

    .rf-footer-doc {
        padding: 28px 24px;
    }
}
.sh-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.sh-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sh-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 40% 50%, black 0%, transparent 70%);
}

.sh-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.sh-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}

.sh-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
}

.sh-hero .breadcrumbs a:hover {
    color: var(--orange-glow);
}

.sh-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
}

.sh-hero-tag-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.sh-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sh-hero-tag-accent {
    background: rgba(56, 209, 122, 0.1);
    border-color: rgba(56, 209, 122, 0.3);
    color: #6ee7a3;
}

.sh-hero-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 0 0 rgba(110, 231, 163, 0.7);
    animation: pulseDot 2s infinite;
}

.sh-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.sh-hero-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 32px;
}

.sh-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.sh-hero-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.sh-hero-actions .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.sh-hero-panel {
    background: rgba(10, 22, 40, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.sh-hero-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.sh-hero-panel-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6ee7a3;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.sh-hero-panel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 8px rgba(110, 231, 163, 0.8);
}

.sh-hero-panel-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sh-hero-panel-row:last-child {
    border-bottom: none;
}

.sh-hero-panel-key {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
}

.sh-hero-panel-val {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    text-align: right;
    letter-spacing: -0.01em;
}

.sh-hero-panel-row-highlight {
    background: rgba(255, 107, 43, 0.1);
    margin: 4px -12px 0;
    padding: 12px;
    border-radius: 6px;
    border-bottom: none;
}

.sh-hero-panel-row-highlight .sh-hero-panel-key {
    color: var(--orange-glow);
}

.sh-hero-panel-row-highlight .sh-hero-panel-val {
    color: var(--orange-glow);
    font-size: 1.05rem;
}

.sh-track-section {
    padding: 40px 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.sh-track {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.sh-track::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sh-track-left {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sh-track-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 107, 43, 0.15);
    border: 1px solid rgba(255, 107, 43, 0.3);
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.sh-track-left h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    color: var(--white);
}

.sh-track-left p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    max-width: 560px;
}

.sh-track-form {
    display: flex;
    gap: 10px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.sh-track-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s, background 0.2s;
    min-width: 0;
}

.sh-track-input-wrap:focus-within {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.1);
}

.sh-track-input-icon {
    font-size: 1rem;
    opacity: 0.6;
    flex-shrink: 0;
}

.sh-track-input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 16px 0;
    color: var(--white);
    font-family: 'Space Grotesk', monospace;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    min-width: 0;
}

.sh-track-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: normal;
    font-weight: 500;
}

.sh-track-btn {
    flex-shrink: 0;
    padding: 16px 28px;
}

.sh-carriers-section {
    background: var(--white);
}

.sh-carriers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    align-items: stretch;
}

.sh-carrier-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(10, 22, 40, 0.06);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.sh-carrier-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 43, 0.3);
}

.sh-carrier-card-featured {
    background: var(--navy);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 12px 40px rgba(255, 107, 43, 0.18);
    transform: translateY(-8px);
}

.sh-carrier-card-featured:hover {
    transform: translateY(-14px);
}

.sh-carrier-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px 20px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.sh-carrier-card-featured .sh-carrier-head {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.sh-carrier-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.sh-carrier-card-featured .sh-carrier-logo {
    color: var(--orange-glow);
}

.sh-carrier-tag {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
    background: rgba(10, 22, 40, 0.06);
    padding: 5px 10px;
    border-radius: 999px;
}

.sh-carrier-card-featured .sh-carrier-tag {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
}

.sh-carrier-tag-hot {
    background: var(--orange) !important;
    color: var(--white) !important;
}

.sh-carrier-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sh-carrier-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    line-height: 1.25;
}

.sh-carrier-card-featured .sh-carrier-body h3 {
    color: var(--white);
}

.sh-carrier-body > p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.sh-carrier-card-featured .sh-carrier-body > p {
    color: rgba(255, 255, 255, 0.7);
}

.sh-carrier-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px dashed rgba(10, 22, 40, 0.1);
}

.sh-carrier-card-featured .sh-carrier-rows {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.sh-carrier-rows > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    font-size: 0.84rem;
}

.sh-carrier-rows span {
    color: var(--gray);
}

.sh-carrier-card-featured .sh-carrier-rows span {
    color: rgba(255, 255, 255, 0.6);
}

.sh-carrier-rows strong {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.85rem;
    letter-spacing: -0.01em;
    text-align: right;
}

.sh-carrier-card-featured .sh-carrier-rows strong {
    color: var(--orange-glow);
}

.sh-rates-section {
    background: var(--cream);
}

.sh-rates-table {
    margin-top: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.sh-rates-head {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1.2fr;
    background: var(--navy);
    padding: 18px 24px;
    gap: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.sh-rates-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1.2fr;
    padding: 18px 24px;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    font-size: 0.92rem;
    color: var(--navy);
    transition: background 0.2s;
}

.sh-rates-row:last-child {
    border-bottom: none;
}

.sh-rates-row:not(.sh-rates-row-hot):hover {
    background: rgba(255, 107, 43, 0.03);
}

.sh-rates-row-hot {
    background: rgba(56, 209, 122, 0.06);
    position: relative;
}

.sh-rates-row-hot::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #38d17a;
}

.sh-rates-free {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
}

.sh-rates-free-active {
    color: #1e9e56;
    font-size: 1.05rem;
}

.sh-rates-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.sh-rates-note {
    padding: 22px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--orange);
}

.sh-rates-note strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.35;
}

.sh-rates-note p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

.sh-packing-section {
    background: var(--white);
}

.sh-packing-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.sh-packing-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.sh-packing-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sh-packing-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 209, 122, 0.4);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 150px;
}

.sh-packing-float-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: #6ee7a3;
    letter-spacing: -0.03em;
    line-height: 1;
}

.sh-packing-float-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.sh-packing-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.sh-packing-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 22px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sh-packing-step:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.sh-packing-step-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.04em;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 4px;
    min-width: 28px;
}

.sh-packing-step h4 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--navy);
    line-height: 1.3;
}

.sh-packing-step p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

.sh-pickup-section {
    background: var(--cream);
}

.sh-pickup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

.sh-pickup-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.sh-pickup-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: var(--shadow-sm);
}

.sh-pickup-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 107, 43, 0.08);
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.sh-pickup-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    color: var(--navy);
    line-height: 1.3;
}

.sh-pickup-address {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1.6;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.sh-pickup-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 12px;
}

.sh-pickup-desc:last-child {
    margin-bottom: 0;
}

.sh-pickup-hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.sh-pickup-hours > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.88rem;
}

.sh-pickup-hours span {
    color: var(--gray);
}

.sh-pickup-hours strong {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.86rem;
}

.sh-pickup-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    padding: 0;
    counter-reset: pickup;
}

.sh-pickup-steps li {
    position: relative;
    padding-left: 28px;
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    counter-increment: pickup;
}

.sh-pickup-steps li::before {
    content: counter(pickup);
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.68rem;
    font-weight: 700;
}

.sh-pickup-card-map {
    padding: 0;
    overflow: hidden;
    background: var(--navy-light);
    position: relative;
}

.sh-pickup-map {
    width: 100%;
    height: 100%;
    min-height: 320px;
}

.sh-pickup-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: none;
    display: block;
    filter: saturate(0.85) contrast(1.05);
}

.sh-pickup-map-link {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}

.sh-pickup-map-link:hover {
    background: var(--orange);
}

.sh-timeline-section {
    background: var(--white);
}

.sh-transit-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sh-transit-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 28px;
    align-items: flex-start;
}

.sh-transit-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.sh-transit-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', monospace;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
    flex-shrink: 0;
    border: 3px solid var(--white);
    position: relative;
    z-index: 2;
}

.sh-transit-step:first-child .sh-transit-num {
    background: var(--orange);
    box-shadow: 0 8px 24px rgba(255, 107, 43, 0.35);
}

.sh-transit-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange) 0%, rgba(255, 107, 43, 0.15) 100%);
    margin-top: 4px;
    min-height: 40px;
}

.sh-transit-step-end .sh-transit-line {
    display: none;
}

.sh-transit-body {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 20px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sh-transit-body:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.sh-transit-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.sh-transit-day {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sh-transit-time {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 600;
    position: relative;
    padding-left: 16px;
}

.sh-transit-time::before {
    content: '\00B7';
    position: absolute;
    left: 5px;
    color: rgba(10, 22, 40, 0.2);
}

.sh-transit-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: var(--navy);
    line-height: 1.3;
}

.sh-transit-body p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.sh-issues-section {
    background: var(--cream);
}

.sh-issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.sh-issue {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    border-left: 3px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.sh-issue:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sh-issue-icon {
    font-size: 1.5rem;
    margin-bottom: 16px;
    line-height: 1;
}

.sh-issue h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.sh-issue p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.sh-international-section {
    background: var(--navy);
    color: var(--white);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.sh-international-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.sh-international-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sh-international-copy .section-label {
    color: var(--orange-glow);
}

.sh-international-copy .section-title {
    color: var(--white);
}

.sh-international-copy .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.sh-international-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sh-international-item {
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--orange);
    transition: background 0.3s, border-color 0.3s;
}

.sh-international-item:hover {
    background: rgba(255, 107, 43, 0.06);
    border-color: rgba(255, 107, 43, 0.3);
}

.sh-international-item h4 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.35;
}

.sh-international-item p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin: 0;
}

.sh-international-card {
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.sh-international-card-head {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.sh-international-card-rows {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.sh-international-card-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sh-international-card-row:last-child {
    border-bottom: none;
}

.sh-international-card-row span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.sh-international-card-row strong {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange-glow);
    text-align: right;
    letter-spacing: -0.01em;
}

.sh-international-card-row-no {
    color: #ff8c8c !important;
}

.sh-international-card-cta {
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.sh-international-card-cta .btn {
    width: 100%;
}

.sh-tracking-section {
    background: var(--white);
}

.sh-notify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.sh-notify {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px 22px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.sh-notify:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 43, 0.25);
    box-shadow: var(--shadow-sm);
}

.sh-notify-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 107, 43, 0.08);
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.sh-notify-body h4 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.35;
}

.sh-notify-body p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1024px) {
    .sh-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sh-hero-panel {
        max-width: 520px;
    }

    .sh-track {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }

    .sh-carriers-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .sh-carrier-card-featured {
        transform: none;
    }

    .sh-carrier-card-featured:hover {
        transform: translateY(-6px);
    }

    .sh-rates-notes {
        grid-template-columns: 1fr;
    }

    .sh-packing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sh-packing-media {
        aspect-ratio: 16 / 10;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .sh-pickup-grid {
        grid-template-columns: 1fr;
    }

    .sh-international-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .sh-rates-head,
    .sh-rates-row {
        grid-template-columns: 1fr 1fr;
        padding: 14px 18px;
        gap: 10px;
    }

    .sh-rates-head span:nth-child(4),
    .sh-rates-row span:nth-child(4) {
        display: none;
    }

    .sh-transit-step {
        grid-template-columns: 44px 1fr;
        gap: 16px;
    }

    .sh-transit-num {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .sh-hero {
        padding: 48px 0 64px;
    }

    .sh-hero-copy h1 {
        font-size: 2.2rem;
    }

    .sh-hero-panel {
        padding: 22px 20px;
    }

    .sh-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sh-hero-actions .btn {
        width: 100%;
    }

    .sh-track {
        padding: 22px 20px;
    }

    .sh-track-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .sh-track-form {
        flex-direction: column;
    }

    .sh-track-btn {
        width: 100%;
    }

    .sh-rates-head,
    .sh-rates-row {
        grid-template-columns: 1fr;
        padding: 12px 16px;
    }

    .sh-rates-head span:nth-child(3),
    .sh-rates-row span:nth-child(3) {
        display: none;
    }

    .sh-rates-head span:nth-child(2),
    .sh-rates-row span:nth-child(2) {
        font-weight: 700;
    }

    .sh-packing-float-num {
        font-size: 1.5rem;
    }

    .sh-pickup-card {
        padding: 24px;
    }

    .sh-transit-body {
        padding: 20px 22px;
    }

    .sh-international-section {
        padding: 64px 0;
    }

    .sh-international-card {
        padding: 24px 22px;
    }

    .sh-notify {
        padding: 20px 18px;
    }
}
.co-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.co-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.co-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255, 107, 43, 0.08) 0, transparent 6px),
        radial-gradient(circle at 42% 65%, rgba(255, 107, 43, 0.06) 0, transparent 5px),
        radial-gradient(circle at 78% 30%, rgba(255, 107, 43, 0.07) 0, transparent 4px),
        radial-gradient(circle at 88% 80%, rgba(255, 107, 43, 0.05) 0, transparent 5px);
    background-size: 300px 300px;
    pointer-events: none;
    opacity: 0.7;
}

.co-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.co-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}

.co-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
}

.co-hero .breadcrumbs a:hover {
    color: var(--orange-glow);
}

.co-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
}

.co-hero-tag-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.co-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.co-hero-tag-accent {
    background: rgba(56, 209, 122, 0.1);
    border-color: rgba(56, 209, 122, 0.3);
    color: #6ee7a3;
}

.co-hero-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 0 0 rgba(110, 231, 163, 0.7);
    animation: pulseDot 2s infinite;
}

.co-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.co-hero-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 32px;
}

.co-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.co-hero-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.co-hero-actions .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.co-hero-panel {
    background: rgba(10, 22, 40, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.co-hero-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.co-hero-panel-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6ee7a3;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.co-hero-panel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6ee7a3;
    box-shadow: 0 0 8px rgba(110, 231, 163, 0.8);
}

.co-hero-panel-rows {
    display: flex;
    flex-direction: column;
}

.co-hero-panel-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.co-hero-panel-row:last-child {
    border-bottom: none;
}

.co-hero-panel-key {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
}

.co-hero-panel-val {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    text-align: right;
    letter-spacing: -0.01em;
}

.co-hero-panel-row-highlight {
    background: rgba(255, 107, 43, 0.1);
    margin: 4px -12px 0;
    padding: 12px;
    border-radius: 6px;
    border-bottom: none;
}

.co-hero-panel-row-highlight .co-hero-panel-key {
    color: var(--orange-glow);
}

.co-hero-panel-row-highlight .co-hero-panel-val {
    color: var(--orange-glow);
    font-size: 1.05rem;
}

.co-summary-section {
    padding: 64px 0;
    background: var(--cream);
}

.co-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10, 22, 40, 0.05);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.co-summary-head {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(255, 107, 43, 0.06) 0%, rgba(255, 107, 43, 0.02) 100%);
    border-bottom: 1px solid rgba(255, 107, 43, 0.15);
}

.co-summary-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 107, 43, 0.12);
    border: 1px solid rgba(255, 107, 43, 0.25);
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    flex-shrink: 0;
}

.co-summary-head h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 4px;
}

.co-summary-head p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.co-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 8px;
}

.co-summary-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.co-summary-item:hover {
    background: rgba(10, 22, 40, 0.02);
}

.co-summary-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.08em;
    flex-shrink: 0;
    padding-top: 4px;
}

.co-summary-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.35;
}

.co-summary-item p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

.co-preferences-section {
    padding: 96px 0;
    background: var(--white);
}

.co-prefs {
    margin-top: 48px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10, 22, 40, 0.05);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.co-prefs-list {
    display: flex;
    flex-direction: column;
}

.co-pref {
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transition: background 0.2s;
}

.co-pref:last-child {
    border-bottom: none;
}

.co-pref:hover {
    background: rgba(255, 107, 43, 0.02);
}

.co-pref-main {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 32px;
}

.co-pref-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.08);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.co-pref[data-category="essential"] .co-pref-icon {
    background: rgba(56, 209, 122, 0.1);
    border-color: rgba(56, 209, 122, 0.3);
}

.co-pref-body {
    min-width: 0;
}

.co-pref-head {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.co-pref-head h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--navy);
    line-height: 1.3;
}

.co-pref-status {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 999px;
}

.co-pref-status-locked {
    background: rgba(56, 209, 122, 0.12);
    color: #1e9e56;
    border: 1px solid rgba(56, 209, 122, 0.3);
}

.co-pref-status-unused {
    background: rgba(10, 22, 40, 0.06);
    color: var(--gray);
    border: 1px solid rgba(10, 22, 40, 0.08);
}

.co-pref-body > p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 620px;
}

.co-pref-cookies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.co-pref-cookie {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.1);
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: -0.01em;
}

.co-pref-cookies-empty {
    padding: 8px 0;
}

.co-pref-cookie-empty {
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
}

.co-pref-toggle {
    display: flex;
    align-items: center;
    padding-top: 4px;
}

.co-toggle {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 30px;
    background: rgba(10, 22, 40, 0.1);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s;
    border: none;
    padding: 0;
    outline: none;
}

.co-toggle:hover:not(.co-toggle-locked) {
    background: rgba(10, 22, 40, 0.15);
}

.co-toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 107, 43, 0.25);
}

.co-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(10, 22, 40, 0.15);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.co-toggle-on {
    background: var(--orange);
}

.co-toggle-on .co-toggle-knob {
    transform: translateX(24px);
}

.co-toggle-locked {
    background: rgba(56, 209, 122, 0.4);
    cursor: not-allowed;
}

.co-toggle-locked .co-toggle-knob {
    transform: translateX(24px);
}

.co-prefs-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: var(--white);
    border-top: 1px solid rgba(10, 22, 40, 0.06);
    flex-wrap: wrap;
}

.co-prefs-meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 0.85rem;
}

.co-prefs-meta-label {
    color: var(--gray);
    font-weight: 600;
}

.co-prefs-meta-value {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.co-prefs-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.co-prefs-note {
    padding: 22px 32px;
    background: rgba(255, 107, 43, 0.05);
    border-top: 1px solid rgba(255, 107, 43, 0.15);
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

.co-prefs-note strong {
    color: var(--orange);
    font-weight: 700;
}

.co-inventory-section {
    background: var(--cream);
}

.co-inventory {
    margin-top: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.co-inventory-head {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 2fr 1fr 1fr;
    background: var(--navy);
    padding: 18px 24px;
    gap: 16px;
}

.co-inventory-head .co-inventory-cell {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.co-inventory-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 2fr 1fr 1fr;
    padding: 22px 24px;
    gap: 16px;
    align-items: flex-start;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    transition: background 0.2s;
}

.co-inventory-row:last-child {
    border-bottom: none;
}

.co-inventory-row:hover {
    background: rgba(255, 107, 43, 0.02);
}

.co-inventory-cell {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.co-inventory-name code {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--cream);
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: -0.01em;
    display: inline-block;
    word-break: break-all;
}

.co-inventory-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 999px;
}

.co-inventory-cat-essential {
    background: rgba(56, 209, 122, 0.12);
    color: #1e9e56;
    border: 1px solid rgba(56, 209, 122, 0.3);
}

.co-inventory-duration {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.01em;
}

.co-inventory-type {
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 600;
}

.co-inventory-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.co-inventory-footer-item {
    padding: 22px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--orange);
    border-top: 1px solid rgba(10, 22, 40, 0.05);
    border-right: 1px solid rgba(10, 22, 40, 0.05);
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
}

.co-inventory-footer-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.35;
}

.co-inventory-footer-item p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

.co-inventory-footer-item code {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--cream);
    padding: 2px 6px;
    border-radius: 4px;
}

.co-notuse-section {
    background: var(--white);
}

.co-notuse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.co-notuse-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 26px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    border-left: 3px solid #d1495b;
    transition: transform 0.3s, box-shadow 0.3s;
}

.co-notuse-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.co-notuse-icon {
    font-size: 1.5rem;
    margin-bottom: 14px;
    line-height: 1;
}

.co-notuse-card h3 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.co-notuse-card p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

.co-browser-section {
    background: var(--cream);
}

.co-browser-tabs {
    margin-top: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
    overflow: hidden;
}

.co-browser-tab-list {
    display: flex;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    background: rgba(10, 22, 40, 0.015);
    overflow-x: auto;
    scrollbar-width: none;
}

.co-browser-tab-list::-webkit-scrollbar {
    display: none;
}

.co-browser-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: var(--navy);
    border-bottom: 3px solid transparent;
    transition: background 0.2s, border-color 0.2s;
    min-width: 140px;
    flex-shrink: 0;
}

.co-browser-tab:hover {
    background: rgba(255, 107, 43, 0.04);
}

.co-browser-tab.active {
    background: var(--white);
    border-bottom-color: var(--orange);
}

.co-browser-tab-icon {
    font-size: 1.2rem;
    line-height: 1;
    opacity: 0.7;
}

.co-browser-tab.active .co-browser-tab-icon {
    opacity: 1;
}

.co-browser-tab-name {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.co-browser-tab.active .co-browser-tab-name {
    color: var(--orange);
    font-weight: 700;
}

.co-browser-panels {
    padding: 40px;
}

.co-browser-panel {
    display: none;
}

.co-browser-panel.active {
    display: block;
    animation: coFade 0.35s ease;
}

@keyframes coFade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.co-browser-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    flex-wrap: wrap;
}

.co-browser-panel-head h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.co-browser-panel-version {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 12px;
    background: var(--cream);
    border-radius: 999px;
}

.co-browser-steps {
    list-style: none;
    counter-reset: co-step;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
}

.co-browser-steps li {
    position: relative;
    padding-left: 44px;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    counter-increment: co-step;
    min-height: 32px;
}

.co-browser-steps li::before {
    content: counter(co-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 107, 43, 0.25);
}

.co-browser-steps li strong {
    color: var(--navy);
    font-weight: 700;
}

.co-browser-steps li code {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
}

.co-browser-note {
    margin-top: 32px;
    padding: 22px 28px;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 900px;
}

.co-browser-note strong {
    color: var(--orange-glow);
    font-weight: 700;
}

.co-lifespan-section {
    background: var(--white);
}

.co-lifespan-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.co-lifespan-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.co-lifespan-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 20px;
    align-items: center;
}

.co-lifespan-info {
    grid-column: 1 / -1;
}

.co-lifespan-name {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.co-lifespan-desc {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.55;
}

.co-lifespan-bar {
    height: 10px;
    background: rgba(10, 22, 40, 0.05);
    border-radius: 5px;
    overflow: hidden;
}

.co-lifespan-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(to right, var(--orange), var(--orange-glow));
    border-radius: 5px;
    min-width: 4px;
}

.co-lifespan-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.01em;
    text-align: right;
    white-space: nowrap;
}

.co-lifespan-item-muted .co-lifespan-name,
.co-lifespan-item-muted .co-lifespan-value {
    color: var(--gray);
}

.co-lifespan-item-muted .co-lifespan-bar span {
    background: rgba(10, 22, 40, 0.1);
}

.co-lifespan-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(10, 22, 40, 0.15);
}

.co-lifespan-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.co-lifespan-card-head {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.co-lifespan-card-rows {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.co-lifespan-card-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    align-items: baseline;
}

.co-lifespan-card-row:last-child {
    border-bottom: none;
}

.co-lifespan-card-row span {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.65);
}

.co-lifespan-card-row strong {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange-glow);
    text-align: right;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.co-lifespan-card-note {
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    position: relative;
    z-index: 2;
}

.co-consent-section {
    background: var(--cream);
}

.co-consent {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10, 22, 40, 0.05);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.co-consent-head {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 36px 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.co-consent-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 107, 43, 0.15);
    border: 1px solid rgba(255, 107, 43, 0.3);
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    flex-shrink: 0;
    color: var(--orange-glow);
}

.co-consent-head h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.co-consent-head p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.co-consent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 8px;
}

.co-consent-card {
    padding: 28px;
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.co-consent-card:hover {
    background: rgba(255, 107, 43, 0.02);
}

.co-consent-card-icon {
    font-size: 1.4rem;
    margin-bottom: 14px;
    line-height: 1;
}

.co-consent-card h3 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.35;
}

.co-consent-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.co-consent-card code {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .co-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .co-hero-panel {
        max-width: 520px;
    }

    .co-summary-grid {
        grid-template-columns: 1fr;
    }

    .co-inventory-footer {
        grid-template-columns: 1fr;
    }

    .co-lifespan-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .co-lifespan-card {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .co-consent-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .co-inventory {
        overflow-x: auto;
    }

    .co-inventory-head,
    .co-inventory-row {
        min-width: 860px;
    }

    .co-pref-main {
        grid-template-columns: 48px 1fr auto;
        gap: 16px;
        padding: 22px 22px;
    }

    .co-pref-icon {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }

    .co-prefs-actions {
        padding: 20px 22px;
    }

    .co-prefs-note {
        padding: 18px 22px;
    }

    .co-browser-panels {
        padding: 28px 24px;
    }
}

@media (max-width: 640px) {
    .co-hero {
        padding: 48px 0 64px;
    }

    .co-hero-copy h1 {
        font-size: 2.2rem;
    }

    .co-hero-panel {
        padding: 22px 20px;
    }

    .co-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .co-hero-actions .btn {
        width: 100%;
    }

    .co-summary-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 24px 22px;
    }

    .co-summary-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .co-summary-item {
        padding: 18px;
    }

    .co-pref {
        /* stacked */
    }

    .co-pref-main {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .co-pref-toggle {
        justify-content: flex-start;
    }

    .co-prefs-buttons {
        width: 100%;
    }

    .co-prefs-buttons .btn {
        flex: 1;
    }

    .co-lifespan-item {
        grid-template-columns: 1fr auto;
    }

    .co-consent-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 28px 24px;
    }

    .co-consent-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .co-consent-head h2 {
        font-size: 1.25rem;
    }

    .co-consent-card {
        padding: 22px;
    }

    .co-browser-tab {
        padding: 16px 18px;
        min-width: 120px;
    }

    .co-browser-tab-name {
        font-size: 0.9rem;
    }
}