/* ====================================
   CSS Variables & Root Settings
==================================== */

:root {
    /* Primary Colors */
    --bg-color: #F9F8F4;
    --bg-white: #FDFCF8;
    --bg-light: #F5F1E8;
    --bg-gray: #E8DFD0;
    
    /* Text Colors */
    --text-main: #2A2A2A;
    --text-dark: #2C2C2C;
    --text-sub: #666666;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    
    /* Accent Colors */
    --accent-gold: #BC9C66;
    --primary-color: #C9A860;
    --primary-dark: #B8954D;
    --primary-light: #D4B76E;
    --secondary-color: #E8DFD0;
    --accent-color: #C9A860;
    --success-color: #C9A860;
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    /* Typography */
    --font-serif: 'Zen Mincho', 'Playfair Display', serif;
    --font-sans: 'Zen Kaku Gothic New', sans-serif;
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-heading: 'Montserrat', 'Noto Sans JP', sans-serif;
    
    /* Borders */
    --border-color: #E8DFD0;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-smooth: cubic-bezier(0.2, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Skip to Content */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--text-main);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s;
}
.skip-to-content:focus { top: 0; }

/* Custom Cursor (Desktop Only) */
@media (pointer: fine) and (hover: hover) {
    body.cursor-enabled { cursor: none; }
    
    .cursor-dot {
        position: fixed;
        top: 0; left: 0;
        width: 8px; height: 8px;
        background-color: var(--accent-gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
    }
    
    .cursor-outline {
        position: fixed;
        top: 0; left: 0;
        width: 40px; height: 40px;
        border: 1px solid var(--accent-gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s, background-color 0.3s;
    }
    
    body.hovering .cursor-outline {
        width: 70px; height: 70px;
        background-color: rgba(188, 156, 102, 0.1);
        border-color: transparent;
        backdrop-filter: blur(2px);
    }
}

@media (pointer: coarse) {
    .cursor-dot, .cursor-outline { display: none; }
}

/* Typography */
h1, h2, h3, .serif { font-family: var(--font-serif); }
.en-title { font-family: 'Playfair Display', serif; font-style: italic; }
.gold-text { color: var(--accent-gold); }

a:focus, button:focus { outline: 3px solid var(--accent-gold); outline-offset: 2px; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.section-padding { padding: 140px 0; }

/* Header */
header {
    position: fixed;
    top: 0; 
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(249, 248, 244, 0.95);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, padding 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.02);
}

header.scrolled {
    padding: 20px 60px;
    background: rgba(249, 248, 244, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.logo { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.5rem; 
    letter-spacing: 0.1em;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a { 
    color: inherit; 
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 101;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    margin: 3px 0;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    position: relative;
    transition: color 0.3s;
}

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

nav a:hover::after, nav a:focus::after { width: 100%; }

/* Special styling for app link */
.nav-app-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-app-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 168, 96, 0.4);
}

.nav-app-link::after {
    display: none !important;
}

.nav-app-link i {
    font-size: 14px;
}

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

.hero-bg {
    position: absolute;
    top: -10%; 
    left: 20%;
    width: 90%; 
    height: 120%;
    background-image: url('../asset/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 45%;
    margin-left: 8%;
    padding: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1.5s var(--transition-smooth) forwards 0.5s;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.5;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.hero p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #444;
    margin-bottom: 40px;
    border-left: 3px solid var(--accent-gold);
    padding-left: 20px;
}

@keyframes heroFadeIn { to { opacity: 1; transform: translateY(0); } }

.scroll-indicator {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

.scroll-line {
    width: 60px; 
    height: 1px; 
    background: #333;
    animation: scrollLineExtend 2s infinite;
}

@keyframes scrollLineExtend {
    0%, 100% { width: 60px; }
    50% { width: 80px; }
}

/* Profile Section */
.profile-section {
    background: #fff;
    position: relative;
}

.profile-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.profile-image-wrapper {
    position: sticky;
    top: 120px;
}

.profile-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.profile-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.profile-subtitle {
    font-size: 1.1rem;
    color: var(--text-sub);
    margin-bottom: 40px;
    line-height: 1.8;
}

.credentials {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.credentials h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

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

.credentials li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.credentials li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.highlight-box {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #D4AF7A 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 500;
}

/* Mission Section */
.mission {
    background: var(--text-main);
    color: white;
    text-align: center;
    padding: 120px 0;
}

.mission h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.4;
    margin-bottom: 30px;
}

.mission p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.8;
}

/* Three Pillars */
.three-pillars {
    background: var(--bg-color);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.pillar-card {
    background: white;
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.pillar-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-sub);
}

/* Gallery Section */
.gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 30px 20px 15px;
    font-size: 0.9rem;
}

/* Evidence */
.evidence {
    background: #2A2A2A;
    color: #fff;
    padding: 100px 0;
}

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

.evidence-title h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-top: 10px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.data-item h4 { 
    font-size: 0.9rem; 
    letter-spacing: 2px; 
    opacity: 0.7; 
    margin-bottom: 10px;
    font-weight: 400;
}

.data-num { 
    font-family: 'Playfair Display'; 
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--accent-gold); 
    line-height: 1;
    display: inline-block;
}

.data-unit { 
    font-size: 1rem; 
    color: #fff; 
    margin-left: 5px; 
}

.data-item p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 10px;
}

.partners-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-family: 'Playfair Display';
    opacity: 0.7;
    font-size: 1.1rem;
}

