:root {
    --color-primary: #5bc6f0;
    --color-primary-dark: #38a9d7;
    --color-bg: #f7fbfe;
    --color-text: #123042;
    --color-muted: #5e6d78;
    --color-border: #e1eef6;
    --color-white: #ffffff;
    --shadow-soft: 0 18px 40px rgba(18, 48, 66, 0.08);

    /* Service Colors */
    --color-service-sales: #5bc6f0;
    --color-service-rental: #6dd5a3;
    --color-service-insurance: #f5a962;
    --color-service-maintenance: #a78bfa;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
    color: var(--color-text);
    background: linear-gradient(180deg, #f2fbff 0%, #ffffff 300px);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

body {
    overflow-x: clip;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    border-bottom: none;
    padding: 16px 0;
    width: 100%;
    max-width: 100vw;
}

.site-header.site-header--transparent {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.site-header.site-header--transparent .header-pill {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(255, 255, 255, 0.6);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    max-width: 100%;
}

.site-title {
    font-size: 20px;
    font-weight: 700;
}

.site-tagline {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--color-muted);
}

.header-nav {
    display: flex;
    margin-left: auto;
}

.nav-list {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 14px;
}

.nav-list li a {
    display: block;
    padding: 8px 16px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-list li a:hover {
    background: rgba(91, 198, 240, 0.1);
    color: var(--color-primary-dark);
}

.header-cta {
    display: inline-flex;
    padding: 10px 20px;
    font-size: 14px;
    flex-shrink: 0;
    white-space: nowrap;
}

.header-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    padding: 8px 8px 8px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(91, 198, 240, 0.18);
    box-shadow: 0 4px 24px rgba(18, 48, 66, 0.10);
    backdrop-filter: blur(12px);
    box-sizing: border-box;
}

.site-branding {
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 56px;
    width: auto;
}

.site-name {
    margin-left: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 12px 24px rgba(91, 198, 240, 0.32);
}

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

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

.btn-link {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.hero {
    background: linear-gradient(180deg, #f2fbff 0%, #ffffff 50%);
    padding: 90px 0 80px;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 170px;
    position: relative;
    animation: hero-bg-shift 8s ease-in-out infinite;
}

@keyframes hero-bg-shift {
    0%, 100% {
        background: linear-gradient(180deg, #f2fbff 0%, #ffffff 50%);
    }
    50% {
        background: linear-gradient(180deg, #e8f4fc 0%, #f8fcff 50%);
    }
}

.hero-inner {
    display: grid;
    gap: 48px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--color-primary-dark);
    font-weight: 700;
}

.hero-title {
    margin: 16px 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.3;
}

.hero-text {
    color: var(--color-muted);
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-visual {
    display: grid;
    gap: 20px;
}

.hero-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

.hero-badges {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(91, 198, 240, 0.16);
    color: var(--color-primary-dark);
    font-size: 12px;
    font-weight: 600;
}


/* Hero Background Animation - Speed Lines & Particles */
.hero-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Speed Lines - Right to Left */
.speed-lines {
    position: absolute;
    inset: 0;
}

.speed-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 30%, var(--color-primary) 70%, transparent 100%);
    opacity: 0;
    animation: speed-line-flow 3s linear infinite;
}

.speed-line-1 { top: 12%; width: 180px; animation-delay: 0s; animation-duration: 2.5s; }
.speed-line-2 { top: 28%; width: 250px; animation-delay: 0.4s; animation-duration: 2.2s; }
.speed-line-3 { top: 42%; width: 200px; animation-delay: 0.8s; animation-duration: 2.8s; }
.speed-line-4 { top: 55%; width: 160px; animation-delay: 1.2s; animation-duration: 2.4s; }
.speed-line-5 { top: 68%; width: 220px; animation-delay: 0.2s; animation-duration: 2.6s; }
.speed-line-6 { top: 78%; width: 180px; animation-delay: 0.6s; animation-duration: 2.3s; }
.speed-line-7 { top: 35%; width: 140px; animation-delay: 1.0s; animation-duration: 2.1s; }
.speed-line-8 { top: 85%; width: 190px; animation-delay: 1.4s; animation-duration: 2.7s; }

@keyframes speed-line-flow {
    0% {
        right: -250px;
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        right: 110%;
        opacity: 0;
    }
}

/* Particles - Light dots flowing */
.particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0;
    animation: particle-flow 6s linear infinite;
}

.particle-1 { top: 15%; width: 8px; height: 8px; animation-delay: 0s; animation-duration: 5s; }
.particle-2 { top: 25%; width: 5px; height: 5px; animation-delay: 0.5s; animation-duration: 6s; }
.particle-3 { top: 40%; width: 7px; height: 7px; animation-delay: 1s; animation-duration: 5.5s; }
.particle-4 { top: 55%; width: 4px; height: 4px; animation-delay: 1.5s; animation-duration: 6.5s; }
.particle-5 { top: 65%; width: 6px; height: 6px; animation-delay: 2s; animation-duration: 5.2s; }
.particle-6 { top: 75%; width: 5px; height: 5px; animation-delay: 2.5s; animation-duration: 6.2s; }
.particle-7 { top: 20%; width: 4px; height: 4px; animation-delay: 3s; animation-duration: 5.8s; }
.particle-8 { top: 48%; width: 8px; height: 8px; animation-delay: 0.8s; animation-duration: 5.3s; }
.particle-9 { top: 82%; width: 6px; height: 6px; animation-delay: 1.2s; animation-duration: 6.8s; }
.particle-10 { top: 32%; width: 5px; height: 5px; animation-delay: 1.8s; animation-duration: 5.6s; }
.particle-11 { top: 58%; width: 7px; height: 7px; animation-delay: 2.2s; animation-duration: 6.3s; }
.particle-12 { top: 88%; width: 4px; height: 4px; animation-delay: 2.8s; animation-duration: 5.4s; }

@keyframes particle-flow {
    0% {
        right: -20px;
        opacity: 0;
        transform: translateY(0);
    }
    5% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px);
    }
    95% {
        opacity: 0.6;
    }
    100% {
        right: 105%;
        opacity: 0;
        transform: translateY(10px);
    }
}

/* Hero Text Entrance Animation */
.hero-eyebrow,
.hero-title,
.hero-text,
.hero-actions,
.hero-badges span {
    opacity: 0;
    transform: translateY(30px);
    animation: hero-text-enter 0.8s ease-out forwards;
}

.hero-eyebrow {
    animation-delay: 0.2s;
}

.hero-title {
    animation-delay: 0.4s;
}

.hero-text {
    animation-delay: 0.6s;
}

.hero-actions {
    animation-delay: 0.8s;
}

.hero-badges span:nth-child(1) { animation-delay: 1.0s; }
.hero-badges span:nth-child(2) { animation-delay: 1.1s; }
.hero-badges span:nth-child(3) { animation-delay: 1.2s; }
.hero-badges span:nth-child(4) { animation-delay: 1.3s; }

@keyframes hero-text-enter {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Headlight Glow Effect */
.headlights {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.headlight {
    position: absolute;
    width: 120px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9) 0%, rgba(200, 230, 255, 0.6) 30%, rgba(91, 198, 240, 0.3) 60%, transparent 100%);
    filter: blur(8px);
    opacity: 0;
    animation: headlight-flow 5s ease-in-out infinite;
}

.headlight-1 {
    top: 30%;
    animation-delay: 0s;
}

.headlight-2 {
    top: 38%;
    animation-delay: 0.3s;
}

@keyframes headlight-flow {
    0% {
        right: -150px;
        opacity: 0;
        transform: scale(0.8);
    }
    15% {
        opacity: 0.7;
        transform: scale(1);
    }
    85% {
        opacity: 0.7;
        transform: scale(1.2);
    }
    100% {
        right: 110%;
        opacity: 0;
        transform: scale(1.4);
    }
}

/* Road Lines - Perspective Effect */
.road-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    perspective: 300px;
    overflow: hidden;
    pointer-events: none;
}

