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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Improve touch interactions */
button, .btn, .option-label, .contact-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Loading states for better UX */
.btn:active {
    transform: scale(0.98);
}

/* Smooth transitions for all interactive elements */
.btn, .option-label, .contact-btn, .feature-card, .pricing-card {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
.btn:focus, .option-label:focus-within, .contact-btn:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Social Proof */
.social-proof {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.social-proof-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    position: relative;
    display: inline-block;
}

.social-proof-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
}

.proof-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.proof-stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.proof-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #7c3aed, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proof-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.proof-stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.25rem;
}

.stat-detail {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.proof-testimonial {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed, #ec4899, #f59e0b);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-quote i {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    color: #2563eb;
    opacity: 0.3;
}

.testimonial-quote p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #1e293b;
    margin: 0;
    padding-left: 1.5rem;
    font-style: italic;
}

.testimonial-quote strong {
    color: #2563eb;
    font-weight: 700;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.author-company {
    font-weight: 600;
    color: #475569;
    font-size: 0.95rem;
}

.author-size {
    font-size: 0.875rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-proof {
        padding: 3rem 0;
    }
    
    .social-proof-title {
        font-size: 1.75rem;
    }
    
    .proof-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .proof-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    list-style: none;
    padding: 0;
}

.proof-stats li {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 120px;
}

.proof-stats strong {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.proof-stats span {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.proof-quote {
    text-align: center;
    font-style: italic;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .proof-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .proof-stats li {
        min-width: auto;
    }
}

/* Risk Reversal */
.risk-reversal {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 3rem 0;
    margin: 2rem 0;
}

.risk-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.risk-card h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.risk-card h3 i {
    margin-right: 0.5rem;
    color: #10b981;
}

.risk-card p {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

/* Notes Section */
.notes {
    background: #f9fafb;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

.notes h2 {
    margin-bottom: 1rem;
}

.notes p {
    margin-bottom: 1rem;
    color: #6b7280;
}

.notes ul {
    list-style: none;
    padding: 0;
}

.notes li {
    padding: 0.5rem 0;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.sticky-cta .btn {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

p {
    line-height: 1.6;
}

strong {
    font-weight: 600;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

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

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    border: 2px solid #2563eb;
    color: #2563eb;
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: #eff6ff;
}

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

.btn-success {
    background-color: #059669;
    color: white;
}

.btn-success:hover {
    background-color: #047857;
}

.btn-warning {
    background-color: #d97706;
    color: white;
}

.btn-warning:hover {
    background-color: #b45309;
}

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

.btn-block {
    width: 100%;
}

/* Utility Classes */
.text-blue {
    color: #2563eb;
}

.text-red {
    color: #dc2626;
}

.text-green {
    color: #059669;
}

.text-yellow {
    color: #d97706;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

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

/* Mobile Header Optimization */
@media (max-width: 768px) {
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo-png {
        width: 8rem;
    }
    
    .nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.logo-png {
    width: 12rem;
    height: auto;
    object-fit: contain;
}

.logo-footer {
    width: 12rem;
    height: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .nav-link {
        display: none;
    }
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, white 50%, #fef3e2 100%);
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
}
.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
}
.hero-subtitle {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
}
.hero-description {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2rem;
    max-width: 4xl;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
}
.hero-note {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem auto;
    backdrop-filter: blur(10px);
    position: relative;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-note {
        padding: 1rem;
        margin: 0 1rem 1.5rem;
        max-width: none;
    }
}
.hero-note p {
    font-size: 1.125rem;
    color: #1f2937;
}

@media (max-width: 768px) {
    .hero-note p {
        font-size: 0.875rem;
    }
}
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Social Proof */
.social-proof {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    list-style: none;
    padding: 0;
}

.proof-stats li {
    text-align: center;
    font-size: 0.9rem;
}

.proof-stats strong {
    display: block;
    font-size: 1.1rem;
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.proof-stats span {
    color: #64748b;
}

.proof-quote {
    text-align: center;
    font-style: italic;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .proof-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-proof {
        padding: 1.5rem 0;
    }
}

/* Risk Reversal */
.risk-reversal {
    padding: 3rem 0;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.risk-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.risk-card h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.risk-card p {
    margin-bottom: 1.5rem;
    color: #475569;
}

/* Notes Section */
.notes {
    padding: 3rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.notes .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.notes p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.notes ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.notes li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    z-index: 1000;
    border-top: 1px solid #e2e8f0;
}

.sticky-cta .btn {
    flex: 1;
    max-width: 200px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .sticky-cta {
        padding: 0.75rem;
    }
    
    .sticky-cta .btn {
        font-size: 0.85rem;
        padding: 0.625rem 0.75rem;
    }
}

@media (min-width: 1024px) {
    .sticky-cta {
        display: none;
    }
}

/* Hero Note */
.hero-note {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    backdrop-filter: blur(10px);
    position: relative;
}

.hero-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(147, 51, 234, 0.05));
    border-radius: 12px;
    z-index: -1;
}

.hero-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #1f2937;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
}
.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
    }
}
.section-description {
    font-size: 1.25rem;
    color: #374151;
    max-width: 4xl;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}

/* Why RPA Section */
.why-rpa {
    background-color: white;
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
}
.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .feature-card:hover {
        transform: translateY(-2px);
    }
}
.feature-card-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.feature-card-green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.feature-card-orange {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

.feature-icon {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.feature-card-green .feature-icon {
    background-color: #059669;
}

.feature-card-orange .feature-icon {
    background-color: #d97706;
}

.feature-icon i {
    width: 2rem;
    height: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-description {
    color: #374151;
    margin-bottom: 1rem;
}

.feature-stats {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
}

.feature-stats p {
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 600;
}

/* Problems Section */
.problems {
    background: #f8fafc;
    padding: 5rem 0;
}

.problems-header {
    text-align: center;
    margin-bottom: 4rem;
}

.problems-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.problems-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.problems-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Problem List Styles */
.problem-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    gap: 0.75rem;
}

.problem-list li i {
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-text {
    flex: 1;
}

.problem-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.problem-text p {
    color: #64748b;
    line-height: 1.6;
}

.solution-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-top: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.solution-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
}

.solution-content {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.solution-content p {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.6;
    text-align: center;
}

/* Why RPA Section */
.why-rpa {
    background-color: white;
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
}
.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .feature-card:hover {
        transform: translateY(-2px);
    }
}
.feature-card-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.feature-card-green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.feature-card-orange {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

.feature-icon {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.feature-card-green .feature-icon {
    background-color: #059669;
}

.feature-card-orange .feature-icon {
    background-color: #d97706;
}

.feature-icon i {
    width: 2rem;
    height: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-description {
    color: #374151;
    margin-bottom: 1rem;
}

.feature-stats {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
}

.feature-stats p {
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 600;
}

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

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

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

.problem-card, .solution-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.solution-card {
    border-left: 4px solid #2563eb;
}

.problem-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.problem-title i {
    width: 1.5rem;
    height: 1.5rem;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-title i {
    width: 1.5rem;
    height: 1.5rem;
}

.problem-list {
    list-style: none;
    space-y: 1rem;
}

.problem-list li {
    display: block;
    margin-bottom: 1rem;
    margin-bottom: 1rem;
}

.problem-list li i {
    margin-right: 0.5rem;
    vertical-align: top;
}

.solution-content {
    background-color: #eff6ff;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.solution-content p {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.solution-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-stats i {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
}

.solution-stats span {
    color: #2563eb;
    font-weight: 600;
}

/* Capabilities */
.capabilities {
    background-color: white;
}

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

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

@media (min-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.capability-card {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: background-color 0.2s ease;
}

.capability-card:hover {
    background-color: #f3f4f6;
}

.capability-icon {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    width: fit-content;
    margin-bottom: 1rem;
}

.capability-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.capability-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.capability-description {
    color: #6b7280;
    font-size: 0.875rem;
}

.non-recommended {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.non-recommended h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.non-recommended p {
    color: #dc2626;
}

/* Industry Examples */
.industry-examples {
    background: linear-gradient(135deg, #eff6ff 0%, #f3e8ff 100%);
}

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

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

@media (min-width: 1024px) {
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.industry-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.industry-tag {
    background-color: #dbeafe;
    color: #1d4ed8;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 0.75rem;
}

.industry-card p {
    color: #374151;
}

/* Results */
.results {
    background-color: white;
}

.results-example {
    background-color: white;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 4xl;
    margin: 0 auto;
}

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

.example-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.example-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.before-section,
.after-section {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.before-section {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
}

.after-section {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.before-section h4 {
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 1rem;
}

.after-section h4 {
    color: #059669;
    font-weight: 600;
    margin-bottom: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.metric-value {
    font-weight: 700;
    font-size: 1.125rem;
}

.metric-value.before {
    color: #dc2626;
}

.metric-value.after {
    color: #059669;
}

.arrow-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-section i {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.example-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
}

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

.result-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.result-value {
    display: block;
    font-weight: 700;
    font-size: 1.25rem;
}

.result-value.success {
    color: #059669;
}

.result-value.highlight {
    color: #d97706;
}

.example-note {
    text-align: center;
    padding: 1rem;
    background-color: #eff6ff;
    border-radius: 0.5rem;
    border-left: 4px solid #2563eb;
}

.example-note p {
    color: #1e40af;
    font-size: 0.875rem;
}

.example-note i {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 768px) {
    .example-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .arrow-section {
        transform: rotate(90deg);
    }
    
    .example-results {
        grid-template-columns: 1fr;
    }
}

/* Pricing */
.pricing {
    padding: 4rem 0;
    background-color: #f9fafb;
}

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

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
}
.pricing-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 1.5rem;
        border-radius: 0.75rem;
    }
}
.pricing-card-popular {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .pricing-card-popular {
        transform: scale(1);
        border-width: 3px;
    }
}
.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2563eb;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.125rem 0.75rem;
        top: -0.5rem;
    }
}
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .pricing-header {
        margin-bottom: 1.5rem;
    }
}
.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .plan-name {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
}
.plan-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-initial, .price-monthly {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.875rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .price-label {
        font-size: 0.75rem;
    }
}
.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

@media (max-width: 768px) {
    .price-value {
        font-size: 1.25rem;
    }
}
.price-monthly .price-value {
    font-size: 2.5rem;
    color: #2563eb;
}

@media (max-width: 768px) {
    .price-monthly .price-value {
        font-size: 2rem;
    }
}

/* Plan Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    gap: 0.75rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i,
.plan-features li svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.plan-features li strong {
    font-weight: 600;
    color: #1f2937;
}

@media (max-width: 768px) {
    .plan-features {
        margin-bottom: 1.5rem;
    }
}
.plan-features li {
    display: block;
    margin-bottom: 0.75rem;
}

.plan-features li i,
.plan-features li svg {
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .plan-features li {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
}
.plan-features i {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    vertical-align: top;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .plan-features i {
        width: 1rem;
        height: 1rem;
    }
}
.plan-features span {
    color: #374151;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .plan-features span {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}
/* Comparison Table */
.comparison {
    background-color: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .comparison-table-wrapper {
        margin: 0 -1rem;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .comparison-table-wrapper::before {
        content: "← 左右にスクロールできます →";
        display: block;
        text-align: center;
        padding: 0.5rem;
        background-color: #f3f4f6;
        color: #6b7280;
        font-size: 0.75rem;
        font-weight: 500;
        border-bottom: 1px solid #e5e7eb;
    }
}
.comparison-table {
    width: 100%;
    min-width: 600px;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@media (max-width: 768px) {
    .comparison-table {
        border-radius: 0;
        box-shadow: none;
        min-width: 700px;
    }
}
.comparison-table thead {
    background-color: #f9fafb;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        white-space: normal;
        min-width: 120px;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background-color: white;
        z-index: 1;
        box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
        min-width: 100px;
    }
    
    .comparison-table th.highlight {
        background-color: #eff6ff;
    }
    
    .comparison-table td.highlight {
        background-color: #eff6ff;
    }
}
.comparison-table th {
    font-weight: 600;
    color: #1f2937;
}

.comparison-table th.highlight {
    background-color: #eff6ff;
    color: #2563eb;
}

.comparison-table td.highlight {
    background-color: #eff6ff;
    color: #1e40af;
    font-weight: 500;
}

.comparison-table td.row-header {
    font-weight: 600;
    color: #1f2937;
}

.comparison-table tbody tr:hover {
    background-color: #f9fafb;
}

/* Strengths and Considerations */
.strengths-considerations {
    background-color: #f9fafb;
}

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

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

.strengths-card, .considerations-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.strengths-card {
    border-left: 4px solid #059669;
}

.considerations-card {
    border-left: 4px solid #d97706;
}

.strengths-title, .considerations-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.strengths-title {
    color: #059669;
}

.considerations-title {
    color: #d97706;
}

.strengths-title i, .considerations-title i {
    width: 1.5rem;
    height: 1.5rem;
}

.strengths-list, .considerations-list {
    list-style: none;
}

.strengths-list li, .considerations-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.strengths-list li::before {
    content: "•";
    color: #059669;
    font-weight: bold;
    font-size: 1.25rem;
    margin-top: -0.125rem;
}

.considerations-list li::before {
    content: "•";
    color: #d97706;
    font-weight: bold;
    font-size: 1.25rem;
    margin-top: -0.125rem;
}

.considerations-list li {
    font-size: 0.875rem;
}

/* Decision Flow */
.decision-flow {
    background-color: white;
}

/* Getting Started Section */
.getting-started-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.getting-started-flow {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-content {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step-icon i {
    width: 28px;
    height: 28px;
    color: #2563eb;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.step-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.step-link:hover {
    color: #1d4ed8;
    gap: 12px;
}

.step-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.step-link:hover i {
    transform: translateX(4px);
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.feature-tag {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.flow-arrow i {
    width: 24px;
    height: 24px;
    color: #94a3b8;
}

.getting-started-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.getting-started-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.getting-started-cta p {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-categories {
    margin-bottom: 48px;
}

.faq-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.faq-nav-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-nav-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.faq-nav-btn.active {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-color: transparent;
    color: white;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    display: block;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: #64748b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    color: #64748b;
    line-height: 1.7;
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer strong {
    color: #1e293b;
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 48px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.faq-cta p {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 32px;
}

/* Responsive Design for Getting Started and FAQ */
@media (max-width: 768px) {
    .getting-started-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .flow-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .step-content {
        padding: 24px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .getting-started-cta,
    .faq-cta {
        padding: 32px 20px;
    }
    
    .getting-started-cta h3,
    .faq-cta h3 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .faq-nav {
        gap: 4px;
    }
    
    .faq-nav-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .flow-arrow {
        display: none;
    }
}

/* Business Screening - Step by Step */
.screening-section {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .screening-section {
        padding: 1rem;
        margin: 0 0.5rem 2rem;
        border-radius: 0.75rem;
    }
}

.screening-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .screening-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
}

.screening-description {
    text-align: center;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .screening-description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
}

.screening-form {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    min-height: 400px;
}

@media (max-width: 768px) {
    .screening-form {
        padding: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 0.5rem;
        min-height: 350px;
    }
}

/* Step Progress */
.step-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    width: 16.67%;
    transition: width 0.3s ease;
}

.step-counter {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Screening Steps */
.screening-step {
    display: none;
    animation: fadeInStep 0.3s ease-in-out;
}

.screening-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

@media (max-width: 768px) {
    .step-header {
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .step-title {
        font-size: 1.25rem;
    }
}

.step-description {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
}

@media (max-width: 768px) {
    .step-description {
        font-size: 0.875rem;
    }
}

.step-weight {
    background-color: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

@media (max-width: 768px) {
    .step-weight {
        font-size: 0.625rem;
        padding: 0.125rem 0.5rem;
    }
}

.step-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 768px) {
    .step-options {
        gap: 0.75rem;
    }
}

.option-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 60px;
}

@media (max-width: 768px) {
    .option-label {
        padding: 0.75rem;
        gap: 0.75rem;
        align-items: flex-start;
        min-height: 50px;
    }
}

.option-label:hover {
    background-color: #f3f4f6;
    border-color: #2563eb;
    transform: translateY(-1px);
}

.option-label input[type="radio"] {
    margin: 0;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
}

@media (max-width: 768px) {
    .option-label input[type="radio"] {
        margin-top: 0.125rem;
        width: 1rem;
        height: 1rem;
    }
}

.option-label input[type="radio"]:checked + .option-text {
    font-weight: 600;
    color: #2563eb;
}

.option-label:has(input[type="radio"]:checked) {
    background-color: #eff6ff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.option-text {
    flex: 1;
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .option-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

.option-score {
    font-weight: 700;
    color: #059669;
    font-size: 0.875rem;
    background-color: #dcfce7;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

@media (max-width: 768px) {
    .option-score {
        font-size: 0.75rem;
        padding: 0.125rem 0.375rem;
    }
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    gap: 1rem;
}

@media (max-width: 768px) {
    .step-navigation {
        margin: 1.5rem 0;
        gap: 0.75rem;
    }
}

.step-navigation .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

@media (max-width: 768px) {
    .step-navigation .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

.step-navigation .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.step-navigation .btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Score Display */
.score-display {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .score-display {
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 1.5rem;
    }
}

.current-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .current-score {
        flex-direction: column;
        gap: 0.25rem;
        margin-bottom: 0.5rem;
    }
}

.score-label {
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .score-label {
        font-size: 0.875rem;
    }
}

.score-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

@media (max-width: 768px) {
    .score-value {
        font-size: 1.75rem;
    }
}

.score-max {
    font-size: 1rem;
    color: #e5e7eb;
}

@media (max-width: 768px) {
    .score-max {
        font-size: 0.875rem;
    }
}

.score-recommendation {
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .score-recommendation {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
        line-height: 1.4;
    }
}

.score-recommendation.high {
    background-color: #059669;
}

.score-recommendation.medium {
    background-color: #d97706;
}

.score-recommendation.low {
    background-color: #dc2626;
}

/* Screening Guide */
.screening-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

@media (max-width: 768px) {
    .screening-guide {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.guide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .guide-item {
        padding: 0.75rem;
        flex-direction: row;
        text-align: left;
        gap: 0.75rem;
    }
}

.guide-high {
    background-color: #dcfce7;
    border: 1px solid #bbf7d0;
}

.guide-medium {
    background-color: #fef3c7;
    border: 1px solid #fde68a;
}

.guide-low {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
}

.guide-score {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .guide-score {
        font-size: 1rem;
        margin-bottom: 0;
        min-width: 4rem;
    }
}

.guide-high .guide-score {
    color: #059669;
}

.guide-medium .guide-score {
    color: #d97706;
}

.guide-low .guide-score {
    color: #dc2626;
}

.guide-text {
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .guide-text {
        font-size: 0.75rem;
    }
}

.guide-high .guide-text {
    color: #047857;
}

.guide-medium .guide-text {
    color: #b45309;
}

.guide-low .guide-text {
    color: #b91c1c;
}

.decision-intro {
    text-align: center;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .decision-intro {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem 2rem;
        border-radius: 0.75rem;
    }
}
.decision-intro p {
    font-size: 1.25rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .decision-intro p {
        font-size: 1rem;
        line-height: 1.5;
    }
}
.questions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

@media (max-width: 768px) {
    .questions-grid {
        gap: 0.75rem;
        margin: 0 0.5rem 2rem;
    }
}
.question-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .question-card {
        padding: 0.75rem;
        gap: 0.5rem;
    }
}
.question-number {
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .question-number {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
        margin-top: 0.125rem;
    }
    
    .question-card p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
}
.decision-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

@media (max-width: 768px) {
    .decision-actions {
        gap: 1.5rem;
        margin: 0 0.5rem;
    }
}
.decision-card {
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .decision-card {
        padding: 1.5rem;
        border-radius: 0.75rem;
    }
}
.decision-yes {
    background-color: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.decision-no {
    background-color: #fff7ed;
    border: 2px solid #fed7aa;
}

.decision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .decision-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
}
.decision-yes h3 {
    color: #059669;
}

.decision-no h3 {
    color: #d97706;
}

.decision-card p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .decision-card p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}
.decision-yes p {
    color: #047857;
}

.decision-no p {
    color: #b45309;
}

/* Trial */
.trial {
    background: linear-gradient(135deg, #eff6ff 0%, #f3e8ff 100%);
}

.trial-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .trial-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}

.metric-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.metric-icon {
    padding: 1rem;
    border-radius: 50%;
    width: fit-content;
    margin: 0 auto 1rem;
}

.metric-card:nth-child(1) .metric-icon {
    background-color: #dbeafe;
}

.metric-card:nth-child(2) .metric-icon {
    background-color: #dcfce7;
}

.metric-card:nth-child(3) .metric-icon {
    background-color: #fed7aa;
}

.metric-card:nth-child(1) .metric-icon i {
    color: #2563eb;
}

.metric-card:nth-child(2) .metric-icon i {
    color: #059669;
}

.metric-card:nth-child(3) .metric-icon i {
    color: #d97706;
}

.metric-icon i {
    width: 2rem;
    height: 2rem;
}

.metric-card h3 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.metric-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

.trial-example {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.trial-example-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
}

.example-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    padding: 1rem;
    border-radius: 1rem;
    flex-shrink: 0;
}

.example-icon i {
    width: 2rem;
    height: 2rem;
    color: white;
}

.example-content {
    flex: 1;
}

.example-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.stat-value.highlight {
    color: #3b82f6;
}

.stat-value.success {
    color: #059669;
}

.roi-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 0.75rem;
    color: #92400e;
    font-weight: 600;
}

.roi-highlight i {
    width: 1.25rem;
    height: 1.25rem;
}

.roi-highlight strong {
    font-weight: 700;
    color: #78350f;
}

@media (max-width: 768px) {
    .trial-example-card {
        flex-direction: column;
        text-align: center;
    }
    
    .example-stats {
        grid-template-columns: 1fr;
    }
}

/* Contact */
.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1f2937;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .contact-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}
.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
}
.contact-subtitle {
    font-size: 1.25rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .contact-subtitle {
        font-size: 1rem;
    }
}
.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 4rem;
}

.contact-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

@media (max-width: 768px) {
    .contact-center {
        padding: 0 1rem;
    }
}
.contact-actions-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 800px;
}

@media (max-width: 768px) {
    .contact-actions-card {
        padding: 1.5rem;
        border-radius: 0.75rem;
    }
}
.contact-actions-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-actions-header {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
}
.contact-actions-header i {
    width: 1.5rem;
    height: 1.5rem;
    color: #3b82f6;
}

.contact-actions-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-actions-header h3 {
        font-size: 1.125rem;
        text-align: center;
    }
}
.contact-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
}

.contact-btn-single {
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-btn {
        padding: 1rem;
        gap: 0.75rem;
        border-radius: 0.5rem;
    }
}
.contact-btn i {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .contact-btn i {
        width: 1.25rem;
        height: 1.25rem;
    }
}
.btn-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

@media (max-width: 768px) {
    .btn-content {
        text-align: center;
    }
}
.btn-title {
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .btn-title {
        font-size: 0.875rem;
    }
}
.btn-desc {
    font-size: 0.75rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .btn-desc {
        font-size: 0.625rem;
    }
}
.contact-btn.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
}

.contact-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .contact-btn.primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }
}
.contact-btn.secondary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.contact-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.contact-btn.third {
    background: linear-gradient(135deg, #0bca8d 0%, #059669 100%);
    color: white;
}
.contact-btn.third:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.contact-btn.outline {
    background: white;
    color: #3b82f6;
    border-color: #3b82f6;
}

.contact-btn.outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

/* Footer - New Design */
/* Legal Disclaimers */
.legal-disclaimers {
    background: #f8fafc;
    padding: 3rem 0;
    border-top: 1px solid #e2e8f0;
}

.disclaimer-content h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 2rem;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.disclaimer-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.disclaimer-item h4::before {
    content: "⚠️";
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

.disclaimer-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.disclaimer-item a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 500;
}

.disclaimer-item a:hover {
    color: #1d4ed8;
}

@media (max-width: 768px) {
    .legal-disclaimers {
        padding: 2rem 0;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .disclaimer-item {
        padding: 1rem;
    }
}

.footer-new {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-new * {
    color: #ffffff;
}


.footer-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.footer-logo .logo-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.footer-logo .logo-text {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem auto;
    backdrop-filter: blur(10px);
    position: relative;
    max-width: 300px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    flex: 2;
}

@media (max-width: 767px) {
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #60a5fa;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

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


/* Company Page Styles */
.company-tagline {
    font-size: 1.125rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.company-overview {
    max-width: 1000px;
    margin: 0 auto;
}

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

.company-info-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.company-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.info-content h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-content p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.business-overview {
    margin-bottom: 3rem;
}

.business-overview h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.business-grid {
    display: grid;
    gap: 2rem;
}

.business-card {
    display: flex;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.business-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.business-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

.business-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.business-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.business-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.business-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.strengths-section {
    margin-bottom: 3rem;
}

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

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

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

.strength-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.strength-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.strength-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

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

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

.mission-section {
    margin-bottom: 3rem;
    text-align: center;
}

.mission-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.mission-content {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: white;
}

.mission-statement {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.mission-text p:last-child {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

.company-contact {
    text-align: center;
    padding: 3rem 2rem;
    background: #f9fafb;
    border-radius: 20px;
}

.company-contact h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.company-contact p {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

.contact-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .business-card {
        flex-direction: column;
        text-align: center;
    }
    
    .business-icon {
        margin: 0 auto 1.5rem auto;
    }
    
    .company-info-grid {
        grid-template-columns: 1fr;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .mission-content {
        padding: 2rem 1.5rem;
    }
    
    .mission-statement {
        font-size: 1.25rem;
    }
}

/* Company Page Styles */
.company-info-table {
    margin-bottom: 4rem;
}

.company-info-table h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.info-table {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.info-row {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row:hover {
    background-color: #f9fafb;
}

.info-label {
    display: flex;
    align-items: center;
    min-width: 120px;
    font-weight: 600;
    color: #374151;
    gap: 0.75rem;
}

.info-label i {
    width: 20px;
    height: 20px;
    color: #2563eb;
    flex-shrink: 0;
}

.info-value {
    flex: 1;
    font-weight: 500;
    color: #1f2937;
    margin-left: 2rem;
}

.business-icon-stylish {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.business-icon-stylish:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.business-icon-stylish i {
    width: 28px;
    height: 28px;
    color: white;
}

.business-card:hover .business-icon-stylish {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.business-card:last-child .business-icon-stylish {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
}

.business-card:nth-child(2) .business-icon-stylish:hover {
    box-shadow: 0 15px 35px rgba(240, 147, 251, 0.4);
}

@media (max-width: 768px) {
    .info-table {
        margin: 0 1rem;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }
    
    .info-label {
        min-width: auto;
    }
    
    .info-value {
        margin-left: 0;
        font-size: 1.1rem;
    }
    
    .business-icon-stylish {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    .business-icon-stylish i {
        width: 30px;
        height: 30px;
    }
}

.footer-copyright p {
    color: #ffffff;
    font-size: 0.875rem;
    margin: 0;
}

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

.footer-contact p {
    color: #ffffff;
    font-size: 0.875rem;
    margin: 0;
}

.example-description {
    color: #6b7280;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Tokusho (特定商取引法) Styles */
.tokusho-content {
    max-width: 800px;
    margin: 0 auto;
}

.tokusho-table {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.tokusho-row {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}

.tokusho-row:last-child {
    border-bottom: none;
    align-items: flex-start;
}

.tokusho-row:last-child {
    border-bottom: none;
}

.tokusho-label {
    flex: 0 0 250px;
    background: #f8fafc;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    border-right: 1px solid #e5e7eb;
}

.tokusho-label i {
    width: 18px;
    height: 18px;
    color: #2563eb;
    flex-shrink: 0;
}

.tokusho-value {
    padding: 1.5rem 1rem;
    line-height: 1.6;
}

.tokusho-value a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.tokusho-value a:hover {
    text-decoration: underline;
}

.tokusho-value small {
    color: #6b7280;
    font-size: 0.875rem;
}

/* 特定商取引法ページ専用スタイル */
.tokusho-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
}

.tokusho-notice h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #92400e;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
}

.tokusho-notice h2 i,
.tokusho-notice h2 svg {
    color: #f59e0b;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.notice-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-content li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    color: #92400e;
    line-height: 1.6;
}

.notice-content li:last-child {
    border-bottom: none;
}

.notice-content li::before {
    content: "•";
    color: #f59e0b;
    font-weight: bold;
    margin-right: 0.75rem;
}

.tokusho-contact {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.tokusho-contact h2 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.tokusho-contact p {
    color: #64748b;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .tokusho-notice,
    .tokusho-contact {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .tokusho-notice h2 {
        font-size: 1.125rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .tokusho-row {
        flex-direction: column;
        min-height: auto;
    }
    
    .tokusho-label {
        flex: none;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        min-height: auto;
    }
    
    .tokusho-value {
        min-height: auto;
        background: #f1f5f9;
    }
    
    .tokusho-value {
        align-items: flex-start;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .nav {
        gap: 0.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    /* Additional mobile optimizations */
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-actions {
        padding: 0 1rem;
    }
    
    .btn {
        min-height: 44px; /* Touch-friendly button size */
    }
    
    /* Improve tap targets */
    .option-label {
        min-height: 44px;
    }
    
    /* Better text readability */
    body {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Sticky elements adjustment */
    .header {
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.95);
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 5rem 0;
    background-color: white;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    border-right: 1px solid #e5e7eb;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.last-updated {
    color: #6b7280;
    font-size: 0.875rem;
}

.legal-body {
    max-width: 4xl;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2563eb;
}

.legal-section p {
    color: #374151;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    color: #374151;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

.legal-section ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #2563eb;
    margin-top: 1rem;
}

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

.contact-info p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 3rem 0;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
}

/* Contact Form Styles */
.contact-form-section {
    padding: 5rem 0;
    background-color: #f9fafb;
    min-height: 100vh;
}

.contact-form-single {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-card-single {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: #1f2937;
    min-height: 60px;
    font-size: 0.875rem;
}

.required {
    color: #dc2626;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.char-count {
    font-size: 0.75rem;
    color: #6b7280;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.error-message {
    color: #dc2626;
    font-size: 0.75rem;
    display: none;
}

.form-actions {
    margin-top: 1rem;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.success-message {
    background-color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.success-content i {
    width: 3rem;
    height: 3rem;
    color: #059669;
}

.success-content h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.success-content p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    min-height: 60px;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-info-card .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card .contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-card .contact-icon {
    padding: 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card .contact-icon.phone {
    background-color: #2563eb;
}

.contact-info-card .contact-icon.email {
    background-color: #059669;
}

.contact-info-card .contact-icon.meeting {
    background-color: #7c3aed;
}

.contact-info-card .contact-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.contact-info-card .method-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-info-card .method-detail {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-info-card .method-value {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.875rem;
}