:root {
    --c-white: #ffffff;
    --c-black: #111111;
    --c-gray-dark: #2c3e50;
    --c-gray: #596a7b;
    --c-gray-light: #f5f5f5;

    /* Premium Elegant Palette */
    --c-primary: #ff5e7e; /* Deeper coral pink */
    --c-primary-light: #fff0f4;
    --c-accent: #ff8c42; /* Rich orange */
    --c-dark-elegant: #1a2a27; /* Deep charcoal teal */
    --c-accent-blue: #3db8a8; /* Elegant teal */

    --c-accent-gold: border: 1px solid #d4af37;

    /* CTA Colors */
    --c-line: #06C755;
    --c-line-hover: #05b04b;

    --font-heading: 'Playfair Display', "Noto Sans JP", sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;

    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 50px;
}

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

body {
    font-family: var(--font-body);
    color: var(--c-gray-dark);
    line-height: 1.6;
    background:
        radial-gradient(circle at top left, rgba(255, 159, 67, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(82, 199, 184, 0.16), transparent 24%),
        linear-gradient(180deg, #fffdf8 0%, #ffffff 18%, #fffaf4 100%);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 70px;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 600px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: linear-gradient(180deg, #fffaf4 0%, #fff4ec 100%);
}

section {
    position: relative;
    overflow: hidden;
}

/* Highlight Box Text Styles */
.highlight-box-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    gap: 8px;
    /* Space between rows */
}

.highlight-box {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    /* Prevent line breaks on mobile */
    font-size: 1.15rem;
    /* Make it large */
    font-weight: 800;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: var(--c-white);
}

.highlight-plain {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border-bottom: none;
    color: #214842;
}

.bg-pop-pink {
    background-color: var(--c-primary);
}

.bg-pop-orange {
    background-color: var(--c-accent);
}

.bg-pop-blue {
    background-color: var(--c-accent-blue);
}

.bg-primary-soft {
    background-color: var(--c-primary-light);
}

.bg-dark-elegant {
    background-color: var(--c-dark-elegant);
}

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

.text-white {
    color: var(--c-white);
}

.text-gray {
    color: var(--c-gray);
}

.text-gray-light {
    color: #cccccc;
}

.text-accent {
    color: var(--c-accent);
}

.text-accent-gold {
    color: var(--c-accent-gold);
}

.text-primary {
    color: var(--c-primary);
}

.text-dark {
    color: var(--c-black);
}

.text-sm {
    font-size: 0.85rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.15rem;
}

.text-xl {
    font-size: 1.3rem;
}

.text-bold {
    font-weight: 700;
}

.mb-2 {
    margin-bottom: var(--space-sm);
}

.mb-3 {
    margin-bottom: var(--space-md);
}

.mb-4 {
    margin-bottom: var(--space-lg);
}

.mb-5 {
    margin-bottom: var(--space-xl);
}

.mb-6 {
    margin-bottom: var(--space-2xl);
}

.p-4 {
    padding: 16px;
}

.p-5 {
    padding: 20px;
}

.w-full {
    width: 100%;
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.shadow-glow {
    box-shadow: 0 10px 28px rgba(255, 111, 97, 0.22);
}

.border-radius-lg {
    border-radius: var(--radius-lg);
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gap-3 {
    gap: 12px;
}

/* Gradient Text Utilities */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-elegant {
    background: linear-gradient(135deg, var(--c-dark-elegant) 0%, var(--c-accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.05em;
}

.btn i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.btn-large {
    padding: 20px 36px;
    font-size: 1.2rem;
}

.btn-line {
    background: linear-gradient(135deg, #06C755 0%, #05b04b 100%);
    color: var(--c-white);
    box-shadow: 0 10px 24px rgba(6, 199, 85, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-line:active {
    background: linear-gradient(135deg, #05b04b 0%, #049f43 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(6, 199, 85, 0.45);
}

/* Button Shine Animation */
.btn-shine {
    position: relative;
    overflow: hidden;
}
.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    animation: shine 3s infinite cubic-bezier(0.19, 1, 0.22, 1);
}
@keyframes shine {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

/* Base Reveal Classes */
.reveal-up,
.reveal-bounce-left {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-up {
    transform: translateY(20px);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-bounce-left.active {
    animation: bounce-in-left 0.55s ease forwards;
    animation-delay: var(--stagger-delay, 0s);
}

@keyframes bounce-in-left {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    60% {
        opacity: 1;
        transform: translateX(10px);
    }
    80% {
        transform: translateX(-5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.delay-stagger {
    transition-delay: var(--stagger-delay, 0s);
}

/* Header */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

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

.logo img {
    display: block;
    height: 34px;
    width: auto;
}

.pc-only {
    display: none;
}

.mobile-menu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 8px 18px rgba(33, 72, 66, 0.08);
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--c-dark-elegant);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
    position: fixed;
    top: 72px;
    right: 20px;
    left: 20px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 159, 67, 0.14);
    box-shadow: 0 18px 34px rgba(33, 72, 66, 0.12);
    display: grid;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 1001;
}

.mobile-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 700;
    color: var(--c-dark-elegant);
    background: linear-gradient(180deg, #fff8f3 0%, #fffdfb 100%);
    border: 1px solid rgba(255, 159, 67, 0.08);
}

.mobile-nav-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 14px !important;
    background: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%) !important;
}

.mobile-nav-logo img {
    height: 30px;
    width: auto;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

body.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Fixed Bottom CTA */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 252, 247, 0.96);
    border-top: 1px solid var(--c-gray-light);
    z-index: 999;
    padding: 10px 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fixed-cta.visible {
    transform: translateY(0);
}

.fixed-cta-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.btn-fixed {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-white);
    text-align: center;
    line-height: 1.2;
}

.btn-fixed i {
    font-size: 1.2rem;
    margin-bottom: 0;
    margin-right: 0;
}

.btn-fixed-line {
    background-color: var(--c-line);
}

/* Typography */
.sec-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: var(--space-xl);
    color: var(--c-dark-elegant);
    text-align: center;
}

.section-lead {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #4f5f5b;
}

.income-lead {
    display: block;
}

.job-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.job-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff 0%, #fff2f7 100%);
    border: 1px solid rgba(255, 94, 126, 0.2);
    box-shadow: 0 8px 20px rgba(255, 94, 126, 0.1);
    color: #e84d78;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.2;
}

/* Highlight Bands */
.highlight-band,
.highlight-band-pink {
    background: linear-gradient(135deg, var(--c-dark-elegant) 0%, #2d6259 100%);
    color: var(--c-white);
    padding: 24px;
    border-radius: var(--radius-sm);
    /* Sharper, more corporate corners */
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.6;
    border-left: 4px solid var(--c-accent);
}

.highlight-band-pink {
    background: linear-gradient(135deg, #fff3ec 0%, #ffe7d6 100%);
    color: var(--c-dark-elegant);
}

/* First View (Hero) */
.hero {
    position: relative;
    padding-top: 100px;
    padding-bottom: 120px;
    background-color: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 560px;
    padding: 28px 24px;
}

/* Layout Utilities */
.flex-col {
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transform: translateY(-102%);
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        background-size 3s linear;
}

.hero-slide.is-visible {
    transform: translateY(0);
    background-size: 112%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(255, 245, 236, 0.12) 0%, rgba(255, 249, 243, 0.24) 54%, rgba(255, 251, 247, 0.42) 84%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(82, 199, 184, 0.02) 100%);
    z-index: 1;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: -12px;
    background: linear-gradient(90deg, rgba(255, 251, 247, 0.06) 0%, rgba(255, 251, 247, 0.01) 52%, rgba(255, 251, 247, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.badge {
    background: rgba(255, 138, 127, 0.6);
    color: #ffffff;
    padding: 6px 12px;
    border: 1px solid rgba(255, 138, 127, 0.78);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.fuki1,
.fuki2 {
    position: relative;
    max-width: calc(100% - 70px);
    padding: 14px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffd7e6 0%, #ffc7dc 100%);
    box-shadow: 0 10px 24px rgba(255, 111, 145, 0.14);
}

.fuki1::before,
.fuki2::before {
    content: '';
    position: absolute;
    top: 25px;
    left: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 12px solid #ffd1e2;
}

.fuki2 {
    padding: 16px 18px;
}

.speech-bubble-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.speech-bubble-center .fuki2 {
    max-width: 100%;
}

.speech-bubble-center .fuki1 {
    max-width: 100%;
}

.speech-bubble-center .fuki1::before,
.speech-bubble-center .fuki2::before {
    top: -12px;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 12px solid #ffd1e2;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #1a2a27;
    letter-spacing: -1px;
    text-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

.hero-title span {
    display: inline-block;
    padding: 0;
    margin-bottom: 0.18em;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    white-space: nowrap;
}

.hero-subtext {
    font-size: 1.05rem;
    color: rgba(24, 55, 50, 0.84);
    margin-bottom: 32px;
    font-weight: 600;
    line-height: 1.8;
    display: inline-block;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 252, 248, 0.4);
    box-shadow: 0 10px 24px rgba(33, 72, 66, 0.06);
}

.hero-cta {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    border: none;
}

.hero-cta-hint {
    font-size: 0.85rem;
    font-weight: 700;
    color: #315e57;
    margin-bottom: 16px;
    text-align: center;
    display: block;
    width: 100%;
}

/* Trouble Section */
.trouble {
    background:
        linear-gradient(180deg, #fff7ee 0%, #ffd8c8 100%);
}

.trouble::before,
.about-job::before,
.comparison::before,
.safe-consult::before,
.voices::before,
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
}

.trouble::before {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.62) 0, transparent 18%),
        radial-gradient(circle at 84% 18%, rgba(255, 111, 97, 0.12) 0, transparent 18%);
}

.trouble-card {
    background: linear-gradient(180deg, #ffffff 0%, #fff1f7 100%);
    border: 2px solid rgba(255, 111, 145, 0.42) !important;
    box-shadow: 0 16px 30px rgba(255, 111, 145, 0.16);
    padding: 18px 12px;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}



.trouble-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
}

.trouble-card i,
.trouble-card div {
    position: relative;
    z-index: 1;
}

.trouble-card i {
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.trouble-card .text-sm {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 900;
    color: #203632;
    letter-spacing: 0.01em;
}

.trouble-bottom-copy {
    font-size: 1.18rem;
    line-height: 1.85;
    font-weight: 900;
    color: #28443f;
}

/* About Job (Sec 6) & Lists */
.about-job {
    background:
        linear-gradient(180deg, #f0fffd 0%, #c8f3ea 100%);
}

.about-job::before {
    background:
        radial-gradient(circle at 14% 24%, rgba(82, 199, 184, 0.3) 0, transparent 20%),
        radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.62) 0, transparent 18%),
        radial-gradient(circle at 78% 78%, rgba(120, 229, 207, 0.18) 0, transparent 20%);
}

.manga-frame {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border: 1px solid rgba(82, 199, 184, 0.16);
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(49, 120, 110, 0.06);
}

.job-overview {
    display: grid;
    gap: 14px;
}

.job-overview-card,
.safe-point-card,
.cta-panel,
.consult-note,
.flow-note {
    position: relative;
    border: 1px solid rgba(255, 159, 67, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
    border-radius: 24px;
    overflow: hidden;
}

.job-overview-card {
    padding: 20px 18px;
    box-shadow: 0 12px 22px rgba(33, 72, 66, 0.06);
    transition: all 0.4s ease;
    border-top: 3px solid var(--c-accent-blue);
    cursor: default;
}


.job-overview-icon,
.safe-point-icon,
.consult-note-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.job-overview-icon {
    color: var(--c-dark-elegant);
    background: linear-gradient(135deg, rgba(82, 199, 184, 0.22) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.job-overview-card h3,
.safe-point-card h3,
.consult-note h3,
.cta-panel-title {
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 800;
    color: var(--c-dark-elegant);
    margin-bottom: 8px;
}

.job-overview-card p,
.safe-point-card p,
.consult-note p,
.cta-panel-text,
.flow-note p {
    color: #556562;
    line-height: 1.8;
    font-size: 0.94rem;
}

.income-example-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}
.income-examples {
    display: grid;
    grid-template-columns: 1fr;
}
.bg-pop-pink { background: var(--c-primary); }
.bg-accent-blue { background: var(--c-accent-blue); }
.bg-accent { background: var(--c-accent); }

/* Comparison (Sec 9) */
.comparison {
    background:
        linear-gradient(180deg, #fffdf1 0%, #ffeaa6 100%);
}

.comparison::before {
    background:
        radial-gradient(circle at 10% 22%, rgba(255, 205, 96, 0.18) 0, transparent 18%),
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.6) 0, transparent 18%);
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comp-item {
    background: linear-gradient(180deg, #fffef8 0%, #fff6d8 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 191, 83, 0.24);
    box-shadow: 0 14px 28px rgba(255, 191, 83, 0.12);
}

.comp-check {
    font-size: 1.5rem;
    margin-right: 16px;
    flex-shrink: 0;
}

.consult-note {
    margin-top: 24px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 12px 24px rgba(33, 72, 66, 0.06);
}

.consult-note-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    color: var(--c-primary);
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.16) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.safe-consult {
    background:
        linear-gradient(180deg, #fff5fb 0%, #ffd8f0 100%);
}

.safe-consult::before {
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 111, 97, 0.12) 0, transparent 18%),
        radial-gradient(circle at 90% 26%, rgba(255, 255, 255, 0.56) 0, transparent 18%);
}

.safe-points {
    display: grid;
    gap: 14px;
}

.safe-point-card {
    padding: 20px 18px;
    box-shadow: 0 12px 22px rgba(255, 111, 145, 0.07);
}

.safe-point-icon {
    color: var(--c-primary);
    background: linear-gradient(135deg, rgba(255, 111, 145, 0.18) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.voices {
    background:
        linear-gradient(180deg, #eefbff 0%, #d8f4ff 100%);
}

.voices::before {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.62) 0, transparent 18%),
        radial-gradient(circle at 85% 22%, rgba(82, 199, 184, 0.1) 0, transparent 16%);
}

.voices-grid {
    display: grid;
    gap: 22px;
}

.voices-intro,
.voices-grid {
    position: relative;
    z-index: 1;
}

.voice-card {
    position: relative;
    padding: 18px 16px 18px;
    border-radius: 26px;
    box-shadow: 0 12px 24px rgba(255, 111, 97, 0.08);
    overflow: hidden;
}

.voice-photo {
    position: relative;
    height: 176px;
    margin: -2px -2px 16px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe8de 0%, #fff9f3 55%, #ebfffb 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.voice-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    filter: saturate(1.02) contrast(1.01);
}

.voice-photo::before {
    content: none;
}

.voice-photo::after {
    content: none;
}

.voice-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.voice-name {
    font-size: 1.16rem;
    font-weight: 800;
    color: var(--c-dark-elegant);
    line-height: 1.2;
    margin-bottom: 4px;
}

.voice-meta {
    font-size: 0.88rem;
    color: #5f6a67;
    font-weight: 600;
}

.voice-icon {
    color: rgba(255, 111, 97, 0.66);
    font-size: 1.15rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 16px rgba(255, 111, 97, 0.08);
}

.voice-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.voice-badge {
    display: inline-block;
    padding: 7px 13px;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.16) 0%, rgba(255, 243, 236, 0.98) 100%);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-primary);
    border: 1px solid rgba(255, 111, 97, 0.18);
    box-shadow: 0 10px 18px rgba(255, 111, 97, 0.08);
}

.voice-badge-alt {
    background: linear-gradient(135deg, rgba(82, 199, 184, 0.14) 0%, rgba(240, 255, 252, 0.96) 100%);
    color: #2b6d64;
    border-color: rgba(82, 199, 184, 0.18);
}

.voice-text {
    font-size: 0.98rem;
    line-height: 1.95;
    color: var(--c-gray-dark);
    letter-spacing: 0.01em;
}

.voice-card,
.faq-item,
.card {
    border: 1px solid rgba(255, 159, 67, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
}

/* Flow (Sec 13) */
.flow {
    background:
        linear-gradient(180deg, #f2fbff 0%, #cdeeff 100%);
}

.flow-list {
    position: relative;
    padding-left: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.flow-list::before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 48px;
    width: 3px;
    background: linear-gradient(180deg, var(--c-accent-blue) 0%, rgba(82, 199, 184, 0) 100%);
    border-radius: 2px;
}

.flow-step {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(33, 72, 66, 0.05);
    border: 1px solid rgba(82, 199, 184, 0.15);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    z-index: 2;
}



.flow-step:last-child {
    margin-bottom: 0;
}

.flow-note {
    margin-top: 28px;
    padding: 18px;
    box-shadow: 0 16px 28px rgba(68, 133, 177, 0.1);
}

.flow-note-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--c-dark-elegant);
    background: rgba(82, 199, 184, 0.2);
    margin-bottom: 10px;
}

.step-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--c-accent-blue) 0%, #3db8a8 100%);
    color: #ffffff !important;
    border: 3px solid #ffffff;
    box-shadow: 0 6px 14px rgba(82, 199, 184, 0.25);
    padding: 0 14px;
    height: 38px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    z-index: 2;
    margin-right: 18px;
    flex-shrink: 0;
    margin-top: -2px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--c-black);
}

.faq-q {
    cursor: pointer;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 22px rgba(255, 111, 97, 0.08);
}

.faq-q {
    width: 100%;
    border: 0;
    background: linear-gradient(135deg, rgba(255, 143, 127, 0.18) 0%, rgba(255, 255, 255, 0.96) 58%, rgba(82, 199, 184, 0.16) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    color: var(--c-dark-elegant);
    font-size: 1rem;
    line-height: 1.6;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-q.active {
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.22) 0%, rgba(255, 243, 236, 0.98) 55%, rgba(82, 199, 184, 0.2) 100%);
}

.faq-q-text {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
}

.faq-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.faq-label-q {
    background: linear-gradient(135deg, var(--c-primary) 0%, #ff8f7f 100%);
    color: var(--c-white);
    box-shadow: 0 10px 18px rgba(255, 111, 97, 0.22);
}

.faq-label-a {
    background: linear-gradient(135deg, var(--c-accent-blue) 0%, #87ddd1 100%);
    color: var(--c-dark-elegant);
    box-shadow: 0 10px 18px rgba(82, 199, 184, 0.22);
}

.faq-toggle {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--c-primary);
    box-shadow: 0 8px 16px rgba(255, 159, 67, 0.16);
    flex-shrink: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 246, 0.96) 100%);
    transition: max-height 0.38s ease, opacity 0.28s ease;
    opacity: 0;
}

.faq-a-inner {
    padding-top: 8px;
    line-height: 1.9;
}

.faq-item.is-open .faq-a {
    opacity: 1;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.mr-2 {
    margin-right: 8px;
}

.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

.pb-4 {
    padding-bottom: 16px;
}

/* Footer */
.final-cta {
    background:
        linear-gradient(180deg, #fff1eb 0%, #ffb8a3 100%);
}

.final-cta::before {
    background:
        radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.68) 0, transparent 20%),
        radial-gradient(circle at 84% 20%, rgba(255, 111, 97, 0.14) 0, transparent 18%);
}

.soft-cta-panel {
    padding: 24px 18px;
    box-shadow: 0 12px 24px rgba(255, 111, 97, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 244, 239, 0.96) 100%);
}

.cta-panel-label,
.final-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    color: var(--c-dark-elegant);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 159, 67, 0.18);
}

.cta-panel-title {
    font-size: 1.25rem;
}

.cta-panel-text {
    margin-bottom: 18px;
}

.final-eyebrow {
    display: flex;
    width: fit-content;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.62);
    text-align: center;
    justify-content: center;
}