.road-line {
    position: absolute;
    bottom: 20px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0.8) 80%, transparent 100%);
    border-radius: 2px;
    opacity: 0;
    transform: rotateX(60deg) translateZ(0);
    animation: road-line-flow 2s linear infinite;
}

.road-line-1 {
    width: 80px;
    bottom: 30px;
    animation-delay: 0s;
}

.road-line-2 {
    width: 60px;
    bottom: 50px;
    animation-delay: 0.7s;
}

.road-line-3 {
    width: 40px;
    bottom: 70px;
    animation-delay: 1.4s;
}

@keyframes road-line-flow {
    0% {
        right: -100px;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        right: 110%;
        opacity: 0;
    }
}

/* Light Ripple Effect */
.light-ripples {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ripple {
    position: absolute;
    right: 10%;
    bottom: 20%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(91, 198, 240, 0.4);
    opacity: 0;
    animation: ripple-expand 4s ease-out infinite;
}

.ripple-1 {
    animation-delay: 0s;
}

.ripple-2 {
    animation-delay: 2s;
}

@keyframes ripple-expand {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    100% {
        transform: scale(12);
        opacity: 0;
    }
}

/* CTA Button Pulse Effect */
.hero-actions .btn-primary {
    animation: hero-text-enter 0.8s ease-out forwards, btn-pulse 2s ease-in-out 1.5s infinite;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 12px 24px rgba(91, 198, 240, 0.32);
    }
    50% {
        box-shadow: 0 12px 32px rgba(91, 198, 240, 0.5), 0 0 0 8px rgba(91, 198, 240, 0.1);
    }
}

