/* ============================================
   GLOBAL DESIGN TOKENS
   ============================================ */
:root {
    /* Colors — Light Mode Premium */
    --bg-primary: #F7F9FC;
    --bg-secondary: #EEF2F9;
    --bg-card: #FFFFFF;
    --bg-card-hover: rgba(27, 59, 111, 0.04);
    --accent-blue: #2B6CB0;
    --accent-blue-light: #3B82CB;
    --accent-navy: #1B3B6F;
    --accent-gold: #9B7B2F;
    --accent-gold-light: #C9A84C;
    --accent-teal: #2A7D9C;
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    --border-color: rgba(27, 59, 111, 0.1);
    --border-glow: rgba(43, 108, 176, 0.3);

    /* Typography */
    --font-primary: 'Inter', 'Noto Sans JP', sans-serif;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* Spacing — 1.5x wider */
    --section-padding: 140px 0;
    --container-width: 1200px;
    --container-padding: 0 32px;

    /* Effects — clean, airy */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(27, 59, 111, 0.1);
    --glass-blur: blur(20px);
    --shadow-card: 0 4px 24px rgba(27, 59, 111, 0.08), 0 1px 4px rgba(27, 59, 111, 0.05);
    --shadow-card-hover: 0 16px 48px rgba(27, 59, 111, 0.14), 0 4px 12px rgba(27, 59, 111, 0.08);
    --shadow-glow-blue: 0 16px 48px rgba(43, 108, 176, 0.15);
    --shadow-glow-gold: 0 16px 48px rgba(155, 123, 47, 0.15);
    /* Slow, luxurious ease */
    --transition-base: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ============================================
   RESET & BASE
   ============================================ */
html {
    overflow-x: hidden;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.85;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.12s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.24s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.36s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.48s;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: var(--fw-bold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-navy);
    margin-bottom: 20px;
    padding: 6px 18px;
    background: rgba(27, 59, 111, 0.06);
    border: 1px solid rgba(27, 59, 111, 0.2);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: var(--fw-extrabold);
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 72px;
    line-height: 1.85;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-navy), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-text {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 44px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-navy), var(--accent-blue));
    color: #fff;
    box-shadow: 0 4px 20px rgba(27, 59, 111, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(27, 59, 111, 0.35);
}

.btn-secondary {
    background: #fff;
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.btn-secondary:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-navy), #2B5BA8);
    color: #fff;
    font-weight: var(--fw-bold);
    box-shadow: 0 4px 20px rgba(27, 59, 111, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(27, 59, 111, 0.4);
}

.btn-sm {
    padding: 13px 32px;
    font-size: 0.9rem;
}

/* ============================================
   SECTION 1: HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    background: #F0F4FA;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-gradient {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 70% 60% at 15% 40%, rgba(43, 108, 176, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 82% 18%, rgba(42, 125, 200, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 55% 88%, rgba(155, 123, 47, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse 40% 50% at 70% 60%, rgba(79, 91, 213, 0.08) 0%, transparent 50%),
        linear-gradient(150deg, #E4EDF8 0%, #F0F5FC 45%, #E8EFF9 100%);
    animation: none;
}

@keyframes auroraShift {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }

    50% {
        filter: hue-rotate(6deg) brightness(1.02);
    }

    100% {
        filter: hue-rotate(-4deg) brightness(0.99);
    }
}

/* Aurora blobs */
.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    pointer-events: none;
}

.hero-bg::before {
    width: 520px;
    height: 520px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(43, 108, 176, 0.20), transparent 70%);
    animation: blobFloat 18s ease-in-out infinite alternate;
}

.hero-bg::after {
    width: 380px;
    height: 380px;
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(79, 91, 213, 0.14), transparent 70%);
    animation: blobFloat 22s ease-in-out infinite alternate-reverse;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.08);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.94);
    }

    100% {
        transform: translate(30px, 40px) scale(1.05);
    }
}

/* Subtle dot-grid overlay */
.hero-bg-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(27, 59, 111, 0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Animated soft orb */
.hero-bg-gradient::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(43, 108, 176, 0.1) 0%, transparent 65%);
    animation: pulseOrb 8s ease-in-out infinite;
}