.final-cta .hero-cta {
    text-align: center;
}

.final-cta .btn-large {
    margin-left: auto;
    margin-right: auto;
}

.font-heading {
    font-family: var(--font-heading);
}

.tracking-wide {
    letter-spacing: 2px;
}

.inline-block {
    display: inline-block;
}

.mx-2 {
    margin-left: 8px;
    margin-right: 8px;
}

.mx-3 {
    margin-left: 12px;
    margin-right: 12px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.opacity-hover {
    transition: opacity 0.3s;
}

.opacity-hover:active {
    opacity: 0.7;
}

.opacity-50 {
    opacity: 0.5;
}

@media (max-width: 767.98px) {
    .hero-badges {
        gap: 6px;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .hero-badges .badge {
        padding: 8px 12px !important;
        font-size: 0.82rem !important;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .hero-title span {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .hero-subtext {
        background: rgba(255, 252, 248, 0.4) !important;
    }

    .hero-cta-hint {
        text-align: center !important;
        width: 100%;
    }
}

/* Media Queries */
@media (min-width: 768px) {
    .mobile-menu-toggle,
    .mobile-nav {
        display: none;
    }

    .pc-only {
        display: block;
    }

    .bottom-cta {
        display: none;
    }

    body {
        padding-bottom: 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .logo img {
        height: 40px;
    }

    .hero-subtext {
        font-size: 1.2rem;
    }

    .hero-copy {
        padding: 36px 38px;
    }

    .btn-large {
        max-width: 400px;
        display: inline-flex;
        margin: 0 10px 20px;
    }

    .hero-cta {
        background: transparent;
        box-shadow: none;
        padding: 0;
        text-align: left;
    }

    .final-cta .hero-cta {
        text-align: center;
    }

    .final-cta .btn-large {
        display: inline-flex;
        margin-left: auto;
        margin-right: auto;
    }

    .sec-title {
        font-size: 2rem;
    }

    .grid-cols-2 {
        grid-template-columns: repeat(4, 1fr);
    }

    .voice-photo {
        height: 182px;
    }

    .income-examples {
        grid-template-columns: repeat(3, 1fr);
    }

    .comp-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .comp-item {
        width: calc(50% - 8px);
    }

    .job-overview,
    .safe-points {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-panel {
        padding: 32px 28px;
    }
}

@media (min-width: 900px) {
    .voices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* --- Mobile Optimizations & Dynamic Animations --- */

@keyframes poyonPoyon {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.08, 0.92) translateY(2px); }
    30% { transform: scale(0.95, 1.08) translateY(-8px); }
    50% { transform: scale(1.03, 0.97) translateY(0); }
    65% { transform: scale(0.98, 1.02) translateY(-2px); }
    80% { transform: scale(1) translateY(0); }
}

.animate-poyon {
    animation: poyonPoyon 2.5s infinite;
    display: inline-block;
    transform-origin: bottom center;
}

/* Custom highly-numerical income blocks */
.reward-highlight {
    background: linear-gradient(135deg, #fff0f3 0%, #fff 100%);
    border: 3px solid var(--c-primary);
    border-radius: 20px;
    padding: 28px 24px 24px;
    position: relative;
    box-shadow: 0 16px 32px rgba(255, 111, 145, 0.2);
    max-width: 500px;
}
.reward-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-primary);
    color: #fff;
    font-weight: 900;
    padding: 6px 24px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(255, 111, 145, 0.4);
    white-space: nowrap;
    font-size: 1.1rem;
}
.reward-price {
    font-size: 2rem;
    font-weight: 900;
    color: #ff3b68;
    text-shadow: 0 2px 4px rgba(255, 59, 104, 0.2);
}

.reward-suffix {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--c-black);
}

.reward-note {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--c-black);
}

.reward-price-sm {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff3b68;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 111, 145, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 111, 145, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 111, 145, 0); }
}
.animate-pulse-glow {
    animation: pulseGlow 2s infinite;
}

