/* ========================================
   Reset & Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-navy: #0a2540;
    --secondary-navy: #1a365d;
    --accent-gold: #d4af37;
    --light-gold: #f4e4bc;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --success-green: #28a745;
    --danger-red: #dc3545;
    --text-dark: #212529;
    --text-light: #6c757d;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Typography */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ========================================
   Container & Layout
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

section {
    padding: var(--section-padding);
}

/* ========================================
   Typography
======================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-navy);
    font-family: var(--font-serif);
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-outline:hover {
    background: var(--primary-navy);
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ========================================
   Header & Navigation
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 70px;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    font-family: var(--font-serif);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    transition: var(--transition-smooth);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding-top: 100px;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin: 0 0 1.5rem 0;
    padding: 0;
    font-family: var(--font-serif);
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-feature-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
}

.hero-feature-label {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.hero-feature-divider {
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-note {
    font-size: 0.9rem;
    margin-top: 2rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ========================================
   Stats Section
======================================== */
.stats {
    background: var(--white);
    padding: 60px 0;
    box-shadow: var(--shadow-sm);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    font-family: var(--font-serif);
}

.stat-number span {
    font-size: 1.5rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ========================================
   Target Section
======================================== */
.target-section {
    background: var(--light-gray);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.target-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.target-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.target-box.recommended {
    border: 3px solid var(--success-green);
}

.target-box.not-recommended {
    border: 3px solid var(--danger-red);
}

.target-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--medium-gray);
}

.target-header i {
    font-size: 2rem;
}

.recommended .target-header i {
    color: var(--success-green);
}

.not-recommended .target-header i {
    color: var(--danger-red);
}

.target-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.target-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.target-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.target-list i {
    font-size: 1.2rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.recommended .target-list i {
    color: var(--success-green);
}

.not-recommended .target-list i {
    color: var(--danger-red);
}

/* ========================================
   Features Section
======================================== */
.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    position: relative;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 2px solid var(--medium-gray);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.feature-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--accent-gold);
}

.feature-card.featured .feature-title,
.feature-card.featured .feature-description {
    color: var(--white);
}

.feature-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: var(--medium-gray);
    opacity: 0.3;
    font-family: var(--font-serif);
}

.feature-card.featured .feature-number {
    color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-navy);
}

.feature-card.featured .feature-icon i {
    color: var(--white);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-card.featured .feature-description {
    opacity: 0.95;
}

.feature-highlight {
    background: var(--light-gold);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-navy);
}

.feature-card.featured .feature-highlight {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.highlight-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin: 0 5px;
}

