/* =============================================
   Service Page - 共通スタイル v2
   黒基調 × グリーンアクセント × 静かに高級
   ============================================= */

/* ── Variables ── */
.service-page {
    --sv-green: #00c853;
    --sv-green-dark: #00a844;
    --sv-surface-1: #0f0f11;
    --sv-surface-2: #141416;
    --sv-surface-3: #1a1a1e;
    --sv-border: #2a2a2e;
    --sv-text: #e0e0e0;
    --sv-muted: #9ca3af;
    --sv-font-en: 'Inter', 'Helvetica Neue', sans-serif;
    background-color: var(--sv-surface-1);
    color: var(--sv-text);
}

/* ── Header ── */
.header-solid {
    background-color: rgba(15, 15, 17, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* ── Utility ── */
.sp-only { display: none; }

/* ── Scroll Reveal ── */
.sv-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.sv-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.sv-fade-d1 { transition-delay: 0.12s; }
.sv-fade-d2 { transition-delay: 0.24s; }
.sv-fade-d3 { transition-delay: 0.36s; }
.sv-fade-d4 { transition-delay: 0.48s; }
.sv-fade-d5 { transition-delay: 0.60s; }

/* legacy class */
.sv-fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.sv-fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* =============================================
   HERO — シネマティック
   ============================================= */
.sv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 0 80px;
    background: var(--sv-surface-1);
    overflow: hidden;
}

.sv-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(0, 200, 83, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 200, 83, 0.04) 0%, transparent 50%);
}

.sv-hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}

.sv-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* Breadcrumb */
.sv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--sv-muted);
    margin-bottom: 3rem;
}
.sv-breadcrumb a { color: var(--sv-muted); transition: color 0.3s; }
.sv-breadcrumb a:hover { color: var(--sv-green); }
.sv-breadcrumb .current { color: var(--sv-green); }

/* ── Hero Watermark ── */
.sv-hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.sv-wm-line {
    display: block;
    font-family: var(--sv-font-en);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.85;
    user-select: none;
}

.sv-wm-1 {
    font-size: clamp(7rem, 16vw, 18rem);
    letter-spacing: -4px;
}
.sv-wm-2 {
    font-size: clamp(5rem, 12vw, 14rem);
    letter-spacing: -3px;
    margin-left: 5%;
}

.sv-wm-base .sv-wm-line {
    color: var(--sv-surface-1);
    -webkit-text-stroke: 1px #374151;
    paint-order: stroke fill;
}

.sv-wm-draw {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.sv-wm-draw .sv-wm-line {
    color: #1a1d20;
    -webkit-text-stroke: 1px var(--sv-green);
    paint-order: stroke fill;
}
.sv-wm-draw .sv-wm-1 {
    clip-path: inset(0 100% 0 0);
    animation: svWmReveal 3s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s forwards;
}
.sv-wm-draw .sv-wm-2 {
    clip-path: inset(0 100% 0 0);
    animation: svWmReveal 4s cubic-bezier(0.22, 0.61, 0.36, 1) 1.5s forwards;
}
@keyframes svWmReveal {
    to { clip-path: inset(-5% -15% -5% -5%); }
}

/* ── Hero Accent Line ── */
.sv-hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--sv-green) 30%, var(--sv-green) 70%, transparent 100%);
    z-index: 5;
}

/* ── Hero Titles ── */
.sv-hero-en {
    font-family: var(--sv-font-en);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: -10px;
    text-transform: uppercase;
}

.sv-hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.sv-hero-lead {
    font-size: 1rem;
    color: var(--sv-muted);
    line-height: 2.2;
    max-width: 600px;
    letter-spacing: 0.5px;
}

/* ── Hero Stats ── */
.sv-hero-stats {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 28px 0;
    max-width: 520px;
    margin-top: 2.5rem;
    backdrop-filter: blur(4px);
}

.sv-hero-stat {
    flex: 1;
    text-align: center;
}
.sv-hero-stat-num {
    font-family: var(--sv-font-en);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--sv-green);
    line-height: 1;
}
.sv-hero-stat-unit {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sv-green);
    margin-left: 2px;
}
.sv-hero-stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--sv-muted);
    margin-top: 6px;
    letter-spacing: 1px;
}
.sv-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* ── Scroll Cue ── */
.sv-scroll-cue {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}
.sv-scroll-cue span {
    font-family: var(--sv-font-en);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--sv-muted);
    text-transform: uppercase;
    writing-mode: vertical-rl;
}
.sv-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--sv-green), transparent);
    animation: svScrollPulse 2s ease-in-out infinite;
}
@keyframes svScrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* =============================================
   MESSAGE — 冒頭メッセージ
   ============================================= */