.hero-card-title {
    font-weight: 700;
    margin: 0 0 6px;
}

.section {
    padding: 80px 0;
}

.section-features {
    background: var(--color-bg);
}

.section-header {
    margin-bottom: 32px;
}

.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
}

.section-header-row h2 {
    white-space: nowrap;
}

.section-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-primary-dark);
    margin-bottom: 6px;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.step {
    background: var(--color-white);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 24px rgba(18, 48, 66, 0.06);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), #7DD3F5);
    border-radius: 12px;
    margin-bottom: 16px;
    color: var(--color-white);
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.feature-card p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.steps {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Services Section */
.services-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    display: block;
    background: var(--color-white);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 24px rgba(18, 48, 66, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.service-card h3 {
    margin: 0 0 12px;
}

.service-card p {
    color: var(--color-muted);
    margin: 0;
}

/* Services Detail Page */
.services-detail {
    display: grid;
    gap: 32px;
}

.service-section {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--color-border);
}

.service-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(91, 198, 240, 0.2);
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.service-section h2 {
    margin: 0;
    color: var(--color-primary-dark);
}

.service-description {
    color: var(--color-muted);
    margin: 0 0 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.service-features li {
    position: relative;
    padding-left: 24px;
    color: var(--color-text);
}

.service-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
}

/* Layout A: 3カラムカード */
.feature-cards-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.feature-card-item {
    background: var(--color-bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--color-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.feature-card-item h4 {
    margin: 0 0 12px;
    color: var(--color-primary-dark);
    font-size: 16px;
}

.feature-card-item p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-cards-3col {
        grid-template-columns: 1fr;
    }
}

/* Layout B: アイコン付きグリッド */
.feature-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.feature-icon-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(91, 198, 240, 0.15);
    color: var(--color-primary-dark);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-icon-content h4 {
    margin: 0 0 8px;
    font-size: 15px;
    color: var(--color-text);
}

.feature-icon-content p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .feature-icon-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .feature-icon-grid {
        grid-template-columns: 1fr;
    }
}

/* Layout C: 番号付き縦リスト */
.feature-numbered-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.feature-numbered-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--color-bg);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.feature-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-numbered-content h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--color-text);
}

.feature-numbered-content p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Services Overview Page */
.services-overview {
    display: grid;
    gap: 24px;
}

