:root {
    /* Colors - V2 Dark Navy Theme (Blueprint) */
    --color-bg-main: #f7fafc;
    /* Off-white for light sections */
    --color-bg-light: #FFFFFF;
    /* White for cards in light sections */
    --color-bg-alt: #EDF2F7;
    /* Alt gray for section variation */
    --color-bg-dark: #0f1c2e;
    /* Darker Navy (matched to image) */
    --color-bg-darker: #0d2137;
    /* Deeper navy */

    --color-primary: #1a365d;
    /* Dark Navy */
    --color-accent: #ed8936;
    /* Orange - Action/Energy */
    --color-accent-light: #F6AD55;
    /* Lighter orange */
    --color-accent-dark: #C05621;
    --color-accent-glow: rgba(237, 137, 54, 0.4);

    --color-tech-blue: #63B3ED;
    /* Electric Blue for tech accents */

    --color-success: #48BB78;
    /* Green for checkmarks */
    --color-danger: #FC8181;
    /* Softer red for dark theme */

    --color-text-main: #2d3748;
    /* Dark gray for light backgrounds */
    --color-text-muted: #A0AEC0;
    /* Muted gray */
    --color-text-light: #EDF2F7;
    /* Off-white for dark backgrounds */

    /* Typography */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-en: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Shadows for light sections */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.8;
    font-feature-settings: "palt";
}

/* Utilities */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

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

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

.bg-dark {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
    color: var(--color-text-light);
}

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

.text-white-50 {
    color: rgba(247, 250, 252, 0.7);
}

.text-danger {
    color: var(--color-danger);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.sub-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0.5rem;
    color: var(--color-text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #975A16 100%);
    color: #fff;
    box-shadow: 0 4px 15px var(--color-accent-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-accent-glow);
    filter: brightness(1.1);
}

.btn-lg {
    font-size: 1.25rem;
    padding: 1.2rem 3.5rem;
}

.btn-xl {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    width: 100%;
    max-width: 600px;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #F6F8F9;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 48px;
    width: auto;
    border-radius: 4px;
}

.logo-text {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-primary);
    letter-spacing: 0.05em;
}

/* Hero */
.hero {
    padding-top: 120px;
    padding-bottom: var(--spacing-lg);
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Hero background image */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero_visual_v2.png');
    background-size: 55%;
    background-repeat: no-repeat;
    background-position: 80% center;
    z-index: 1;
    opacity: 1;
}

/* Gradient Overlay - softer to show the image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to right,
            var(--color-bg-dark) 20%,
            rgba(15, 28, 46, 0.7) 50%,
            rgba(15, 28, 46, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 3;
    /* Content sits on top of everything */
    gap: 2rem;
    min-height: calc(100vh - 120px);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    position: relative;
    color: #FFFFFF;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #FFFFFF;
    /* High contrast */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    /* Strong shadow */
}

/* Consolidated Hero Text Styles - Removed Duplicates */
.hero-content {
    flex: 0 0 55%;
    max-width: 55%;
    position: relative;
    z-index: 4;
}

.text-gradient {
    /* Keep gradient only for "Pro's Eye" part if desired, or make it white for max readability */
    background: linear-gradient(135deg, #fff 30%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    /* Gradient text handles itself, or add partial shadow if supported */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    /* Filter shadow works on gradient text */
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 2rem;
    display: inline-block;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}



.cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.8rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-visual {
    display: none;
    /* Hide the separate visual div, using ::after pseudo-element instead */
}

/* Problem Section - Light background after Hero */
.problem {
    background: var(--color-bg-main);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Cards in dark sections */
.bg-dark .card,
.bg-gradient .card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    color: var(--color-text-light);
}

.problem-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.problem-card::before {
    content: '•';
    color: var(--color-accent);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
    flex-shrink: 0;
}

.problem-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-main);
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.problem-highlight {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 2rem 3rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Target Section - Dark Theme Integration */
.target {
    background: var(--color-bg-dark);
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.target-col {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.target-col.good {
    border-top: 3px solid #48BB78;
}

.target-col.bad {
    border-top: 3px solid rgba(160, 174, 192, 0.5);
}

.target-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.target-title.ok {
    color: #68D391;
}

.target-title.ng {
    color: #A0AEC0;
}

.check-list,
.cross-list {
    list-style: none;
}

.check-list li,
.cross-list li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: #68D391;
    border-radius: 50%;
}

.cross-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: #718096;
    border-radius: 50%;
}

.check-list li strong,
.cross-list li strong {
    color: #FFFFFF;
    font-weight: 600;
}

.note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 0.3rem;
}

/* Achievements Section - Light Background */
.achievements {
    background: var(--color-bg-main);
}

.achievement-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.achievement-item {
    flex: 1;
    background: var(--color-bg-light);
    padding: 2rem 1rem;
    border-radius: 12px;
    border: 2px solid var(--color-accent);
    box-shadow: var(--shadow-md);
}

/* Achievements in dark sections */
.bg-dark .achievement-item,
.bg-gradient .achievement-item {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.achievement-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-en);
}

.achievement-value .unit {
    font-size: 1.2rem;
    color: var(--color-text-main);
    margin-left: 0.3rem;
}

.bg-dark .achievement-value .unit,
.bg-gradient .achievement-value .unit {
    color: var(--color-text-light);
}

.achievement-label {
    font-weight: 700;
}

/* Comparison CSS */
.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Comparison table in dark sections */
.bg-dark .comparison-table,
.bg-gradient .comparison-table {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.bg-dark .comparison-table th,
.bg-dark .comparison-table td,
.bg-gradient .comparison-table th,
.bg-gradient .comparison-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: var(--color-primary);
    color: var(--color-text-light);
    font-weight: 700;
}

