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

body {
    font-family: 'Hiragino Sans', 'Yu Gothic UI', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 0.75rem 0;
    margin-top: 80px;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin: 0 0.5rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: #6b7280;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #2563eb;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

.stat-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-visual {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

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

/* Section */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Message Section */
.message {
    background: #f8fafc;
}

.message-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.ceo-image {
    text-align: center;
    position: sticky;
    top: 120px;
}

.ceo-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ceo-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.ceo-info p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.message-text h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
    border-left: 4px solid #667eea;
    padding-left: 1rem;
}

.message-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.message-text .highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.2em 0.5em;
    border-radius: 4px;
    font-weight: bold;
}

/* Vision Section */
.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.vision-item {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.vision-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.vision-item p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Values Section */
.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: bold;
}

.value-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

.value-card .it-highlight {
    color: #2563eb;
    font-weight: bold;
}

/* Company Info Section */
.company-info {
    background: #f8fafc;
}

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

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

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3::before {
    content: "▶";
    color: #667eea;
}

.info-table {
    width: 100%;
}

.info-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.info-table td {
    padding: 0.8rem 0;
    vertical-align: top;
}

.info-table td:first-child {
    font-weight: bold;
    color: #374151;
    width: 30%;
}

.info-table td:last-child {
    color: #6b7280;
}

/* History Section */
.history-timeline {
    position: relative;
    margin-top: 3rem;
}

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

.timeline-date {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    min-width: 120px;
    text-align: center;
    margin-right: 2rem;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex: 1;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.timeline-content p {
    color: #6b7280;
    font-size: 0.95rem;
}

.values h2 {
    color: white;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-item p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Problems & Solutions */
.problems-solutions {
    background: #f8fafc;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.problem-side,
.solution-side {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.problem-side {
    border-left: 4px solid #ef4444;
}

.solution-side {
    border-left: 4px solid #10b981;
}

.problem-side h3,
.solution-side h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.problem-side h3 {
    color: #dc2626;
}

.solution-side h3 {
    color: #059669;
}

.problem-list,
.solution-list {
    list-style: none;
}

.problem-list li,
.solution-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
}

.problem-list li::before {
    content: "❌";
    position: absolute;
    left: 0;
}

.solution-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

/* Key Insight */
.key-insight {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin: 4rem 0;
}

.key-insight h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.key-insight p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* Implementation Steps */
.steps {
    display: grid;
    gap: 3rem;
    position: relative;
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    z-index: 10;
}

.step-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 4px solid #667eea;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.step-details {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.step-details h4 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.step-details ul {
    list-style: none;
    padding-left: 0;
}

.step-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-details li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #667eea;
}

/* Flow line */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    z-index: 1;
}