.service-overview-card {
    display: flex;
    position: relative;
    background: var(--color-white);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    overflow: hidden;
    min-height: 180px;
}

.service-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

/* Large background number */
.service-bg-number {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 140px;
    font-weight: 800;
    color: var(--color-border);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

.service-overview-card:hover .service-bg-number {
    transform: translateY(-50%) scale(1.05);
}

/* Color bar on left */
.service-color-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--service-color, var(--color-primary));
    transition: width 0.3s ease;
    z-index: 3;
}

.service-overview-card:hover .service-color-bar {
    width: 12px;
}

/* Service-specific colors */
.service-overview-card[data-service="sales"] {
    --service-color: var(--color-service-sales);
}

.service-overview-card[data-service="rental"] {
    --service-color: var(--color-service-rental);
}

.service-overview-card[data-service="insurance"] {
    --service-color: var(--color-service-insurance);
}

.service-overview-card[data-service="maintenance"] {
    --service-color: var(--color-service-maintenance);
}

.service-overview-card:hover {
    border-color: var(--service-color);
}

.service-overview-card:hover .service-bg-number {
    color: var(--service-color);
    opacity: 0.15;
}

/* Content wrapper */
.service-overview-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.service-overview-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-overview-card .service-number {
    background: rgba(0, 0, 0, 0.05);
    color: var(--service-color);
    transition: background 0.3s ease;
}

.service-overview-card:hover .service-number {
    background: var(--service-color);
    color: var(--color-white);
}

.service-overview-card h2 {
    margin: 0;
    color: var(--color-text);
    font-size: 22px;
    transition: color 0.3s ease;
}

.service-overview-card:hover h2 {
    color: var(--service-color);
}

.service-overview-text {
    color: var(--color-muted);
    margin: 0 0 20px;
    line-height: 1.7;
    max-width: 70%;
}

.service-overview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--service-color);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.service-overview-card:hover .service-overview-link {
    gap: 12px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .service-bg-number {
        font-size: 80px;
        right: 12px;
    }

    .service-overview-content {
        padding: 24px;
        padding-left: 28px;
    }

    .service-overview-text {
        max-width: 100%;
    }

    .service-overview-card {
        min-height: 160px;
    }
}

/* Service Detail Page */
.service-detail-page {
    display: grid;
    gap: 40px;
}

.service-intro {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--color-border);
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

.service-features-section,
.service-points-section {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--color-border);
}

.service-features-section h2,
.service-points-section h2 {
    margin: 0 0 24px;
    color: var(--color-primary-dark);
    font-size: 20px;
}

.service-features-section .feature-cards-3col {
    margin-top: 0;
}

.service-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.service-points-list li {
    position: relative;
    padding-left: 28px;
    color: var(--color-text);
    line-height: 1.6;
}

.service-points-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
}

.service-note {
    margin-top: 20px;
    padding: 12px 16px;
    background: var(--color-bg);
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-muted);
}

