/* ==========================================================================
   BELUSA Corporate Website Stylesheet
   Tone: White × Navy × Grey (Corporate)
         + Soft Blue (Consumer brand section)
========================================================================== */

:root {
    /* Corporate palette */
    --navy: #0f1e3d;
    --navy-deep: #07112a;
    --navy-soft: #1e3a5f;
    --slate: #475569;
    --slate-light: #94a3b8;
    --grey-line: #e2e8f0;
    --grey-bg: #f5f7fa;
    --white: #ffffff;
    --text: #1e293b;
    --text-soft: #475569;

    /* Logo gold accent (matches xx_img/13.png) */
    --gold: #c8a96a;
    --gold-soft: #d9bf86;

    /* Consumer brand palette (差別化) */
    --consumer-primary: #0ea5e9;
    --consumer-bg: #e0f2fe;
    --consumer-soft: #bae6fd;

    /* Layout */
    --container-max: 1200px;
    --section-pad: 6rem 1rem;
    --section-pad-mobile: 4rem 1rem;
    --header-h: 72px;

    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.75;
    color: var(--text);
    background:
        url('xx_img/bg.png') center center / cover fixed,
        var(--white);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   Header (Greige tone for premium contrast with gold logo)
========================================================================== */
header {
    background: rgba(45, 42, 38, 0.96); /* warm greige */
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(200, 169, 106, 0.25); /* subtle gold hairline */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-h);
}

.logo img {
    height: 38px;
    width: auto;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: var(--gold);
    color: #2d2a26 !important;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
}

.nav-cta:hover {
    background: var(--gold-soft);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--gold);
}

/* ==========================================================================
   Hero
========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    padding-top: var(--header-h);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('xx_img/logo_back.png') no-repeat center center / cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,17,42,0.55) 0%, rgba(7,17,42,0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem;
}

.hero-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
}

.hero-sub {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    line-height: 1.9;
    opacity: 0.92;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.hero-sub-link {
    display: inline-block;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    transition: var(--transition);
}

.hero-sub-link:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

/* ==========================================================================
   Section common
========================================================================== */
.section {
    padding: var(--section-pad);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(2px);
}

.section-alt {
    background: rgba(245, 247, 250, 0.78);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.section-title h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}

.underline {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

/* ==========================================================================
   Business
========================================================================== */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.business-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border: 1px solid var(--grey-line);
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.business-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 30, 61, 0.08);
    border-color: var(--gold-soft);
}

.card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--navy);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--gold);
}

.business-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.card-sub {
    font-size: 0.85rem;
    color: var(--slate-light);
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.85;
    margin-bottom: 1.4rem;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-tags li {
    font-size: 0.78rem;
    background: var(--grey-bg);
    color: var(--slate);
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
}

/* ==========================================================================
   One-Stop Service
========================================================================== */
.onestop-section {
    background: rgba(255, 255, 255, 0.88);
}

.onestop-lead {
    text-align: center;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--text-soft);
    line-height: 2;
    max-width: 760px;
    margin: -2rem auto 3.5rem;
}

.onestop-lead strong {
    color: var(--navy);
    font-weight: 700;
}

.onestop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    position: relative;
}

.onestop-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
    z-index: 0;
    opacity: 0.4;
}

.onestop-item {
    background: var(--white);
    border: 1px solid var(--grey-line);
    border-radius: 6px;
    padding: 2rem 1.4rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.onestop-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold-soft);
    box-shadow: 0 14px 28px rgba(15, 30, 61, 0.08);
}

.onestop-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--gold);
}

.onestop-item h3 {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.onestop-item p {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.75;
}

.onestop-callout {
    background: linear-gradient(135deg, #2d2a26 0%, #3a3530 100%);
    border-radius: 8px;
    padding: 2.8rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.onestop-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.onestop-callout-title {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.onestop-callout-title span {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

.onestop-callout-desc {
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.onestop-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
}

.pc-only { display: inline; }

/* ==========================================================================
   Strength
========================================================================== */
.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.strength-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-top: 3px solid var(--gold);
    box-shadow: 0 2px 10px rgba(15, 30, 61, 0.04);
    transition: var(--transition);
}

.strength-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 30, 61, 0.08);
}

.strength-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
    letter-spacing: 0.1em;
}

.strength-item h3 {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.strength-item p {
    font-size: 0.93rem;
    color: var(--text-soft);
    line-height: 1.85;
}

/* ==========================================================================
   Consumer Brand Section (家庭向け — 別ブランド差別化)
========================================================================== */
.consumer-section {
    background: linear-gradient(135deg, var(--consumer-bg) 0%, #f0f9ff 100%);
}

.consumer-card {
    background: var(--white);
    border-radius: 16px;
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.08);
    position: relative;
    overflow: hidden;
}

.consumer-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--consumer-primary);
    margin-bottom: 0.8rem;
}