.sv-message {
    position: relative;
    background: var(--sv-surface-2);
    padding: 120px 40px;
    overflow: hidden;
}
.sv-message-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.sv-message-en {
    font-family: var(--sv-font-en);
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 8px;
    color: rgba(255, 255, 255, 0.06);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.sv-message-title {
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.7;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}
.sv-message-bar {
    width: 50px;
    height: 3px;
    background: var(--sv-green);
    margin: 0 auto 2rem;
}
.sv-message-body {
    font-size: 0.95rem;
    color: var(--sv-muted);
    line-height: 2.4;
}

/* =============================================
   Section Common
   ============================================= */
.sv-section {
    padding: 100px 0;
}

.sv-section-en {
    display: block;
    font-family: var(--sv-font-en);
    font-size: 0.75rem;
    letter-spacing: 6px;
    color: var(--sv-green);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.sv-section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.sv-section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--sv-green);
    margin: 15px auto 0;
}

.sv-section-sub {
    text-align: center;
    font-size: 0.95rem;
    color: var(--sv-muted);
    margin-bottom: 60px;
}

.sv-section-lead {
    font-size: 1rem;
    color: #c0c0c0;
    line-height: 2.2;
    margin-bottom: 1.5rem;
}
.sv-section-lead strong {
    color: var(--sv-green);
    font-weight: 700;
}

/* =============================================
   Intro Section
   ============================================= */
.sv-intro-section { background-color: var(--sv-surface-2); }

.sv-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}
.sv-intro-numbers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sv-number-card {
    background: rgba(0, 200, 83, 0.05);
    border: 1px solid rgba(0, 200, 83, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}
.sv-number-value {
    display: block;
    font-family: var(--sv-font-en);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--sv-green);
    line-height: 1;
}
.sv-number-unit { font-size: 1.2rem; font-weight: 700; color: var(--sv-green); }
.sv-number-dash { font-size: 2rem; margin: 0 2px; }
.sv-number-label { display: block; font-size: 0.85rem; color: var(--sv-muted); margin-top: 8px; }

/* =============================================
   Symptoms Section
   ============================================= */
.sv-symptoms-section { background-color: var(--sv-surface-1); }

.sv-symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--sv-border);
    border: 1px solid var(--sv-border);
    border-radius: 12px;
    overflow: hidden;
}

.sv-symptom-card {
    background: var(--sv-surface-3);
    padding: 35px 30px;
    transition: background 0.3s ease;
}
.sv-symptom-card:hover {
    background: rgba(0, 200, 83, 0.03);
}

.sv-symptom-icon { margin-bottom: 20px; }
.sv-symptom-icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 200, 83, 0.1);
    color: var(--sv-green);
    border-radius: 50%;
    font-family: var(--sv-font-en);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
}
.sv-symptom-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.sv-symptom-card p { font-size: 0.85rem; color: var(--sv-muted); line-height: 1.9; }

/* =============================================
   CTA Band
   ============================================= */
.sv-cta-band {
    background: linear-gradient(135deg, #0d2818 0%, #1a3a25 100%);
    padding: 50px 0;
    text-align: center;
}
.sv-cta-band-text { font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 25px; }
.sv-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--sv-green);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.sv-cta-btn:hover {
    background: var(--sv-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.3);
}

/* =============================================
   Work Section
   ============================================= */
.sv-work-section { background-color: var(--sv-surface-2); }

.sv-work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--sv-border);
    border: 1px solid var(--sv-border);
    border-radius: 12px;
    overflow: hidden;
}
.sv-work-card {
    background: var(--sv-surface-3);
    padding: 40px 35px;
    position: relative;
    transition: background 0.3s ease;
}
.sv-work-card:hover { background: rgba(26, 26, 30, 0.95); }

.sv-work-num {
    font-family: var(--sv-font-en);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 200, 83, 0.1);
    line-height: 1;
    margin-bottom: 15px;
}
.sv-work-card h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 15px; letter-spacing: 1px; }
.sv-work-card p { font-size: 0.9rem; color: var(--sv-muted); line-height: 1.9; }

/* =============================================
   Location / Target Areas
   ============================================= */
.sv-location-section { background-color: var(--sv-surface-1); }

.sv-location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--sv-border);
    border: 1px solid var(--sv-border);
    border-radius: 12px;
    overflow: hidden;
}
.sv-location-card {
    background: var(--sv-surface-3);
    padding: 35px 25px;
    text-align: center;
    transition: background 0.3s ease;
}
.sv-location-card:hover { background: rgba(0, 200, 83, 0.03); }