.service-cta-box {
    background: linear-gradient(135deg, rgba(91, 198, 240, 0.12), rgba(255, 255, 255, 0.9));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.service-cta-box p {
    margin: 0 0 20px;
    font-size: 16px;
    color: var(--color-text);
}

.back-to-services {
    text-align: center;
}

.back-to-services .btn-link {
    color: var(--color-muted);
    transition: color 0.2s ease;
}

.back-to-services .btn-link:hover {
    color: var(--color-primary-dark);
}

.step-number {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(91, 198, 240, 0.2);
    color: var(--color-primary-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.news-list {
    display: grid;
    gap: 18px;
}

.news-card {
    position: relative;
    padding: 20px 22px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-title a::after {
    content: '';
    position: absolute;
    inset: 0;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.news-date {
    font-size: 12px;
    color: var(--color-muted);
    margin: 0 0 4px;
}

.news-title {
    margin: 0 0 8px;
}

.section-cta {
    background: linear-gradient(135deg, rgba(91, 198, 240, 0.18), rgba(255, 255, 255, 0.9));
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--color-white);
    padding: 36px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.site-main.container {
    padding: 60px 0 80px;
}

.page-header {
    margin-bottom: 32px;
}

.news-single {
    background: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

.news-content {
    margin-top: 24px;
}

.news-content img {
    border-radius: 12px;
}

.pagination {
    margin-top: 28px;
}

.contact-content {
    background: var(--color-white);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 24px rgba(18, 48, 66, 0.05);
}

.contact-note {
    margin-top: 24px;
    color: var(--color-muted);
    text-align: center;
}

.contact-thanks {
    margin-top: 24px;
}

/* Contact Page Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--color-border);
}

.contact-info-card h3 {
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--color-muted);
    font-weight: 600;
}

.contact-info-card p {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-text);
    line-height: 1.6;
}

.contact-info-card svg {
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 2px;
}

.contact-phone a {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary-dark);
    transition: color 0.2s ease;
}

.contact-phone a:hover {
    color: var(--color-primary);
}

.contact-hours {
    margin-top: 8px !important;
    font-size: 13px;
    color: var(--color-muted) !important;
    padding-left: 36px;
}

/* Contact Form Section */
.contact-form-section .contact-content {
    padding: 40px;
}

.contact-form-section h2 {
    margin: 0 0 8px;
    font-size: 20px;
    color: var(--color-text);
}

.form-description {
    margin: 0 0 32px;
    color: var(--color-muted);
    font-size: 14px;
}

.required-note {
    font-size: 13px;
}

.required {
    color: #e74c3c;
}

/* Form Elements */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0bec5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(91, 198, 240, 0.15);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235e6d78' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Checkbox */
.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    padding: 0;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.form-checkbox a {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.form-checkbox a:hover {
    color: var(--color-primary);
}

/* Submit Button */
.form-submit {
    margin-top: 8px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    gap: 10px;
}

.btn-large svg {
    transition: transform 0.2s ease;
}

.btn-large:hover svg {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .contact-form-section .contact-content {
        padding: 24px;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* Form Validation States */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.03);
}

.form-group.has-error input:focus,
.form-group.has-error select:focus,
.form-group.has-error textarea:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.form-group.has-success input,
.form-group.has-success select,
.form-group.has-success textarea {
    border-color: #27ae60;
    background-color: rgba(39, 174, 96, 0.03);
}

.form-group.has-success input:focus,
.form-group.has-success select:focus,
.form-group.has-success textarea:focus {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15);
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 13px;
    margin-top: 6px;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-4px); }
    40%, 80% { transform: translateX(4px); }
}

.form-checkbox.has-error {
    padding: 12px;
    background: rgba(231, 76, 60, 0.05);
    border-radius: 8px;
    margin: -12px;
}

.form-checkbox.has-error .error-message {
    margin-top: 10px;
    margin-left: 32px;
}

/* Company Page */
.company-page {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.company-section {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--color-border);
}

.company-section-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 28px;
    font-size: 22px;
    color: var(--color-text);
}

.company-section-title .title-en {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-primary-dark);
    font-weight: 700;
}

/* Message Section */
.message-content {
    max-width: 800px;
}

.message-body p {
    margin: 0 0 16px;
    line-height: 1.9;
    color: var(--color-text);
}

.message-lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary-dark) !important;
    margin-bottom: 24px !important;
}

.message-signature {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 32px !important;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.signature-title {
    font-size: 13px;
    color: var(--color-muted);
}

.signature-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

/* Company Table */
.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table tr {
    border-bottom: 1px solid var(--color-border);
}

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

.company-table th,
.company-table td {
    padding: 20px 16px;
    text-align: left;
    vertical-align: top;
}

.company-table th {
    width: 160px;
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-bg);
    border-radius: 8px 0 0 8px;
}

.company-table td {
    color: var(--color-text);
    line-height: 1.7;
}

.company-table td a {
    color: var(--color-primary-dark);
    transition: color 0.2s ease;
}

.company-table td a:hover {
    color: var(--color-primary);
}