.feature-note {
    font-size: 0.85rem;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

.tax-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tax-example {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
}

.tax-example strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.tax-example p {
    font-size: 0.95rem;
    margin: 0;
}

.crisis-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.crisis-proof span {
    background: var(--light-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crisis-proof i {
    color: var(--success-green);
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.feature-benefits i {
    color: var(--success-green);
}

/* ========================================
   Plans Section
======================================== */
.plans-section {
    background: var(--light-gray);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.plan-card {
    position: relative;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    border: 2px solid var(--medium-gray);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.plan-card.plan-recommended {
    border: 3px solid var(--accent-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.plan-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--medium-gray);
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.plan-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-gold);
    font-family: var(--font-serif);
}

.price-unit {
    font-size: 1.5rem;
    color: var(--text-light);
}

.plan-description {
    color: var(--text-light);
    line-height: 1.6;
}

.plan-breakdown {
    margin-bottom: 2rem;
}

.plan-breakdown h4 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.breakdown-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.breakdown-label {
    color: var(--text-dark);
    font-weight: 500;
}

.breakdown-value {
    color: var(--accent-gold);
    font-weight: 700;
}

.plan-benefits {
    margin-bottom: 2rem;
}

.plan-benefits h4 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.plan-benefits ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.plan-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
}

.plan-benefits i {
    color: var(--success-green);
    font-size: 1.2rem;
}

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

/* ========================================
   Comparison Section
======================================== */
.comparison-section {
    background: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 700px;
}

.comparison-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table .highlight-column {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.table-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.table-header-content i {
    font-size: 1.3rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--medium-gray);
    transition: var(--transition-smooth);
}

.comparison-table tbody tr:hover {
    background: var(--light-gray);
}

.comparison-table td {
    padding: 1.2rem 1rem;
    text-align: center;
}

.row-label {
    font-weight: 600;
    color: var(--primary-navy);
    text-align: left;
}

.comparison-table .highlight-column {
    background: rgba(212, 175, 55, 0.1);
    font-weight: 700;
}

.text-success {
    color: var(--success-green);
}

/* ========================================
   Results Section
======================================== */
.results-section {
    background: var(--light-gray);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.result-card {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 2px solid var(--medium-gray);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.result-card.highlighted {
    border: 3px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.result-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.result-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.result-location i {
    color: var(--accent-gold);
}

.result-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.result-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bar-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.bar-container {
    position: relative;
    background: var(--medium-gray);
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    position: relative;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    transition: width 1s ease;
}

.chart-bar.success .bar-fill {
    background: linear-gradient(135deg, var(--success-green) 0%, #20c997 100%);
}

.bar-value {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.chart-arrow {
    text-align: center;
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.result-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.results-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ========================================
   Risk Section
======================================== */
.risk-section {
    background: var(--white);
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.risk-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--medium-gray);
    transition: var(--transition-smooth);
}

.risk-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.risk-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--medium-gray);
}

.risk-header i {
    font-size: 2rem;
    color: var(--danger-red);
}

.risk-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.risk-description {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.risk-solution {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--success-green);
}

.risk-solution h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--success-green);
    margin-bottom: 0.8rem;
}

.risk-solution p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* ========================================
   Company Section
======================================== */
.company-section {
    background: var(--light-gray);
}

.company-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.company-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.company-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    font-family: var(--font-serif);
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.company-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.detail-value {
    font-size: 1.1rem;
    color: var(--primary-navy);
    font-weight: 600;
}

.company-achievements {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.company-achievements h4 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.achievement-list i {
    color: var(--success-green);
    font-size: 1.2rem;
}

.company-advisor {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.advisor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.advisor-badge i {
    font-size: 1.2rem;
}

.company-advisor h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.advisor-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.advisor-credential {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.advisor-description {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.7;
}

/* ========================================
   FAQ Section
======================================== */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-item.active {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question i:first-child {
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem 4.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ========================================
   Process Section
======================================== */
.process-section {
    background: var(--light-gray);
}

.process-timeline {
    max-width: 700px;
    margin: 3rem auto 0;
}

.process-step {
    position: relative;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--medium-gray);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.process-step.highlighted {
    border: 3px solid var(--accent-gold);
    background: var(--gradient-primary);
    color: var(--white);
}

.process-step.highlighted .step-title,
.process-step.highlighted .step-description {
    color: var(--white);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.process-step.highlighted .step-icon {
    background: rgba(255, 255, 255, 0.2);
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-navy);
}

.process-step.highlighted .step-icon i {
    color: var(--white);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-dark);
    line-height: 1.7;
}

.process-step.highlighted .step-description {
    opacity: 0.95;
}

.process-arrow {
    text-align: center;
    color: var(--accent-gold);
    font-size: 2rem;
    margin: -1rem 0;
}

/* ========================================
   SEO Content Section
======================================== */
.seo-content-section {
    background: var(--light-gray);
    padding: 60px 0;
}

.seo-article {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.seo-article h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.seo-article h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-gold);
    padding-left: 1rem;
}

.seo-article p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-btn {
    min-width: 280px;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 500;
}

.cta-feature i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

/* ========================================
   Contact Form Section
======================================== */
.contact-form-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 3rem auto 0;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--medium-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: var(--danger-red);
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 0.3rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
    background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--dark-gray);
    opacity: 0.6;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230a2540' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

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

.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-gold);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 2px;
    accent-color: var(--accent-gold);
    flex-shrink: 0;
}

.privacy-link {
    color: var(--accent-gold);
    text-decoration: underline;
    font-weight: 600;
}

.privacy-link:hover {
    color: var(--primary-navy);
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit {
    min-width: 300px;
}

/* Form Validation Styles */
.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: var(--danger-red);
}

.field-error {
    color: var(--danger-red);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.field-error i {
    font-size: 0.9rem;
}

/* Success Message */
.form-success-message {
    background: linear-gradient(135deg, var(--success-green) 0%, #20c997 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
    animation: slideInDown 0.5s ease;
    transition: opacity 0.3s ease;
}

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

.success-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.success-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.8;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-submit {
        min-width: 100%;
    }
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-company h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.company-name-footer {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 1rem 0 1.5rem 0;
    font-family: var(--font-serif);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--accent-gold);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

.footer-links h4,
.footer-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-links ul,
.footer-info ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-info li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.footer-disclaimer h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Back to Top Button
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-feature-divider {
        transform: rotate(90deg);
    }
    
    .features-grid,
    .plans-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-wrapper {
        overflow-x: scroll;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .main-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        padding: 0.8rem 0;
        min-height: 60px;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-sub {
        font-size: 0.7rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero-feature-number {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card,
    .feature-card,
    .result-card {
        padding: 1.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}