@keyframes pulseOrb {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 1;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-label .badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: var(--fw-semibold);
    padding: 7px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.hero-label .badge:first-child {
    background: rgba(27, 59, 111, 0.07);
    border: 1px solid rgba(27, 59, 111, 0.2);
    color: var(--accent-navy);
}

.hero-label .badge:last-child {
    background: rgba(155, 123, 47, 0.07);
    border: 1px solid rgba(155, 123, 47, 0.2);
    color: var(--accent-gold);
}

.hero-label .badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: var(--fw-extrabold);
    line-height: 1.25;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 44px;
    line-height: 1.9;
}

.hero p small {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hero-lead {
    font-size: 1.2rem !important;
    color: var(--text-primary) !important;
    font-weight: var(--fw-medium);
    line-height: 1.8;
    margin-bottom: 20px !important;
}

.pc-only {
    display: inline;
}

/* ============================================
   COMPARISON TABLE (base / desktop)
   ============================================ */
.compare-table {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.compare-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    background: rgba(27, 59, 111, 0.04);
    padding: 12px 16px;
    font-size: 0.78rem;
    font-weight: var(--fw-bold);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.compare-us {
    color: var(--accent-gold) !important;
}

.compare-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    padding: 10px 16px;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(27, 59, 111, 0.06);
    transition: background 0.2s ease;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-row:hover {
    background: rgba(27, 59, 111, 0.02);
}

.compare-row span:first-child {
    color: var(--text-secondary);
    font-weight: var(--fw-medium);
}

.compare-row .bad {
    color: #FF6B6B;
    font-size: 0.75rem;
}

.compare-row .good {
    color: #66BB6A;
    font-weight: var(--fw-semibold);
    font-size: 0.75rem;
}

/* ============================================
   HERO: STATS COUNTER (base / desktop)
   ============================================ */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    padding: 28px 48px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(27, 59, 111, 0.12);
    border-radius: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px rgba(27, 59, 111, 0.08);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: var(--fw-extrabold);
    background: linear-gradient(135deg, var(--accent-navy), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-stat-plus,
.hero-stat-unit {
    font-size: 1rem;
    font-weight: var(--fw-bold);
}

.hero-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: var(--fw-medium);
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(27, 59, 111, 0.15), transparent);
}

@media (max-width: 768px) {
    .pc-only {
        display: none;
    }
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-blue);
    opacity: 0.3;
    animation: floatParticle 15s infinite ease-in-out;
    box-shadow: 0 0 8px currentColor;
}

.particle:nth-child(1) {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle:nth-child(2) {
    width: 4px;
    height: 4px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.particle:nth-child(3) {
    width: 8px;
    height: 8px;
    top: 40%;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 20s;
    background: var(--accent-gold);
    opacity: 0.1;
}

.particle:nth-child(4) {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    width: 5px;
    height: 5px;
    top: 30%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 12s;
}

.particle:nth-child(6) {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 40%;
    animation-delay: 5s;
    animation-duration: 22s;
    background: var(--accent-gold);
    opacity: 0.08;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -40px) scale(1.2);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.8);
    }

    75% {
        transform: translate(40px, 10px) scale(1.1);
    }
}

/* ============================================
   SECTION 2: TRUST BADGES
   ============================================ */
.trust-section {
    padding: 80px 0;
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-navy), transparent);
    opacity: 0.3;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.trust-card {
    text-align: center;
    padding: 44px 28px;
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.trust-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(27, 59, 111, 0.08), rgba(43, 108, 176, 0.05));
    border: 1.5px solid rgba(27, 59, 111, 0.12);
}

.trust-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--accent-navy);
}

.trust-card h3 {
    font-size: 1rem;
    font-weight: var(--fw-bold);
    margin-bottom: 10px;
    color: var(--text-primary);
}

.trust-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   SECTION 3: PROBLEM
   ============================================ */