.company-table td ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.company-table td li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
}

.company-table td li:last-child {
    margin-bottom: 0;
}

.company-table td li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

@media (max-width: 600px) {
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 12px 16px;
    }

    .company-table th {
        border-radius: 8px 8px 0 0;
        padding-bottom: 8px;
    }

    .company-table td {
        padding-top: 8px;
        padding-bottom: 20px;
    }
}

/* History Timeline */
.history-timeline {
    position: relative;
    padding-left: 140px;
}

.history-timeline::before {
    content: "";
    position: absolute;
    left: 120px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-white);
    border: 3px solid var(--color-primary);
    z-index: 1;
}

.timeline-item:first-child::before,
.timeline-item:last-child::before {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.timeline-year {
    position: absolute;
    left: -140px;
    top: 4px;
    width: 100px;
    text-align: right;
    font-weight: 700;
    color: var(--color-primary-dark);
    font-size: 15px;
}

.timeline-content h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--color-text);
}

.timeline-content p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .history-timeline {
        padding-left: 24px;
    }

    .history-timeline::before {
        left: 4px;
    }

    .timeline-item::before {
        left: -24px;
    }

    .timeline-year {
        position: static;
        text-align: left;
        margin-bottom: 8px;
        font-size: 14px;
    }
}

/* Access Section */
.access-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
}

.access-map {
    border-radius: 12px;
    overflow: hidden;
    min-height: 320px;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: none;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 320px;
    background: var(--color-bg);
    border: 2px dashed var(--color-border);
    border-radius: 12px;
    text-align: center;
    padding: 24px;
}

.map-placeholder p {
    margin: 0 0 12px;
    color: var(--color-muted);
}

.map-placeholder code {
    font-size: 12px;
    background: var(--color-white);
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--color-muted);
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.access-info-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    font-size: 15px;
    color: var(--color-text);
}

.access-info-item h4 svg {
    color: var(--color-primary);
}

.access-info-item p {
    margin: 0;
    padding-left: 30px;
    color: var(--color-muted);
    line-height: 1.7;
    font-size: 14px;
}

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

    .access-map {
        order: 2;
    }

    .access-info {
        order: 1;
    }
}

@media (max-width: 600px) {
    .company-section {
        padding: 28px 20px;
    }
}

/* ============================================
   Privacy Policy Page
   ============================================ */
.privacy-page {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.privacy-section {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--color-border);
}

.privacy-section-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 28px;
    font-size: 22px;
    color: var(--color-text);
}

.privacy-section-title .title-en {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-primary-dark);
    font-weight: 700;
}

.privacy-content {
    margin-bottom: 32px;
}

.privacy-content:last-child {
    margin-bottom: 0;
}

.privacy-content p {
    margin: 0 0 16px;
    line-height: 1.9;
    color: var(--color-text);
}

.privacy-content p:last-child {
    margin-bottom: 0;
}

.privacy-subsection-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary-light);
}

.privacy-list {
    margin: 0 0 16px;
    padding: 0 0 0 24px;
    line-height: 1.9;
    color: var(--color-text);
}

