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

:root {
    /* Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-bg: #0f172a;
    --dark-bg-secondary: #1e293b;
    --light-bg: #f8fafc;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --text-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;

    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans JP', sans-serif;
    --font-heading: 'Segoe UI', 'Noto Sans JP', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-accent {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.cta-button {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white) !important;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-additional-cta {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.cta-light {
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: center;
}

.link-subsidy {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-subsidy:hover {
    color: var(--secondary-color);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Trust Section */
.trust {
    padding: 3rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid var(--border-color);
}

.trust-label {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Subsidy Section */
.subsidy {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    position: relative;
    overflow: hidden;
}

.subsidy::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2), transparent);
    border-radius: 50%;
}

.subsidy-banner {
    position: relative;
    z-index: 1;
}

.subsidy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.subsidy-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.subsidy-highlight {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
}

.subsidy-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 500;
}

.subsidy-calculation {
    max-width: 900px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.calculation-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.calculation-header {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.calculation-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.calculation-course {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.calculation-body {
    padding: 2rem;
}

.calculation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.calc-label {
    font-size: 1.125rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subsidy-icon {
    font-size: 1.25rem;
}

.calc-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.calc-value.original {
    color: var(--text-light);
    text-decoration: line-through;
}

.subsidy-row {
    background: #fef3c7;
    margin: 0 -2rem;
    padding: 1rem 2rem;
}

.calc-value.subsidy {
    color: #d97706;
}

.calculation-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 1rem 0;
}

.total-row {
    padding: 1.5rem 0;
}

.calc-label-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.calc-value-large {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calculation-bonus {
    background: #f0fdf4;
    border-left: 4px solid var(--success-color);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.bonus-icon {
    font-size: 2rem;
    color: var(--success-color);
    font-weight: 700;
}

.bonus-content {
}

.bonus-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.bonus-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.subsidy-benefits {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.subsidy-benefits h4 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.benefit-list {
    display: grid;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-content h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-content p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.subsidy-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.subsidy-note {
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.8;
}

.subsidy-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #d97706;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.subsidy-link:hover {
    color: #b45309;
    gap: 0.75rem;
}

.external-icon {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.subsidy-link:hover .external-icon {
    transform: translate(2px, -2px);
}

/* Problem Section */
.problem {
    padding: var(--section-padding);
    background: var(--light-bg);
}

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

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

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

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.problem-cost {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.problem-summary {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.problem-summary h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.problem-summary .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-summary p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Demo Section */
.demo {
    padding: var(--section-padding);
    background: white;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.demo-video {
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

.demo-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.demo-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.demo-placeholder p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.demo-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.demo-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.demo-benefit-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.demo-check {
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.demo-benefit-text {
    flex: 1;
    min-width: 0;
}

.demo-benefit-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

.demo-benefit-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.demo-cta {
    text-align: center;
    margin-top: 3rem;
}

.demo-cta .btn {
    margin-bottom: 1rem;
}

.demo-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ROI Section */
.roi {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.roi-calculation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.roi-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.roi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.roi-investment {
    border-color: #e3f2fd;
    background: linear-gradient(to bottom, #ffffff, #f8fbff);
}

.roi-investment h3 {
    color: var(--primary-color);
    background: linear-gradient(135deg, #2196F3, #1976D2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roi-return {
    border-color: #e8f5e9;
    background: linear-gradient(to bottom, #ffffff, #f9fdf9);
}

.roi-return h3 {
    color: var(--success-color);
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roi-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
    font-weight: 700;
}

.roi-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.roi-item.subsidy {
    color: var(--success-color);
}

.roi-item.total {
    font-weight: 700;
    font-size: 1.1rem;
}

.roi-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.roi-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.roi-item.subsidy .roi-value {
    color: var(--success-color);
}

.roi-value-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.roi-return .roi-value-large {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roi-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

.roi-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.roi-result {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.roi-metric {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.roi-metric-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.roi-metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roi-note {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.roi-note p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.roi-cta {
    text-align: center;
    margin-top: 3rem;
}

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

.roi-cta .btn {
    margin-bottom: 0;
}

.roi-cta-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ROI Simple Comparison (Offshore page) */
.roi-simple-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.roi-simple-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 250px;
}

.roi-simple-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.roi-simple-value {
    font-size: 2rem;
    font-weight: 700;
}

.roi-simple-value.bad {
    color: #94a3b8;
}

.roi-simple-value.good {
    color: #dc2626;
}

.roi-simple-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Comparison Table (Offshore page) */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

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

.comparison-table th:first-child {
    width: 20%;
    min-width: 150px;
}

.comparison-table th.comparison-old {
    background: rgba(255, 255, 255, 0.15);
}

.comparison-table th.comparison-new {
    background: rgba(255, 255, 255, 0.25);
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s;
}

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

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1.5rem 1rem;
    vertical-align: top;
}

.comparison-category {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.comparison-old {
    background: rgba(248, 250, 252, 1);
}

.comparison-new {
    background: rgba(99, 102, 241, 0.08);
}

.comparison-value {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.comparison-value.bad {
    color: #94a3b8;
}

.comparison-value.good {
    color: #dc2626;
    font-size: 1.1rem;
}

.comparison-note {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Solution Flow (Offshore page) */
.solution-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.solution-step {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.solution-step-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.solution-step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.solution-step-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.solution-step-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.solution-step-content li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.solution-step-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Solution Benefits (Offshore page) */
.solution-benefits {
    margin: 4rem 0;
}

.solution-benefits h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Case Study (Offshore page) */
.case-study {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.case-study-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.case-study-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.case-study-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.case-study-industry {
    color: var(--text-light);
    font-size: 0.95rem;
}

.case-study-before,
.case-study-after {
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.case-study-before {
    background: rgba(248, 250, 252, 1);
}

.case-study-after {
    background: rgba(99, 102, 241, 0.05);
    border: 2px solid var(--primary-color);
}

.case-study-before h4,
.case-study-after h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.case-study-before ul,
.case-study-after ul {
    list-style: none;
}

.case-study-before li,
.case-study-after li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.case-study-before li:before {
    content: "•";
    color: var(--text-light);
    font-weight: 700;
}

.case-study-after li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: 700;
}

.case-study-comment {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
}

.case-study-comment blockquote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.case-study-comment cite {
    display: block;
    text-align: right;
    color: var(--text-light);
    font-style: normal;
    font-size: 0.9rem;
}

.case-study-roi {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.case-study-metric {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    color: white;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

/* FAQ Section (Offshore page) */
.faq {
    padding: var(--section-padding);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    transition: box-shadow 0.3s, transform 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.6;
}

.faq-item h3::before {
    content: "Q";
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 1rem;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
    padding-left: 3rem;
}

.faq-item p::before {
    content: "A";
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 1rem;
    font-weight: 700;
    margin-right: 1rem;
    margin-left: -3rem;
    flex-shrink: 0;
}

/* Solution Section */
.solution {
    padding: var(--section-padding);
}

.solution-overview {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.solution-concept {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.solution-concept h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.solution-concept p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.method-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.method-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.method-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.method-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.method-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.method-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.method-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
}

.method-features li {
    background: var(--light-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Results Section */
.results {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg-secondary));
    color: var(--text-white);
}

.results .section-title,
.results .section-subtitle {
    color: var(--text-white);
}

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

.kpi-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.kpi-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.kpi-label {
    font-size: 0.875rem;
    color: var(--text-white);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.kpi-comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.kpi-before {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    opacity: 0.6;
    text-decoration: line-through;
}

.kpi-arrow {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.kpi-after {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kpi-improvement {
    font-size: 0.875rem;
    color: var(--success-color);
    font-weight: 600;
}

/* Curriculum Section */
.curriculum {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    padding-left: 140px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Deliverables Section */
.deliverables {
    padding: var(--section-padding);
}

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

.deliverable-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.deliverable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

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

.deliverable-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.deliverable-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

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

.price {
    margin: 1rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-tax {
    font-size: 1rem;
    opacity: 0.9;
}

.price-desc {
    opacity: 0.9;
}

.pricing-includes,
.pricing-options {
    padding: 2rem;
}

.pricing-includes h4,
.pricing-options h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-includes ul,
.pricing-options ul {
    list-style: none;
}

.pricing-includes li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-includes li:last-child {
    border-bottom: none;
}

.check {
    color: var(--success-color);
    font-weight: 700;
}

.pricing-options li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.pricing-card > .btn {
    display: block;
    margin: 2rem auto;
    width: fit-content;
}

.pricing-roi {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    margin: 0 2rem 2rem;
    border: 2px solid #dee2e6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-roi h4 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
}

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

.roi-summary-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: var(--border-radius);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    min-width: 0;
    overflow: hidden;
}

.roi-summary-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.roi-summary-item.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.roi-summary-item.highlight:hover {
    box-shadow: 0 10px 35px rgba(33, 150, 243, 0.4);
}

.roi-summary-label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.roi-summary-item.highlight .roi-summary-label {
    color: white;
    opacity: 0.9;
}

.roi-summary-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    margin-top: 0.5rem;
    word-break: break-all;
    overflow-wrap: break-word;
}

.roi-summary-item.highlight .roi-summary-value {
    color: white;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
}

.btn-submit {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
}

.flow {
    margin-top: 4rem;
}

.flow h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.flow-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.flow-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.flow-step h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.flow-step p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.flow-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

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

.footer-company {
    margin-top: 0.5rem;
    font-size: 0.9375rem;
}

.footer-company a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-company a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .method-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 80px;
    }

    .timeline-marker {
        width: 80px;
        height: 40px;
        font-size: 0.875rem;
    }

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

    .flow-arrow {
        transform: rotate(90deg);
    }

    .kpi-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid,
    .deliverables-grid {
        grid-template-columns: 1fr;
    }

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

    .subsidy-highlight {
        font-size: 2.5rem;
    }

    .calculation-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .subsidy-row {
        margin: 1rem -1rem;
        padding: 1rem;
    }

    .calc-label-large,
    .calc-value-large {
        font-size: 1.5rem;
    }

    .roi-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .roi-summary-value {
        font-size: 1.5rem;
    }

    .demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demo-placeholder {
        min-height: 300px;
    }

    .roi-cta-buttons {
        flex-direction: column;
    }

    .roi-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .subsidy-title {
        font-size: 1.75rem;
    }

    .subsidy-highlight {
        font-size: 2rem;
    }

    .subsidy-subtitle {
        font-size: 1rem;
    }

    .calculation-body {
        padding: 1rem;
    }

    .calc-label,
    .calc-value {
        font-size: 1rem;
    }

    .roi-summary-value {
        font-size: 1.3rem;
    }

    .roi-summary-label {
        font-size: 0.85rem;
    }
}