.problem-section {
    background: var(--bg-secondary);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 85% 50%, rgba(43, 108, 176, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #131A2E, #1A2340);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.problem-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: var(--fw-extrabold);
    margin-bottom: 32px;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.problem-list li:hover {
    border-color: rgba(255, 100, 100, 0.3);
    background: rgba(255, 100, 100, 0.04);
}

.problem-list li .check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 100, 100, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.problem-list li .check-icon svg {
    width: 12px;
    height: 12px;
    fill: #FF6B6B;
}

.problem-conclusion {
    font-size: 1.05rem;
    font-weight: var(--fw-semibold);
    color: var(--accent-blue-light);
    padding: 16px 20px;
    background: rgba(33, 150, 243, 0.06);
    border-left: 3px solid var(--accent-blue);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ============================================
   SECTION 4: WHY CHOOSE US
   ============================================ */
.why-section {
    background: #FFFFFF;
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(27, 59, 111, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    padding: 52px 40px;
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-navy), var(--accent-blue));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.why-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(27, 59, 111, 0.08), rgba(43, 108, 176, 0.05));
    border: 1.5px solid rgba(27, 59, 111, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.why-card-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--accent-navy);
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: var(--fw-bold);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.why-card h3 .number {
    color: var(--accent-navy);
}

.why-card p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   SECTION 5: PRICING
   ============================================ */
.pricing-section {
    background: var(--bg-secondary);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, rgba(66, 165, 245, 0.04) 40%, transparent 70%);
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27, 59, 111, 0.15), transparent);
}

/* Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 6px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-tab {
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: var(--fw-semibold);
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.tab-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pricing-tab:hover {
    color: var(--text-secondary);
}

.pricing-tab.active {
    background: var(--accent-navy);
    color: #fff;
    box-shadow: 0 4px 16px rgba(27, 59, 111, 0.25);
}

.pricing-tab.active .tab-icon {
    filter: brightness(0) invert(1);
}

/* Pricing Panels */
.pricing-panel {
    display: none;
    width: 100%;
}

.pricing-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.pricing-card {
    padding: 44px 36px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-card-hover);
}

.pricing-card.highlighted {
    border-color: var(--accent-navy);
    background: linear-gradient(180deg, rgba(27, 59, 111, 0.03) 0%, var(--bg-card) 40%);
    box-shadow: var(--shadow-glow-blue), 0 0 0 1px rgba(27, 59, 111, 0.15);
    transform: scale(1.02);
}

.pricing-card.highlighted:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: 0 24px 60px rgba(27, 59, 111, 0.2);
}

.pricing-popular {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-navy), var(--accent-blue));
    color: #fff;
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    padding: 5px 20px;
    border-radius: 0 0 10px 10px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pricing-plan-name {
    font-size: 0.8rem;
    font-weight: var(--fw-bold);
    color: var(--accent-navy);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 8px;
}

.pricing-card.highlighted .pricing-plan-name {
    color: var(--accent-navy);
}

.pricing-amount {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.pricing-price {
    font-size: 2.4rem;
    font-weight: var(--fw-extrabold);
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-price .currency {
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.pricing-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.pricing-feature svg {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    fill: var(--accent-navy);
}

.pricing-card.highlighted .pricing-feature svg {
    fill: var(--accent-navy);
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ============================================
   SECTION 6: HOW IT WORKS
   ============================================ */
.how-section {
    background: #FFFFFF;
    position: relative;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-gold));
    opacity: 0.5;
}

.timeline-item {
    display: flex;
    gap: 32px;
    padding-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--accent-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: var(--fw-extrabold);
    color: var(--accent-navy);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(27, 59, 111, 0.12);
}

.timeline-item:last-child .timeline-marker {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 4px 16px rgba(155, 123, 47, 0.15);
}

.timeline-content {
    padding-top: 12px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    margin-bottom: 10px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   SECTION 7: FAQ
   ============================================ */
.faq-section {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: var(--radius-md);
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item.active {
    border-color: var(--accent-blue);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--accent-blue-light);
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(27, 59, 111, 0.07);
    border: 1.5px solid rgba(27, 59, 111, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base), background var(--transition-base);
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(45deg);
    background: var(--accent-navy);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--accent-navy);
    transition: fill var(--transition-base);
}

.faq-item.active .faq-icon svg {
    fill: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   SECTION 8: BOTTOM CTA
   ============================================ */
.bottom-cta {
    padding: 160px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--accent-navy) 0%, #0F2756 50%, #1A3A70 100%);
    color: #fff;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 55%);
    pointer-events: none;
    animation: pulseOrb 10s ease-in-out infinite;
}

.bottom-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.5;
}

.bottom-cta .container {
    position: relative;
    z-index: 1;
}

.bottom-cta h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: var(--fw-extrabold);
    margin-bottom: 24px;
    color: #fff;
}