.sv-location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(0, 200, 83, 0.08);
    border-radius: 50%;
    color: var(--sv-green);
    margin-bottom: 20px;
}
.sv-location-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.sv-location-card p { font-size: 0.85rem; color: var(--sv-muted); line-height: 1.8; }

/* =============================================
   Process — 横スクロール
   ============================================= */
.sv-flow-section { background-color: var(--sv-surface-1); }

.sv-process-track-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    cursor: grab;
    padding: 0 40px 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--sv-green) var(--sv-surface-3);
}
.sv-process-track-wrapper.is-grabbing { cursor: grabbing; }
.sv-process-track-wrapper::-webkit-scrollbar { height: 4px; }
.sv-process-track-wrapper::-webkit-scrollbar-track { background: var(--sv-surface-3); border-radius: 2px; }
.sv-process-track-wrapper::-webkit-scrollbar-thumb { background: var(--sv-green); border-radius: 2px; }

.sv-process-track {
    display: flex;
    gap: 0;
    width: max-content;
}

.sv-process-step {
    flex: 0 0 280px;
    padding: 40px 30px;
    border-right: 1px solid var(--sv-border);
    scroll-snap-align: start;
    transition: background 0.3s ease;
}
.sv-process-step:hover { background: rgba(0, 200, 83, 0.02); }

.sv-step-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}
.sv-step-num {
    font-family: var(--sv-font-en);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--sv-green);
    line-height: 1;
}
.sv-step-label {
    font-family: var(--sv-font-en);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}
.sv-process-step h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: 1px; }
.sv-process-step p { font-size: 0.85rem; color: var(--sv-muted); line-height: 1.9; }

/* Legacy vertical flow (hidden by default, kept for compat) */
.sv-flow-timeline { max-width: 700px; margin: 0 auto; }
.sv-flow-item { background: var(--sv-surface-3); border: 1px solid var(--sv-border); border-left: 3px solid var(--sv-green); border-radius: 0 12px 12px 0; padding: 35px; }
.sv-flow-step { display: inline-block; font-family: var(--sv-font-en); font-size: 0.75rem; font-weight: 900; letter-spacing: 2px; color: var(--sv-green); background: rgba(0, 200, 83, 0.08); padding: 6px 16px; border-radius: 4px; margin-bottom: 15px; }
.sv-flow-item h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.sv-flow-item p { font-size: 0.9rem; color: var(--sv-muted); line-height: 1.8; }
.sv-flow-connector { width: 3px; height: 30px; background: rgba(0, 200, 83, 0.2); margin: 0 0 0 30px; }

/* =============================================
   Quality — Grid
   ============================================= */
.sv-quality-section { background-color: var(--sv-surface-2); }

.sv-quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--sv-border);
    border: 1px solid var(--sv-border);
    border-radius: 12px;
    overflow: hidden;
}
.sv-quality-card {
    background: var(--sv-surface-3);
    padding: 35px 25px;
    text-align: center;
    transition: background 0.3s ease;
}
.sv-quality-card:hover { background: rgba(26, 26, 30, 0.95); }

.sv-quality-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(0, 200, 83, 0.08);
    border-radius: 50%;
    color: var(--sv-green);
    margin-bottom: 18px;
}
.sv-quality-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.sv-quality-card p { font-size: 0.85rem; color: var(--sv-muted); line-height: 1.8; }

/* =============================================
   FAQ
   ============================================= */
.sv-faq-section { background-color: var(--sv-surface-1); }

.sv-faq-list { max-width: 800px; margin: 0 auto; }

.sv-faq-item { border-bottom: 1px solid var(--sv-border); }
.sv-faq-item:first-child { border-top: 1px solid var(--sv-border); }

.sv-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.sv-faq-q:hover { color: var(--sv-green); }

.sv-faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-left: 20px;
}
.sv-faq-icon::before, .sv-faq-icon::after {
    content: '';
    position: absolute;
    background: var(--sv-green);
    transition: transform 0.3s ease;
}
.sv-faq-icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.sv-faq-icon::after { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); }
.sv-faq-item.is-open .sv-faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.sv-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}
.sv-faq-item.is-open .sv-faq-a { max-height: 300px; padding: 0 0 22px; }
.sv-faq-a p { font-size: 0.9rem; color: var(--sv-muted); line-height: 2; padding-right: 40px; }

/* =============================================
   Final CTA — ドラマティック
   ============================================= */