.privacy-list li {
    margin-bottom: 12px;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.privacy-list ul {
    margin-top: 12px;
    padding-left: 20px;
    list-style-type: disc;
}

.privacy-list ul li {
    margin-bottom: 8px;
}

/* Contact Box */
.privacy-contact-box {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 24px;
    margin-top: 16px;
}

.privacy-contact-box .contact-company {
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 16px;
    color: var(--color-primary-dark);
}

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

.privacy-contact-table tr {
    border-bottom: 1px solid var(--color-border);
}

.privacy-contact-table tr:last-child {
    border-bottom: none;
}

.privacy-contact-table th,
.privacy-contact-table td {
    padding: 12px 8px;
    text-align: left;
    vertical-align: top;
}

.privacy-contact-table th {
    width: 120px;
    font-weight: 600;
    color: var(--color-text);
}

.privacy-contact-table td {
    color: var(--color-text);
}

.privacy-contact-table td a {
    color: var(--color-primary-dark);
    transition: color 0.2s ease;
}

.privacy-contact-table td a:hover {
    color: var(--color-primary);
}

/* OECD Table */
.privacy-oecd-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

.privacy-oecd-table th,
.privacy-oecd-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.privacy-oecd-table thead th {
    background-color: var(--color-bg-light, #f5f5f5);
    font-weight: 600;
    color: var(--color-text);
}

.privacy-oecd-table tbody td:first-child {
    font-weight: 500;
}

.privacy-oecd-table tbody tr:nth-child(even) {
    background-color: var(--color-bg-light, #fafafa);
}

/* Definition List */
.privacy-definition-list {
    margin: 0;
    padding: 0;
}

.privacy-definition-list dt {
    font-weight: 600;
    color: var(--color-text);
    margin: 20px 0 8px;
}

.privacy-definition-list dt:first-child {
    margin-top: 0;
}

.privacy-definition-list dd {
    margin: 0;
    padding-left: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

/* Module Info Box */
.privacy-module-info {
    background: var(--color-bg);
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.privacy-module-info:last-child {
    margin-bottom: 0;
}

.privacy-module-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 12px;
}

.privacy-module-info p {
    margin: 0 0 8px;
    font-size: 14px;
}

.privacy-module-info p:last-child {
    margin-bottom: 0;
}

.privacy-module-info a {
    color: var(--color-primary-dark);
    word-break: break-all;
    transition: color 0.2s ease;
}

.privacy-module-info a:hover {
    color: var(--color-primary);
}

/* Law Item */
.privacy-law-item {
    background: var(--color-bg);
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.privacy-law-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 12px;
}

.privacy-law-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.privacy-law-item li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.7;
}

.privacy-law-item li:last-child {
    margin-bottom: 0;
}

/* Note */
.privacy-note {
    font-size: 14px;
    color: var(--color-muted);
    margin-top: 24px;
}

.privacy-note a {
    color: var(--color-primary-dark);
}

/* Revision Date */
.privacy-revision-date {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-section {
        padding: 28px 20px;
    }

    .privacy-contact-table th {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .privacy-contact-table th,
    .privacy-contact-table td {
        display: block;
        width: 100%;
        padding: 8px 0;
    }

    .privacy-contact-table tr {
        padding: 8px 0;
    }

    .privacy-contact-table th {
        padding-bottom: 4px;
        border-bottom: none;
    }

    .privacy-oecd-table th,
    .privacy-oecd-table td {
        padding: 8px 10px;
        font-size: 14px;
    }
}

.site-footer {
    background: #0f2432;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 300px;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.footer-company-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.footer-logo img {
    height: 56px;
    width: auto;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-description {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

.footer-nav-group {
    display: flex;
    gap: 60px;
}

.footer-nav-col {
    min-width: 140px;
}

.footer-nav-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-menu li a:hover {
    color: var(--color-white);
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-nav-group {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .footer-nav-group {
        flex-direction: column;
        gap: 28px;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .header-pill {
        gap: 12px;
        padding: 6px 6px 6px 16px;
    }

    .header-nav {
        display: none;
    }

    .header-cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    .site-title {
        font-size: 16px;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .header-pill {
        padding: 6px 6px 6px 12px;
    }

    .header-cta {
        padding: 8px 12px;
        font-size: 12px;
    }

    .site-title {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 0;
        padding-top: 80px;
        min-height: 100vh;
    }

    .hero-inner {
        min-height: 100vh;
        align-content: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-text {
        margin-top: 40px;
        font-size: 14px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header-row .btn-link {
        padding-right: 0;
        margin-right: 0;
        width: auto;
        flex-shrink: 0;
    }

    .btn {
        width: 100%;
    }
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.is-visible {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background: var(--color-white);
    z-index: 1000;
    padding: 80px 24px 40px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list li a {
    display: block;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu-list li a:hover {
    color: var(--color-primary-dark);
    padding-left: 8px;
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }
}