.bottom-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.85;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 48px 0;
    background: var(--accent-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    /* --- SNS Logos (mobile) --- */
    .hero-sns-logos {
        gap: 28px;
    }

    .sns-icon {
        width: 42px;
        height: 42px;
    }

    /* --- Stats Counter (mobile) --- */
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        padding: 20px 16px;
        border-radius: var(--radius-lg);
        max-width: 100%;
    }

    .hero-stat {
        flex: 1;
        min-width: 90px;
        padding: 8px 4px;
    }

    .hero-stat-number {
        font-size: 1.4rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .hero-stat-divider {
        width: 1px;
        height: 36px;
    }

    /* --- Trust --- */
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .trust-card {
        padding: 24px 16px;
    }

    /* --- Problem --- */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problem-image {
        order: -1;
    }

    /* --- Why --- */
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    /* --- Results & Chart (mobile) --- */
    .results-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .result-chart-card {
        padding: 20px 16px;
    }

    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .chart-meta {
        font-size: 0.82rem;
    }

    .chart-badge {
        font-size: 0.82rem;
        align-self: flex-start;
    }


    /* --- Guarantee Card (mobile) --- */
    .guarantee-card {
        padding: 24px 16px;
    }

    .guarantee-title {
        font-size: 1.1rem;
    }

    .guarantee-flow {
        gap: 16px;
        margin-bottom: 24px;
    }

    .guarantee-step {
        flex: 1;
        min-width: 70px;
    }

    .guarantee-icon {
        width: 46px;
        height: 46px;
    }

    .guarantee-icon svg {
        width: 20px;
        height: 20px;
    }

    .step-num {
        font-size: 0.6rem;
    }

    .step-label {
        font-size: 0.72rem;
        max-width: 80px;
    }

    .guarantee-arrow {
        font-size: 1rem;
        margin-top: -16px;
    }

    /* --- Comparison Table: Stacked Cards (mobile) --- */
    .compare-table {
        border: none;
        border-radius: 0;
    }

    .compare-header {
        display: none !important;
    }

    .compare-row {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        padding: 0 !important;
        background: #FFFFFF;
        border-radius: var(--radius-md);
        margin-bottom: 12px;
        border: 1px solid var(--border-color);
        box-shadow: 0 2px 8px rgba(27, 59, 111, 0.04);
        overflow: hidden;
    }

    .compare-row:last-child {
        margin-bottom: 0;
    }

    .compare-row span:first-child {
        font-size: 0.82rem;
        font-weight: var(--fw-bold);
        color: var(--text-primary);
        padding: 12px 16px 10px;
        margin-bottom: 0;
        background: rgba(27, 59, 111, 0.03);
        border-bottom: 1px solid rgba(27, 59, 111, 0.08);
    }

    .compare-row .bad {
        font-size: 0.82rem;
        padding: 10px 16px;
        background: rgba(255, 107, 107, 0.05);
        border-left: 3px solid #FF6B6B;
        border-radius: 0;
        color: #c0392b;
        position: relative;
    }

    .compare-row .bad::before {
        content: '一般的な業者';
        display: block;
        font-size: 0.68rem;
        font-weight: var(--fw-bold);
        color: var(--text-muted);
        margin-bottom: 3px;
        letter-spacing: 0.02em;
    }

    .compare-row .good {
        font-size: 0.82rem;
        padding: 10px 16px;
        background: rgba(102, 187, 106, 0.05);
        border-left: 3px solid #66BB6A;
        border-radius: 0;
        color: #1e7e34;
        font-weight: var(--fw-semibold);
        position: relative;
    }

    .compare-row .good::before {
        content: '当社サービス';
        display: block;
        font-size: 0.68rem;
        font-weight: var(--fw-bold);
        color: var(--accent-gold);
        margin-bottom: 3px;
        letter-spacing: 0.02em;
    }

    /* --- Pricing (mobile — full width, equal cards) --- */
    .pricing-tabs {
        flex-wrap: wrap;
        border-radius: var(--radius-md);
        gap: 4px;
        padding: 5px;
    }

    .pricing-tab {
        padding: 8px 14px;
        font-size: 0.78rem;
        gap: 4px;
    }

    .tab-icon {
        width: 14px;
        height: 14px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 32px 24px;
        width: 100%;
        max-width: 100%;
    }

    .pricing-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .pricing-card.highlighted {
        transform: none;
    }

    .pricing-card.highlighted:hover {
        transform: translateY(-4px);
    }

    .pricing-price {
        font-size: 2.2rem;
    }

    /* --- Timeline --- */
    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .timeline-item {
        gap: 20px;
    }

    /* --- Footer --- */
    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero-label {
        flex-direction: column;
        gap: 8px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 320px;
    }

    .hero-sns-logos {
        gap: 16px;
        margin-bottom: 24px;
    }

    .sns-icon {
        width: 32px;
        height: 32px;
    }

    .sns-logo-item span {
        font-size: 0.62rem;
    }

    .hero-stat {
        min-width: 0;
    }

    .hero-stat-number {
        font-size: 1.15rem;
    }

    .hero-stat-label {
        font-size: 0.6rem;
    }

    /* --- STATS CARD: vertical stacked (mobile) --- */
    .hero-stats {
        flex-direction: column !important;
        padding: 20px 24px !important;
        gap: 0 !important;
        border-radius: var(--radius-lg) !important;
        margin-top: 32px !important;
        max-width: 340px !important;
    }

    .hero-stat {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 12px 0 !important;
        text-align: left !important;
    }

    .hero-stat-number {
        font-size: 1.5rem;
        order: 2;
        flex-shrink: 0;
    }

    .hero-stat-label {
        font-size: 0.78rem;
        order: 1;
        white-space: normal;
        color: var(--text-secondary);
        font-weight: var(--fw-medium);
    }

    .hero-stat-divider {
        width: 100% !important;
        height: 1px !important;
        background: rgba(27, 59, 111, 0.1) !important;
    }

    .hero-cta {
        gap: 12px;
    }

    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .hero-lead {
        font-size: 0.82rem;
        margin-bottom: 20px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .guarantee-flow {
        flex-direction: column;
        gap: 6px;
    }

    .guarantee-arrow {
        transform: rotate(90deg);
        margin-top: 0;
        font-size: 0.9rem;
    }

    .guarantee-step {
        flex-direction: row;
        max-width: 100%;
        gap: 12px;
        padding: 8px 0;
    }

    .step-label {
        max-width: 160px;
        text-align: left;
        font-size: 0.82rem;
    }
}

/* ============================================
   HERO: SNS LOGOS
   ============================================ */
.hero-sns-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
}