/* Case Studies */
.case-studies {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.case-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(188, 156, 102, 0.3);
    transform: translateY(-5px);
}

.case-header {
    margin-bottom: 30px;
    text-align: center;
}

.case-header h4 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: 10px;
}

.case-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.metric-item {
    text-align: center;
    padding: 20px;
    background: rgba(188, 156, 102, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(188, 156, 102, 0.15);
}

.metric-value {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.metric-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
}

.metric-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
}

.chart-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Services */
.services {
    background: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-sub);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-tag {
    display: inline-block;
    background: var(--bg-color);
    color: var(--accent-gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* CTA */
.cta {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://www.genspark.ai/api/files/s/CJOXzYpq');
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta::before {
    content: ''; 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background: rgba(249, 248, 244, 0.85);
}

.cta-content { 
    position: relative; 
    z-index: 2; 
    max-width: 700px;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 20px 0;
}

.cta-content > p {
    color: var(--text-sub);
    margin-bottom: 40px;
    line-height: 2;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Footer */
footer {
    background: var(--text-main);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-links a:focus {
    color: var(--accent-gold);
}

.copyright {
    margin-top: 30px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Animations */
.fade-up { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: 1s var(--transition-smooth); 
}

.fade-up.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* Loading */
.loading {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px; height: 50px;
    border: 3px solid rgba(188, 156, 102, 0.2);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ====================================
   Extended Button Styles
==================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

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

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #C9A860, #B8954D);
    color: white;
    box-shadow: 0 4px 14px rgba(201, 168, 96, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 96, 0.4);
}

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

.btn-secondary:hover {
    background: var(--bg-gray);
    color: var(--text-dark);
}

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

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

.btn-white {
    background: white;
    color: var(--text-dark);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.btn-outline-white:hover {
    background: white;
    color: var(--text-dark);
}

.btn-line {
    background: #06C755;
    color: white;
    box-shadow: 0 4px 14px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
    background: #05a847;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.btn-footer {
    background: var(--primary-color);
    color: white;
    margin-top: 15px;
}

.btn-footer:hover {
    background: var(--primary-light);
}

/* ====================================
   Section Labels & Titles
==================================== */

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    margin: 20px auto;
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ====================================
   Scroll to Top Button
==================================== */

.scroll-top,
#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible,
#scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover,
#scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(201, 168, 96, 0.4);
}

/* ====================================
   Form Styles
==================================== */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: #ef4444;
    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
    background: white;
}

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

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-dark);
}

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

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 40px;
}

/* ====================================
   Badges & Tags
==================================== */

.service-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: white;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.badge-premium {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 4px 12px rgba(201, 168, 96, 0.4);
}

.popular-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 12px;
    margin-left: 10px;
}

.testimonial-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(201, 168, 96, 0.1), rgba(232, 223, 208, 0.1));
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
}