.sv-final-cta {
    position: relative;
    background: var(--sv-surface-1);
    padding: 120px 0;
    overflow: hidden;
}
.sv-final-cta-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.sv-final-bg-text {
    font-family: var(--sv-font-en);
    font-size: clamp(8rem, 22vw, 18rem);
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 200, 83, 0.04);
    white-space: nowrap;
    line-height: 1;
}
.sv-final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.sv-final-cta-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.sv-final-cta-lead {
    font-size: 0.95rem;
    color: var(--sv-muted);
    line-height: 2;
    margin-bottom: 2.5rem;
}
.sv-final-cta-tel-block { text-align: center; }
.sv-final-cta-tel-label { display: block; font-size: 0.75rem; color: var(--sv-muted); margin-bottom: 8px; letter-spacing: 2px; }
.sv-final-cta-tel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sv-font-en);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}
.sv-final-cta-tel:hover { color: var(--sv-green); }
.sv-final-cta-tel svg { color: var(--sv-green); }
.sv-final-cta-tel-hours { display: block; font-size: 0.75rem; color: var(--sv-muted); margin-top: 6px; }
.sv-final-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.sv-final-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--sv-green);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.sv-final-cta-btn:hover {
    background: var(--sv-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.3);
}

/* =============================================
   Contact (legacy)
   ============================================= */
.sv-contact-section { background-color: var(--sv-surface-1); }
.sv-contact-box { max-width: 700px; margin: 0 auto; text-align: center; background: linear-gradient(135deg, #0d2818, #1a3a25); border-radius: 16px; padding: 60px 40px; border: 1px solid rgba(0, 200, 83, 0.15); }
.sv-contact-en { font-size: 0.75rem; letter-spacing: 4px; color: var(--sv-green); text-transform: uppercase; margin-bottom: 10px; }
.sv-contact-title { font-size: 1.8rem; font-weight: 900; color: #fff; margin-bottom: 1rem; letter-spacing: 2px; }
.sv-contact-lead { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); line-height: 2; margin-bottom: 2rem; }
.sv-contact-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.sv-contact-tel { display: inline-flex; align-items: center; gap: 10px; font-size: 1.8rem; font-weight: 900; color: #fff; transition: color 0.3s; }
.sv-contact-tel:hover { color: var(--sv-green); }
.sv-contact-tel svg { color: var(--sv-green); }
.sv-contact-form-btn { display: inline-block; padding: 14px 36px; background: var(--sv-green); color: #fff; font-weight: 700; font-size: 0.95rem; border-radius: 4px; letter-spacing: 1px; transition: all 0.3s ease; }
.sv-contact-form-btn:hover { background: var(--sv-green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 200, 83, 0.3); }

/* =============================================
   Fixed CTA
   ============================================= */
.sv-fixed-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--sv-green);
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.4);
    transition: all 0.3s ease;
}
.sv-fixed-cta:hover { transform: scale(1.05); box-shadow: 0 6px 25px rgba(0, 200, 83, 0.5); }

.footer-links a.is-current { color: var(--sv-green); }

/* =============================================
   Responsive
   ============================================= */
@media screen and (max-width: 1024px) {
    .sv-quality-grid, .sv-location-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 767px) {
    .sp-only { display: inline; }

    .sv-hero { min-height: 90vh; padding: 0 0 50px; }
    .sv-hero-content { padding: 0 20px; }
    .sv-hero-en { font-size: 2rem; }
    .sv-hero-accent { width: 3px; }
    .sv-wm-1 { font-size: 4.5rem; }
    .sv-wm-2 { font-size: 3.5rem; }

    .sv-hero-stats { max-width: 100%; padding: 20px 10px; }
    .sv-hero-stat-num { font-size: 1.8rem; }
    .sv-hero-stat-divider { height: 30px; }
    .sv-scroll-cue { right: 20px; bottom: 20px; }

    .sv-message { padding: 70px 20px; }

    .sv-section { padding: 70px 0; }

    .sv-intro { grid-template-columns: 1fr; gap: 40px; }
    .sv-intro-numbers { flex-direction: row; }
    .sv-number-card { flex: 1; }
    .sv-number-value { font-size: 2.5rem; }

    .sv-symptoms-grid { grid-template-columns: 1fr; }
    .sv-work-grid { grid-template-columns: 1fr; }
    .sv-quality-grid, .sv-location-grid { grid-template-columns: 1fr; }

    .sv-final-cta { padding: 80px 0; }
    .sv-final-cta-tel { font-size: 1.5rem; }

    .sv-fixed-cta { right: 15px; bottom: 15px; padding: 12px 16px; font-size: 0.8rem; }
}