.sns-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.sns-logo-item:hover {
    transform: translateY(-4px) scale(1.08);
}

.sns-logo-item span {
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.sns-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.1));
    transition: filter 0.3s ease;
}

.sns-icon:hover {
    filter: drop-shadow(0 0 12px rgba(43, 108, 176, 0.3));
    transform: scale(1.08);
    transition: all 0.3s ease;
}

.sns-icon-sm {
    width: 22px;
    height: 22px;
}



/* ============================================
   RESULTS SECTION
   ============================================ */
.results-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.results-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: start;
}

.result-chart-card {
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all var(--transition-base);
}

.result-chart-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-card-hover);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.chart-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: var(--fw-medium);
}

.chart-badge {
    font-size: 0.85rem;
    font-weight: var(--fw-bold);
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(27, 59, 111, 0.07);
    color: var(--accent-navy);
    border: 1px solid rgba(27, 59, 111, 0.15);
}

.growth-chart {
    width: 100%;
    height: auto;
}

.chart-line {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-dot,
.chart-dot-gold {
    opacity: 0;
    animation: dotAppear 0.3s ease forwards;
}

.chart-dot:nth-child(1) {
    animation-delay: 0.5s;
}

.chart-dot:nth-child(2) {
    animation-delay: 1s;
}

.chart-dot:nth-child(3) {
    animation-delay: 1.5s;
}

.chart-dot-gold {
    animation-delay: 1.8s;
}

@keyframes dotAppear {
    to {
        opacity: 1;
    }
}

.chart-footer {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.chart-legend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.blue {
    background: var(--accent-blue);
}

.legend-dot.gold {
    background: var(--accent-gold);
}

/* ============================================
   GUARANTEE CARD
   ============================================ */
.guarantee-card {
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all var(--transition-base);
}

.guarantee-card:hover {
    border-color: var(--accent-navy);
    box-shadow: var(--shadow-card-hover);
}

.guarantee-title {
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    margin-bottom: 6px;
}

.guarantee-subtitle {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.guarantee-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.guarantee-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.guarantee-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon svg {
    width: 24px;
    height: 24px;
}

.guarantee-icon.blue {
    background: rgba(66, 165, 245, 0.15);
    border: 1px solid rgba(66, 165, 245, 0.3);
    color: #42A5F5;
    box-shadow: 0 0 16px rgba(66, 165, 245, 0.15);
}

.guarantee-icon.amber {
    background: rgba(255, 183, 77, 0.15);
    border: 1px solid rgba(255, 183, 77, 0.3);
    color: #FFB74D;
    box-shadow: 0 0 16px rgba(255, 183, 77, 0.15);
}

.guarantee-icon.green {
    background: rgba(102, 187, 106, 0.15);
    border: 1px solid rgba(102, 187, 106, 0.3);
    color: #66BB6A;
    box-shadow: 0 0 16px rgba(102, 187, 106, 0.15);
}

.step-num {
    font-size: 0.65rem;
    font-weight: var(--fw-bold);
    color: var(--text-muted);
    letter-spacing: 1px;
}

.step-label {
    font-size: 0.78rem;
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    max-width: 100px;
}

.guarantee-arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: -20px;
}





/* ============================================
   CHART: DESKTOP / MOBILE SHOW-HIDE
   ============================================ */
.chart-mobile-only {
    display: none;
}

.chart-desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .chart-desktop-only {
        display: none;
    }

    .chart-mobile-only {
        display: block;
    }
}

/* ============================================
   MOBILE MILESTONE PROGRESS BARS
   ============================================ */
.milestone-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.milestone-item {
    display: grid;
    grid-template-columns: 52px 1fr 72px;
    align-items: center;
    gap: 12px;
}

.milestone-day {
    font-size: 0.78rem;
    font-weight: var(--fw-bold);
    color: var(--text-secondary);
    text-align: right;
}

.milestone-bar-wrap {
    height: 24px;
    background: rgba(27, 59, 111, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(27, 59, 111, 0.1);
}

.milestone-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-navy), var(--accent-blue));
    border-radius: 12px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 4px;
}