.badge-doctor {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.video-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* ====================================
   Testimonial Cards
==================================== */

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    border-radius: 50%;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.doctor-icon {
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-medium);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-text strong {
    color: var(--primary-color);
}

.testimonial-doctor {
    border-color: var(--accent-color);
}

.testimonial-video {
    position: relative;
    background: linear-gradient(135deg, rgba(201, 168, 96, 0.05), rgba(232, 223, 208, 0.02));
}

/* ====================================
   Challenge Cards
==================================== */

.challenge-card {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--primary-color);
}

.challenge-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.challenge-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.challenge-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ====================================
   Mission Cards
==================================== */

.mission-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    border-radius: 50%;
    color: white;
    font-size: 36px;
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mission-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* ====================================
   Flow Steps
==================================== */

.flow-step {
    flex: 1;
    text-align: center;
    max-width: 220px;
}

.flow-number {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
}

.flow-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(201, 168, 96, 0.2);
}

.flow-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.flow-step p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

.flow-arrow {
    font-size: 24px;
    color: var(--primary-color);
    margin: 0 20px;
}

/* ====================================
   Pricing Table Enhancements
==================================== */

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.pricing-table th {
    padding: 25px 20px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.th-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
}

.pricing-table td {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.staff-count {
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
    position: relative;
}

.popular-row {
    background: linear-gradient(to right, rgba(201, 168, 96, 0.05), rgba(232, 223, 208, 0.05));
}

.highlight-col {
    background: linear-gradient(to bottom, rgba(201, 168, 96, 0.1), rgba(232, 223, 208, 0.05));
    font-weight: 700;
    color: var(--primary-color);
}

/* ====================================
   Variables & Reset
==================================== */

:root {
    /* Colors */
    --primary-color: #C9A860;
    --primary-dark: #B8954D;
    --primary-light: #D4B76E;
    --secondary-color: #E8DFD0;
    --accent-color: #C9A860;
    --success-color: #C9A860;
    --text-dark: #2C2C2C;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-white: #FDFCF8;
    --bg-light: #F5F1E8;
    --bg-gray: #E8DFD0;
    --border-color: #E8DFD0;
    
    /* Typography */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-heading: 'Montserrat', 'Noto Sans JP', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-dark);
    background-color: #FDFCF8;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ====================================
   Container & Layout
==================================== */

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

/* ====================================
   Typography
==================================== */

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #C9A860, #D4B76E);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #C9A860, #D4B76E);
    margin: 20px auto;
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ====================================
   Buttons
==================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

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

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #C9A860, #B8954D);
    color: white;
    box-shadow: 0 4px 14px rgba(201, 168, 96, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 96, 0.4);
}

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

.btn-secondary:hover {
    background: #E8DFD0;
    color: #2C2C2C;
}

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

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

.btn-white {
    background: white;
    color: #2C2C2C;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.btn-outline-white:hover {
    background: white;
    color: #2C2C2C;
}

.btn-line {
    background: #06C755;
    color: white;
    box-shadow: 0 4px 14px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
    background: #05a847;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.btn-footer {
    background: #C9A860;
    color: white;
    margin-top: 15px;
}

.btn-footer:hover {
    background: #D4B76E;
}

/* ====================================
   Header & Navigation
==================================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

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

.navbar {
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--text-medium);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 30px;
    font-weight: 600;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ====================================
   Hero Section
==================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E8DFD0 0%, #F5F1E8 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 168, 96, 0.2), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 223, 208, 0.3), transparent 50%),
        linear-gradient(135deg, rgba(245, 241, 232, 0.9), rgba(253, 252, 248, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-label {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.hero-feature i {
    font-size: 20px;
    color: var(--accent-color);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

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

/* ====================================
   Mission Section
==================================== */

.mission-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    border-radius: 50%;
    color: white;
    font-size: 36px;
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mission-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* ====================================
   Challenges Section