.bg-dark .comparison-table th,
.bg-gradient .comparison-table th {
    background: rgba(0, 0, 0, 0.3);
}

.highlight-row {
    background: rgba(237, 137, 54, 0.1);
}

.th-highlight {
    color: var(--color-accent);
    font-weight: 900;
    font-size: 1.2rem;
}

.highlight-good {
    color: var(--color-accent);
    font-weight: 700;
}

/* Agitation Section - Light Background */
.agitation {
    background: var(--color-bg-main);
}

.agitation .section-title {
    color: var(--color-text-main);
}

.agitation .text-danger {
    color: #E53E3E;
}

.section-text {
    font-size: 1.2rem;
    color: var(--color-text-main);
}

.spacer {
    height: 4rem;
}

.agitation-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.agitation-card {
    background: var(--color-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-main);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}

.agitation-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}


.highlight-box.dark {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Solution Process - with subtle background */
.solution {
    background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-bg-alt) 100%);
}

.solution-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 2rem auto 0;
}

.step-item {
    text-align: center;
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-sm);
}

.step-item.highlight {
    border-color: var(--color-accent);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

/* USP Section - Accent styling */
.usp {
    background: var(--color-bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-grid.col-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.usp-card {
    text-align: left;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
    border: none;
    box-shadow: none;
    transition: transform 0.2s ease;
}

.usp-card:hover {
    transform: translateX(5px);
}

.usp-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
    font-weight: 700;
}

.usp-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Offer Features */
.offer-features {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    flex: 1;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-icon-img {
    margin-bottom: 1rem;
}

.feature-icon-img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Social Proof */
.proof-card {
    background: var(--color-bg-light);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.proof-header {
    margin-bottom: 2rem;
    text-align: center;
}

.proof-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.proof-result {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.proof-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.proof-step {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 8px;
}

.proof-step h4 {
    color: var(--color-accent-dark);
    margin-bottom: 0.5rem;
}

.proof-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

.self-proof {
    margin-top: 3rem;
    text-align: center;
}

.self-proof-intro {
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.self-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.self-proof-item {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.self-proof-img {
    margin-bottom: 1rem;
}

.self-proof-img img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.self-proof-label {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.self-proof-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.self-proof-url {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

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

.text-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid var(--color-accent);
    transition: all 0.3s;
}

.text-link:hover {
    color: var(--color-accent-light);
    border-bottom-color: var(--color-accent-light);
}

/* Profile - Rich Design */
.profile {
    background: var(--color-bg-main);
}

.profile-main {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background: var(--color-bg-light);
    padding: 3rem;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.profile-photo {
    flex: 0 0 180px;
}

.profile-photo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.profile-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-bg-alt), var(--color-accent-light));
    border: 4px solid var(--color-accent);
}

.profile-content {
    flex: 1;
}

.profile-role {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.profile-highlight {
    display: inline-block;
    background: var(--color-bg-alt);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.profile-bio {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-text-main);
}

/* Book Section */
.profile-book {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.book-cover {
    flex: 0 0 140px;
}

.book-cover img {
    width: 140px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.book-info {
    flex: 1;
}

.book-label {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.book-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.book-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-main);
}

/* Story */
.story-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-alt);
    padding: 3rem;
    border-radius: 12px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.9;
}

/* Timeline (Process) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 2rem);
    background: rgba(0, 0, 0, 0.1);
}

.timeline-num {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    z-index: 1;
}

.timeline-item.highlight .timeline-num {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.timeline-content {
    flex: 1;
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent-dark);
}

/* Final Message */
.final-message {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(30, 58, 95, 0.5);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group .required {
    color: var(--color-accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(30, 58, 95, 0.8);
    border: 1px solid rgba(100, 130, 160, 0.4);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(160, 180, 200, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

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

.btn-full {
    width: 100%;
}

.form-note {
    text-align: center;
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 500;
}

.btn-block {
    display: block;
    width: 100%;
}

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

.pricing-footer .note {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Pricing */
.pricing-card {
    background: var(--color-bg-light);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-accent);
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    border-bottom-left-radius: 12px;
}

.pricing-limit {
    display: inline-block;
    background: var(--color-bg-alt);
    color: var(--color-text-main);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-urgency {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid rgba(229, 62, 62, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.pricing-urgency p {
    color: #C53030;
    font-weight: 600;
    margin: 0;
}

.pricing-urgency .urgency-sub {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: var(--color-text-main);
    font-weight: 500;
}

.initial-cost {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

.monthly-cost {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-text-main);
    font-family: var(--font-en);
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

.period {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-left: 1rem;
}

.total-cost {
    text-align: center;
    background: var(--color-bg-alt);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 700;
}

.total-cost .price {
    font-size: 1.8rem;
}

/* FAQ Accordion */
.accordion-item {
    background: var(--color-bg-light);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    padding-right: 3rem;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-accent);
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-main);
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1rem;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active .accordion-header::after {
    content: '-';
}

/* Final CTA */
.final-cta {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

.steps-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.step {
    text-align: center;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 0.5rem;
}

.step-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: -1.5rem;
    /* align with numbers */
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #000;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    /* Hide visual on mobile if needed or adjust */
    .target-grid {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .solution-steps {
        flex-direction: column;
    }

    .achievement-grid {
        flex-direction: column;
    }

    .steps-row {
        flex-direction: column;
        gap: 2rem;
    }

    .step-line {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .card-grid.col-2 {
        grid-template-columns: 1fr;
    }

    .offer-features {
        flex-direction: column;
    }

    .profile-card {
        flex-direction: column;
        text-align: center;
    }

    .profile-img {
        flex: 0 0 auto;
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-num {
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .timeline-item:not(:last-child)::after {
        left: 25px;
    }

    .hero::after {
        background-size: 80%;
        right: 50px;
    }
}