.milestone-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0 12px 12px 0;
}

.milestone-bar.gold {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
}

.milestone-count {
    font-size: 0.85rem;
    font-weight: var(--fw-bold);
    color: var(--accent-blue-light);
    text-align: left;
}

.gold-text-sm {
    color: var(--accent-gold) !important;
    font-weight: var(--fw-extrabold) !important;
}

.milestone-final {
    padding: 4px 0;
}

.milestone-final .milestone-day {
    color: var(--accent-gold);
}

.milestone-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   DELIVERY SPEED TAGS
   ============================================ */
.delivery-speed-tags {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.speed-tag {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(27, 59, 111, 0.03);
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
}

.speed-tag:hover {
    background: rgba(27, 59, 111, 0.06);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.speed-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.speed-tag div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.speed-tag strong {
    font-size: 0.8rem;
    font-weight: var(--fw-bold);
    color: var(--text-primary);
}

.speed-tag span {
    font-size: 0.68rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .delivery-speed-tags {
        flex-direction: column;
        gap: 8px;
    }

    .speed-tag {
        padding: 10px 14px;
    }
}

/* ============================================
   HERO H1 ENHANCEMENT (Short, Bold)
   ============================================ */
.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    letter-spacing: -0.04em;
    line-height: 1.15;
}

/* ============================================
   STICKY CTA BAR
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.sticky-cta.is-visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1.5px solid rgba(27, 59, 111, 0.12);
    box-shadow: 0 -4px 20px rgba(27, 59, 111, 0.06);
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sticky-cta-title {
    font-size: 0.95rem;
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    white-space: nowrap;
}

.sticky-cta-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.sticky-cta-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.sticky-cta-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color var(--transition-base), background var(--transition-base);
}

.sticky-cta-close:hover {
    background: rgba(27, 59, 111, 0.07);
    color: var(--text-primary);
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .sticky-cta-text {
        display: none;
    }

    .sticky-cta-inner {
        padding: 12px 16px;
        justify-content: space-between;
    }

    .sticky-cta-btn {
        flex: 1;
        text-align: center;
    }
}