/* System Features */
.features {
    background: #f8fafc;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Results Section */
.results {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.results h2 {
    color: white;
}

.results-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.before-after {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.before-after h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    font-size: 1rem;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: bold;
}

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

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.highlight-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

.result-item {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.result-item h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.achievement-list {
    list-style: none;
    text-align: left;
}

.achievement-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
}

.achievement-list li::before {
    content: "🏆";
    position: absolute;
    left: 0;
}

/* Customer Journey */
.customer-journey {
    background: #f8fafc;
}

.journey-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.journey-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.journey-step::before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.journey-step h3 {
    margin: 1rem 0;
    color: #1f2937;
}

.journey-step p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.journey-problem {
    color: #dc2626;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0.5rem;
    background: #fef2f2;
    border-radius: 4px;
}

/* Testimonial */
.testimonial {
    background: #f8fafc;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 2rem;
    color: #667eea;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    color: #1f2937;
}

.author-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

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

.case-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.case-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    text-align: center;
}

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

.case-company {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.case-industry {
    opacity: 0.9;
    font-size: 1rem;
}

.case-content {
    padding: 2rem;
}

.case-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}

.case-summary {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Approach Section */
.approach {
    background: #f8fafc;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.approach-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

.approach-points {
    list-style: none;
    margin-top: 2rem;
}

.approach-points li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.approach-points li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.approach-visual {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

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

.comparison-item {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.traditional {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.x-ops {
    background: #f0f9ff;
    border: 2px solid #93c5fd;
}

.comparison-item h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.traditional h4 {
    color: #dc2626;
}

.x-ops h4 {
    color: #2563eb;
}

/* Flow Section */
.flow-container {
    position: relative;
}

.flow-steps {
    display: grid;
    gap: 3rem;
    position: relative;
}

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

.detail-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.detail-item p {
    font-size: 0.95rem;
    color: #6b7280;
}

/* Cycle indicator */
.cycle-indicator {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    border: 2px dashed #667eea;
}

.cycle-indicator h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cycle-indicator p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* CTA Section */
.cta {
    background: #202a37;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0.5rem;
}

.btn-primary {
    background: #f59e0b;
    color: white;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* Contact Page Styles */
.contact-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-type {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.contact-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.contact-type.active {
    border-color: #667eea;
    background: #f8fafc;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-type h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-type p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-type .duration {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Form Section */
.form-container {
    background: #f8fafc;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #374151;
}

.required {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-weight: normal;
    line-height: 1.5;
    font-size: 0.9rem;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.info-item p {
    color: #6b7280;
}

/* Privacy Notice */
.privacy-notice {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.privacy-notice h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

/* Success/Error Messages */
.success-message {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    display: none;
}

.error-message {
    background: #ef4444;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    display: none;
}

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

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

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

    .ceo-photo {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .ceo-image {
        position: static;
    }

    .nav-links {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-date {
        margin-right: 0;
    }

    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .results-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin: 0 auto;
    }

    .step:not(:last-child)::after {
        display: none;
    }

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

    .journey-container {
        grid-template-columns: 1fr;
    }

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

    .form-wrapper {
        padding: 2rem;
        margin: 0 1rem;
    }
}

/* Index Page Specific Styles */
.hero .description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 3rem auto;
    opacity: 0.8;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Problems Section */
.problems {
    background: #f8fafc;
}

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

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ef4444;
}

.problem-item::before {
    content: "☑";
    color: #ef4444;
    font-size: 1.5rem;
    margin-right: 1rem;
}

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

.strength-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.strength-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.strength-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.strength-item p {
    color: #6b7280;
    line-height: 1.8;
}

/* Cases Section */
.cases {
    background: #f8fafc;
}

.case-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.case-header {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.case-body {
    padding: 2rem;
}

.case-problem-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    border-radius: 4px;
}

.case-challenge-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fefbf0;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

.case-solution-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f0f9ff;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.case-label {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-problem-section .case-label {
    color: #dc2626;
}

.case-challenge-section .case-label {
    color: #d97706;
}

.case-solution-section .case-label {
    color: #2563eb;
}

.case-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
    min-height: 46px;
    overflow: hidden;
}

/* Comparison Table */
.comparison {
    overflow-x: auto;
    margin: 3rem 0;
}

.comparison table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.comparison th,
.comparison td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comparison th {
    background: #f8fafc;
    font-weight: bold;
    color: #1f2937;
}

.comparison .highlight {
    background: #dbeafe;
    font-weight: bold;
    color: #2563eb;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    color: white;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Privacy Policy Page Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: left;
}

.privacy-content h3 {
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    border-left: 4px solid #667eea;
    padding-left: 1rem;
}

.privacy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.privacy-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 0.8rem;
}

.privacy-content .contact-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #667eea;
}

.privacy-content .contact-info p {
    margin-bottom: 0.5rem;
}

.privacy-content .contact-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
}

.privacy-content .contact-info a:hover {
    text-decoration: underline;
}

.policy-date {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
}

.policy-date p {
    margin-bottom: 0;
}

/* Index Page Responsive */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .strengths-grid,
    .cases-grid,
    .problems-grid {
        grid-template-columns: 1fr;
    }

    .privacy-content {
        padding: 0 1rem;
    }

    .privacy-content h2 {
        font-size: 1.7rem;
    }

    .privacy-content h3 {
        font-size: 1.3rem;
        margin-top: 2rem;
    }
}