.contact-shell {
    border: 1px solid rgba(255, 159, 67, 0.12);
    box-shadow: 0 16px 32px rgba(33, 72, 66, 0.08);
}

.contact-title {
    background: linear-gradient(135deg, #ff6f61 0%, #ff9f43 45%, #52c7b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    width: 100%;
}

.contact-bubble-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 800;
    color: var(--c-dark-elegant);
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-label {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--c-dark-elegant);
}

.contact-required {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 111, 97, 0.12);
    color: var(--c-primary);
    font-size: 0.74rem;
    font-weight: 800;
}

.contact-input,
.contact-textarea {
    width: 100%;
    border: 1px solid rgba(33, 72, 66, 0.16);
    border-radius: 16px;
    background: #fffdfb;
    color: var(--c-gray-dark);
    font: inherit;
    padding: 14px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-input {
    min-height: 52px;
}

.contact-textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: rgba(255, 111, 97, 0.58);
    box-shadow: 0 0 0 4px rgba(255, 111, 97, 0.12);
    background: #ffffff;
}

.contact-input.is-error,
.contact-textarea.is-error {
    border-color: #ea4f67;
    box-shadow: 0 0 0 4px rgba(234, 79, 103, 0.1);
}

.contact-hint {
    font-size: 0.82rem;
    color: #74817e;
    line-height: 1.6;
}