.consumer-brand {
    font-size: 1.05rem;
    color: var(--consumer-primary);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.consumer-catch {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.consumer-desc {
    color: var(--text-soft);
    line-height: 1.95;
    margin-bottom: 2rem;
}

.btn-consumer {
    background: var(--consumer-primary);
    color: var(--white);
    border-radius: 999px;
    padding: 0.9rem 2.4rem;
    display: inline-block;
    font-weight: 500;
    transition: var(--transition);
}

.btn-consumer:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.consumer-visual {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consumer-bubble-bg {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--consumer-soft), var(--consumer-primary));
    opacity: 0.18;
    z-index: 0;
}

.consumer-bubble-bg.bubble-1 {
    width: 240px;
    height: 240px;
    top: 10%;
    right: 0;
}

.consumer-bubble-bg.bubble-2 {
    width: 120px;
    height: 120px;
    bottom: 5%;
    left: 0;
    opacity: 0.25;
}

.consumer-character-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    filter: drop-shadow(0 18px 32px rgba(14, 165, 233, 0.18));
    transition: var(--transition);
    cursor: pointer;
}

.consumer-character-wrap:hover {
    transform: translateY(-4px);
}

.consumer-character {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    transition: opacity 0.4s ease;
}

.consumer-character-still {
    opacity: 1;
    z-index: 2;
    object-fit: cover;
}

.consumer-character-video {
    opacity: 0;
    z-index: 1;
    object-fit: contain;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.consumer-character-wrap.is-playing .consumer-character-still {
    opacity: 0;
}

.consumer-character-wrap.is-playing .consumer-character-video {
    opacity: 1;
}

/* タッチ端末 / ホバー非対応では動画を完全に非表示 */
@media (hover: none) {
    .consumer-character-video {
        display: none;
    }
    .consumer-character-wrap { cursor: default; }
}

/* ==========================================================================
   Greeting
========================================================================== */
.greeting-container {
    max-width: 760px;
    margin: 0 auto;
}

.greeting-lead {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
}

.greeting-lead strong {
    font-weight: 700;
}

.greeting-text {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 1.4rem;
}

.greeting-sign {
    margin-top: 2.5rem;
    text-align: right;
    color: var(--navy);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Company Profile
========================================================================== */
.company-table-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(15, 30, 61, 0.04);
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--grey-line);
    font-size: 0.95rem;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

.company-table th {
    background: var(--grey-bg);
    color: var(--navy);
    font-weight: 500;
    width: 30%;
    letter-spacing: 0.05em;
}

.company-table td {
    color: var(--text-soft);
}

/* ==========================================================================
   Contact
========================================================================== */
.contact-section {
    background: rgba(255, 255, 255, 0.88);
}

.contact-catch {
    text-align: center;
    color: var(--text-soft);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-method {
    background: var(--white);
    border: 1px solid var(--grey-line);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 30, 61, 0.08);
}

.contact-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--navy);
    letter-spacing: 0.25em;
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--gold);
}

.contact-label {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.contact-value {
    color: var(--text-soft);
    font-size: 0.9rem;
}

/* ==========================================================================
   Contact Form
========================================================================== */
.contact-form-wrap {
    max-width: 820px;
    margin: 4rem auto 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--grey-line);
    border-radius: 10px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(15, 30, 61, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-form-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-head h3 {
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 700;
    margin: 0.5rem 0 1rem;
}

.contact-form-lead {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.85;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.88rem;
    color: var(--navy);
    font-weight: 600;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.required {
    background: var(--navy);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--grey-line);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    transition: var(--transition);
    width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.15);
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3e%3cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230f1e3d' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--slate-light);
}

.form-actions {
    margin-top: 1rem;
    text-align: center;
}

.btn-submit {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
    padding: 1rem 4rem;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.3s ease;
    z-index: 0;
}

.btn-submit:hover {
    color: #2d2a26;
    border-color: var(--gold);
}

.btn-submit:hover::before {
    width: 100%;
}

.btn-submit span,
.btn-submit {
    position: relative;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 30, 61, 0.15);
}

.form-privacy {
    font-size: 0.78rem;
    color: var(--slate-light);
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

@media (max-width: 640px) {
    .contact-form-wrap {
        padding: 2rem 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .btn-submit {
        width: 100%;
        padding: 1rem;
    }
}

/* ==========================================================================
   Footer
========================================================================== */
footer {
    background: var(--navy-deep);
    color: var(--white);
    padding: 3rem 1.5rem 2rem;
}

.footer-inner {
    text-align: center;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 38px;
    width: auto;
    margin: 0 auto 1rem;
    opacity: 0.95;
}

.footer-tag {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.footer-copy {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================================================
   Responsive
========================================================================== */
@media (max-width: 900px) {
    .consumer-card {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.8rem;
    }
    .consumer-visual { height: 140px; }

    .onestop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .onestop-grid::before { display: none; }
}

@media (max-width: 540px) {
    .onestop-grid {
        grid-template-columns: 1fr;
    }
    .pc-only { display: none; }
}

@media (max-width: 768px) {
    .section { padding: var(--section-pad-mobile); }
    .section-title { margin-bottom: 3rem; }

    .hamburger { display: block; }

    .nav-links {
        position: fixed;
        right: -100%;
        top: var(--header-h);
        flex-direction: column;
        background: #2d2a26;
        width: 100%;
        height: calc(100vh - var(--header-h));
        padding: 2.5rem 0;
        gap: 1.8rem;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .nav-links.active { right: 0; }

    .nav-cta {
        margin-top: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 0.8rem 1.2rem;
    }

    .company-table th {
        padding-bottom: 0;
        border-bottom: none;
        font-size: 0.85rem;
    }

    .company-table td {
        padding-top: 0.3rem;
        font-size: 0.95rem;
    }
}