==================================== */

.challenges-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.challenge-card {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid #C9A860;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-left-color: #C9A860;
}

.challenge-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C9A860, #D4B76E);
    border-radius: 12px;
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.challenge-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.challenge-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.challenges-message {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* ====================================
   Services Section
==================================== */

.services-section {
    padding: var(--section-padding) 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    position: relative;
    background: linear-gradient(to bottom, var(--bg-light), white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(201, 168, 96, 0.1);
    font-family: var(--font-heading);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    color: white;
    font-size: 32px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.service-features i {
    color: var(--success-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: white;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.badge-premium {
    background: linear-gradient(135deg, #C9A860, #D4B76E);
    box-shadow: 0 4px 12px rgba(201, 168, 96, 0.4);
}

/* ====================================
   Pricing Section
==================================== */

.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.pricing-table th {
    padding: 25px 20px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.th-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
}

.pricing-table td {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.staff-count {
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
    position: relative;
}

.popular-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 12px;
    margin-left: 10px;
}

.popular-row {
    background: linear-gradient(to right, rgba(201, 168, 96, 0.05), rgba(232, 223, 208, 0.05));
}

.highlight-col {
    background: linear-gradient(to bottom, rgba(201, 168, 96, 0.1), rgba(232, 223, 208, 0.05));
    font-weight: 700;
    color: #C9A860;
}

.pricing-notes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-medium);
}

.note-item i {
    color: var(--primary-color);
    font-size: 18px;
}

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

.pricing-message {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
}

/* ====================================
   Testimonials Section
==================================== */

.testimonials-section {
    padding: var(--section-padding) 0;
    background: white;
}

.testimonials-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    border-radius: 50%;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.doctor-icon {
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-medium);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-text strong {
    color: var(--primary-color);
}

.testimonial-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(201, 168, 96, 0.1), rgba(232, 223, 208, 0.1));
    color: #C9A860;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid #C9A860;
}

.badge-doctor {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.testimonial-doctor {
    border-color: var(--accent-color);
}

.testimonial-video {
    position: relative;
    background: linear-gradient(135deg, rgba(201, 168, 96, 0.05), rgba(232, 223, 208, 0.02));
}

.video-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.testimonials-summary {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.summary-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    background: linear-gradient(135deg, #C9A860, #D4B76E);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    color: white;
}

.summary-icon {
    font-size: 48px;
    opacity: 0.9;
}

.summary-content h4 {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 5px;
}

.summary-stat {
    font-size: 36px;
    font-weight: 900;
    font-family: var(--font-heading);
}

/* ====================================
   Profile Section
==================================== */

.profile-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.profile-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.profile-image-wrapper {
    position: sticky;
    top: 120px;
}

.profile-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 20px;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 120px;
}

.profile-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.profile-badge i {
    color: var(--primary-color);
    font-size: 20px;
}

.profile-info {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.profile-name-section {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 25px;
    margin-bottom: 35px;
}

.profile-name {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.profile-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.profile-subtitle {
    font-size: 16px;
    color: var(--text-medium);
}

.profile-detail-block {
    margin-bottom: 35px;
}

.profile-detail-block h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-detail-block h4 i {
    color: var(--primary-color);
}

.profile-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-list li {
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.profile-list li::before {
    content: '•';
    position: absolute;
    left: 12px;
    color: var(--primary-color);
    font-weight: 900;
}

.profile-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 40px;
}

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

.profile-timeline li {
    position: relative;
    padding-left: 0;
}

.profile-timeline li::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-year {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    color: white;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 8px;
}

.timeline-content {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.timeline-content small {
    display: block;
    font-size: 14px;
    color: var(--text-medium);
    margin-top: 5px;
}

.profile-highlights h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(201, 168, 96, 0.1), rgba(232, 223, 208, 0.05));
    transform: translateY(-3px);
}

.highlight-item i {
    font-size: 32px;
    color: #C9A860;
}

.highlight-item p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ====================================
   Flow Section
==================================== */

.flow-section {
    padding: var(--section-padding) 0;
    background: white;
}

.flow-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.flow-step {
    flex: 1;
    text-align: center;
    max-width: 220px;
}

.flow-number {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
}

.flow-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 3px solid #C9A860;
    border-radius: 50%;
    color: #C9A860;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(201, 168, 96, 0.2);
}

.flow-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.flow-step p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

.flow-arrow {
    font-size: 24px;
    color: #C9A860;
    margin: 0 20px;
}

/* ====================================
   Contact Section
==================================== */

.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.contact-method {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C9A860, #D4B76E);
    border-radius: 50%;
    color: white;
    font-size: 36px;
}

.contact-method h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-method p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.contact-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 600;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    width: 2px;
    height: 40px;
    background: var(--border-color);
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: #ef4444;
    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C9A860;
    box-shadow: 0 0 0 3px rgba(201, 168, 96, 0.1);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-dark);
}

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-info-item i {
    font-size: 24px;
    color: #C9A860;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--text-medium);
}

/* ====================================
   CTA Section
==================================== */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #C9A860, #D4B76E);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

/* ====================================
   Footer
==================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: #C9A860;
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: #C9A860;
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.footer-contact i {
    color: #C9A860;
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a:hover {
    opacity: 1;
    color: #C9A860;
}

/* ====================================
   Scroll to Top Button
==================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C9A860, #D4B76E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(201, 168, 96, 0.4);
}

/* ====================================
   Responsive Design
==================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 46px;
    }
    
    .mission-content,
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .profile-image-wrapper {
        position: static;
    }
    
    .flow-timeline {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .flow-arrow {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: var(--shadow-xl);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .mission-content,
    .challenges-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row,
    .contact-methods,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-divider {
        flex-direction: row;
    }
    
    .contact-divider::before,
    .contact-divider::after {
        width: 40px;
        height: 2px;
    }
    
    .pricing-table-wrapper {
        font-size: 14px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 15px 10px;
        font-size: 13px;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .service-card,
    .profile-info {
        padding: 30px 20px;
    }
}

/* ====================================
   Image Utilities
==================================== */

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

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-content { width: 60%; padding: 40px; }
    .profile-grid { grid-template-columns: 1fr; gap: 40px; }
    .profile-image-wrapper { position: static; }
    .pillars-grid { grid-template-columns: 1fr; }
    .data-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    
    .mission-content,
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .flow-timeline {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .flow-arrow {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    header { padding: 15px 20px; }
    header.scrolled { padding: 15px 20px; }
    
    .menu-toggle,
    .mobile-menu-btn { 
        display: flex; 
    }
    
    nav {
        position: fixed;
        top: 0; right: -100%;
        width: 70%; max-width: 300px;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        z-index: 100;
    }
    
    nav.active { right: 0; }
    nav a { font-size: 1.1rem; padding: 10px 0; }
    
    .nav-app-link {
        justify-content: center;
        padding: 12px 20px;
        margin: 10px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: var(--shadow-xl);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .section-padding { padding: 80px 0; }
    .section-title { font-size: 30px; }
    .section-description { font-size: 16px; }
    
    .hero { padding-top: 60px; }
    .hero-bg { left: 0; width: 100%; }
    .hero-content { width: 90%; margin: 0 auto; padding: 30px; }
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 18px; }
    .hero-cta { flex-direction: column; }
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gallery-grid { grid-template-columns: 1fr; }
    .data-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .case-card { padding: 25px; }
    .case-metrics { grid-template-columns: 1fr; gap: 15px; }
    .chart-wrapper { flex-direction: column; }
    
    .mission-content,
    .challenges-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row,
    .contact-methods,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-divider {
        flex-direction: row;
    }
    
    .contact-divider::before,
    .contact-divider::after {
        width: 40px;
        height: 2px;
    }
    
    .pricing-table-wrapper {
        font-size: 14px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 15px 10px;
        font-size: 13px;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .service-card,
    .profile-info {
        padding: 30px 20px;
    }
    .method-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #C9A860, #D4B76E);
        border-radius: 50%;
        color: white;
        font-size: 36px;
    }

}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