.contact-error {
    min-height: 1.2em;
    font-size: 0.84rem;
    line-height: 1.5;
    color: #d43853;
    font-weight: 700;
}

.contact-alert {
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 700;
    line-height: 1.7;
}

.contact-alert-success {
    background: linear-gradient(180deg, #effff5 0%, #e0f8ea 100%);
    border: 1px solid rgba(6, 199, 85, 0.2);
    color: #137145;
}

.contact-subnote {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px dashed rgba(33, 72, 66, 0.14);
}

.policy-body {
    color: #586663;
    line-height: 1.95;
    font-size: 0.95rem;
}

.policy-body p {
    margin-bottom: 14px;
}

.policy-section {
    margin-top: 24px;
}

.policy-section h3 {
    margin-bottom: 12px;
    font-size: 1.02rem;
    line-height: 1.6;
    font-weight: 800;
    color: var(--c-dark-elegant);
}

.policy-list {
    margin: 10px 0 0 0;
    padding-left: 1.2em;
    list-style: disc;
}

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

.policy-list-numbered {
    list-style: decimal;
}

/* Infinite soft float for cards (makes them look interactive without hover on mobile) */
@keyframes floatSoft {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

/* Apply soft float globally as requested for continuous display animations instead of hovers */
.trouble-card, .job-overview-card, .income-example-card, .flow-step, .safe-point-card {
    animation: floatSoft 4s ease-in-out infinite;
}
.trouble-card:nth-child(even), .job-overview-card:nth-child(even), .income-example-card:nth-child(even), .flow-step:nth-child(even), .safe-point-card:nth-child(even) {
    animation-delay: 1.5s;
}

/* Bouncing reveal effect for safe point cards */
@keyframes springBounce {
    0% { transform: scale(0.85) translateY(20px); opacity: 0; }
    50% { transform: scale(1.03) translateY(-5px); opacity: 1; }
    75% { transform: scale(0.98) translateY(2px); opacity: 1; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes megaPoyon {
    0% { transform: scale(0) translateY(120px) rotate(-5deg); opacity: 0; }
    60% { transform: scale(1.4) translateY(-40px) rotate(5deg); opacity: 1; }
    80% { transform: scale(0.85) translateY(20px) rotate(-2deg); opacity: 1; }
    100% { transform: scale(1) translateY(0) rotate(0); opacity: 1; }
}

.reveal-mega-poyon {
    opacity: 0;
}

.reveal-mega-poyon.active {
    animation: megaPoyon 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.reveal-bounce {
    opacity: 0;
}
.reveal-up.active .reveal-bounce, .reveal-bounce.active {
    animation: springBounce 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.27) forwards;
}

.safe-point-card.reveal-bounce:nth-child(1) { animation-delay: 0.1s; }
.safe-point-card.reveal-bounce:nth-child(2) { animation-delay: 0.25s; }
.safe-point-card.reveal-bounce:nth-child(3) { animation-delay: 0.4s; }

.safe-point-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
