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

:root {
    --primary: #0369a1;
    --primary-dark: #0c4a6e;
    --primary-light: #e0f2fe;
    --primary-50: #f0f9ff;
    --accent: #0d9488;
    --accent-light: #ccfbf1;
    --navy: #0f172a;
    --navy-800: #1e293b;
    --navy-700: #334155;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --teal: #0d9488;
    --rose: #e11d48;
    --purple: #7c3aed;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--navy-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gradient { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gradient-light { background: linear-gradient(135deg, #7dd3fc, #5eead4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Nav */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.92); backdrop-filter: blur(24px); border-bottom: 1px solid rgba(0,0,0,0.05); transition: all 0.3s var(--ease); }
.navbar.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.navbar.scrolled .nav-container { height: 64px; }
.navbar.scrolled .logo-img { height: 42px; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 80px; display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 36px; height: 36px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-mark svg { width: 20px; height: 20px; }
.logo-mark-light { background: linear-gradient(135deg, #38bdf8, #2dd4bf); }
.logo-words { display: flex; flex-direction: column; }
.logo-text { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; color: var(--navy); line-height: 1.1; }
.logo-sub { font-size: 10px; font-weight: 500; color: var(--gray-500); letter-spacing: 0.04em; text-transform: uppercase; }

.logo-img { height: 52px; width: auto; transition: all 0.3s var(--ease); }
.logo-img-footer { height: 36px; filter: brightness(0) invert(1); opacity: 0.9; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link { padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--navy-700); text-decoration: none; border-radius: 8px; transition: all 0.2s var(--ease); }
.nav-link:hover { background: var(--gray-100); color: var(--primary); }
.nav-link-cta { background: var(--primary); color: var(--white) !important; margin-left: 8px; padding: 8px 18px; }
.nav-link-cta:hover { background: var(--primary-dark) !important; }
.nav-link-login { display: inline-flex; align-items: center; gap: 6px; margin-left: 4px; padding: 8px 16px; border: 1px solid var(--gray-200); border-radius: 8px; color: var(--navy-700) !important; font-size: 13px; }
.nav-link-login:hover { background: var(--gray-50) !important; border-color: var(--primary-light); color: var(--primary) !important; }
.nav-link-login svg { flex-shrink: 0; }
.mobile-link-login { color: var(--primary) !important; font-weight: 600; border: none !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy-700); border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; padding: 8px 24px 16px; border-top: 1px solid var(--gray-200); }
.mobile-link { padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--navy-700); text-decoration: none; border-bottom: 1px solid var(--gray-100); }
.mobile-link-cta { color: var(--primary); font-weight: 600; border: none; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: flex; }
}

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

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(145deg, var(--navy) 0%, #0c4a6e 45%, #0e7490 100%); }
.hero-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 40px 40px; }
.hero-pulse { position: absolute; bottom: 20%; left: 0; right: 0; opacity: 0.5; }
.hero-pulse svg { width: 100%; height: 120px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero-orb-1 { width: 500px; height: 500px; background: rgba(13, 148, 136, 0.15); top: -10%; right: -5%; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(56, 189, 248, 0.1); bottom: 5%; left: 10%; }

.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }

.hero-logo { margin-bottom: 16px; }
.hero-logo-img { height: 120px; width: auto; filter: brightness(0) invert(1); }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); color: #7dd3fc; border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.hero-badge svg { flex-shrink: 0; }

.hero h1 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 14px; }
.hero-highlight { color: #5eead4; -webkit-text-fill-color: #5eead4; }
.hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 500px; line-height: 1.7; margin-bottom: 24px; }

.hero-actions { display: flex; align-items: center; gap: 16px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: linear-gradient(135deg, var(--accent), #14b8a6); color: var(--white); font-size: 14px; font-weight: 600; border-radius: var(--radius-sm); text-decoration: none; transition: all 0.3s var(--ease); box-shadow: 0 4px 20px rgba(13,148,136,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(13,148,136,0.45); }
.btn-ghost { padding: 14px 24px; color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.2s var(--ease); }
.btn-ghost:hover { color: var(--white); }

.hero-right { display: flex; flex-direction: column; gap: 14px; }
.hero-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 20px; transition: all 0.3s var(--ease); }
.hero-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.15); }
.hero-card-main { display: flex; align-items: center; gap: 16px; }
.hcard-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hcard-icon svg { width: 24px; height: 24px; }
.hcard-icon-blue { background: rgba(56,189,248,0.2); color: #7dd3fc; }
.hcard-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.hcard-value { font-size: 16px; font-weight: 700; color: var(--white); }
.hero-card-stat { display: flex; align-items: center; gap: 16px; }
.hcard-big { font-size: 36px; font-weight: 900; color: #5eead4; letter-spacing: -0.03em; }
.hcard-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4; }
.metric-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.metric-fill { height: 100%; background: linear-gradient(90deg, #5eead4, #38bdf8); border-radius: 10px; }

@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-right { display: none; }
}

/* Services */
.services { padding: 100px 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; padding: 5px 14px; background: var(--primary-light); color: var(--primary); border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.section-tag-light { background: rgba(255,255,255,0.1); color: #7dd3fc; border: 1px solid rgba(255,255,255,0.1); }
.section-header h2 { font-size: 36px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 12px; }
.section-header p { font-size: 16px; color: var(--gray-500); max-width: 500px; margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { position: relative; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px 24px; transition: all 0.3s var(--ease); overflow: hidden; }
.service-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.scard-number { font-size: 48px; font-weight: 900; color: rgba(3,105,161,0.06); position: absolute; top: 12px; right: 16px; line-height: 1; }
.scard-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.scard-icon svg { width: 24px; height: 24px; }
.scard-icon-blue { background: linear-gradient(135deg, #bae6fd, #e0f2fe); color: var(--primary); }
.scard-icon-teal { background: linear-gradient(135deg, #99f6e4, #ccfbf1); color: var(--teal); }
.scard-icon-purple { background: linear-gradient(135deg, #ddd6fe, #ede9fe); color: var(--purple); }
.scard-icon-rose { background: linear-gradient(135deg, #fecdd3, #ffe4e6); color: var(--rose); }

.service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.scard-tag { display: inline-block; margin-top: 14px; padding: 4px 12px; background: var(--accent-light); color: var(--accent); border-radius: 50px; font-size: 11px; font-weight: 700; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } .service-card-lg { grid-column: span 1; } }

/* About */
.about { padding: 100px 0; background: var(--white); }
.about-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.about-left h2 { font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 20px; line-height: 1.25; }
.about-lead { font-size: 16px; color: var(--navy-700); line-height: 1.8; margin-bottom: 16px; font-weight: 500; }
.about-left > p { font-size: 14px; color: var(--gray-500); line-height: 1.8; margin-bottom: 28px; }

.about-values { display: flex; gap: 24px; }
.about-value { display: flex; align-items: center; gap: 12px; }
.about-value-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-value-icon svg { width: 20px; height: 20px; }
.about-value strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.about-value span { font-size: 12px; color: var(--gray-500); }

.about-right { display: flex; flex-direction: column; gap: 14px; }
.about-card { padding: 22px; border-radius: var(--radius); border: 1px solid var(--gray-200); background: var(--gray-50); transition: all 0.3s var(--ease); }
.about-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.about-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.about-card-header svg { width: 22px; height: 22px; color: var(--primary); }
.about-card-header h4 { font-size: 15px; font-weight: 700; color: var(--navy); }
.about-card p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

.about-card-mission { border-left: 3px solid var(--primary); }
.about-card-vision { border-left: 3px solid var(--accent); }
.about-card-values { border-left: 3px solid var(--purple); }

@media (max-width: 900px) { .about-layout { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 540px) { .about-values { flex-direction: column; gap: 16px; } }

/* Numbers */
.numbers { padding: 60px 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.number-item { text-align: center; }
.number-value { display: block; font-size: 42px; font-weight: 900; color: var(--white); letter-spacing: -0.03em; margin-bottom: 6px; }
.number-label { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }

@media (max-width: 768px) { .numbers-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 480px) { .numbers-grid { grid-template-columns: 1fr; } }

/* Differentials */
.differentials { padding: 100px 0; background: linear-gradient(160deg, var(--navy) 0%, #0c4a6e 60%, #0e7490 100%); }
.diff-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.diff-left h2 { font-size: 36px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.2; }
.diff-left p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; }

.diff-stats { display: flex; gap: 28px; }
.diff-stat { text-align: center; }
.diff-stat-number { display: block; font-size: 32px; font-weight: 900; color: #5eead4; letter-spacing: -0.02em; }
.diff-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.4; }

.diff-right { display: flex; flex-direction: column; gap: 12px; }
.diff-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); transition: all 0.3s var(--ease); }
.diff-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
.diff-card-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(94,234,212,0.15); color: #5eead4; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.diff-card-icon svg { width: 22px; height: 22px; }
.diff-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.diff-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

@media (max-width: 768px) { .diff-layout { grid-template-columns: 1fr; gap: 40px; } .diff-stats { justify-content: center; } }

/* Home Care Detail */
.homecare-detail { padding: 100px 0; background: var(--gray-50); }

.hc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.hc-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px 24px; transition: all 0.3s var(--ease); }
.hc-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.hc-card-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.hc-card-icon svg { width: 24px; height: 24px; }
.hc-icon-blue { background: linear-gradient(135deg, #bae6fd, #e0f2fe); color: var(--primary); }
.hc-icon-teal { background: linear-gradient(135deg, #99f6e4, #ccfbf1); color: var(--teal); }
.hc-icon-purple { background: linear-gradient(135deg, #ddd6fe, #ede9fe); color: var(--purple); }
.hc-icon-rose { background: linear-gradient(135deg, #fecdd3, #ffe4e6); color: var(--rose); }
.hc-icon-amber { background: linear-gradient(135deg, #fde68a, #fef3c7); color: #d97706; }
.hc-icon-indigo { background: linear-gradient(135deg, #c7d2fe, #e0e7ff); color: #4f46e5; }
.hc-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.hc-card p { font-size: 13px; color: var(--gray-500); line-height: 1.75; }

.hc-highlight { display: flex; align-items: center; gap: 20px; padding: 28px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius); color: var(--white); }
.hc-highlight-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hc-highlight-icon svg { width: 28px; height: 28px; color: var(--white); }
.hc-highlight h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.hc-highlight p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; }

@media (max-width: 900px) { .hc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .hc-grid { grid-template-columns: 1fr; } .hc-highlight { flex-direction: column; text-align: center; } }

/* How it Works */
.how-it-works { padding: 100px 0; background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step-card { position: relative; text-align: center; padding: 0 24px; }
.step-number { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 1; }
.step-connector { position: absolute; top: 26px; left: calc(50% + 26px); right: calc(-50% + 26px); height: 2px; background: var(--gray-200); z-index: 0; }
.step-card:last-child .step-connector { display: none; }
.step-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .step-connector { display: none; }
}
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

/* CTA Banner */
.cta-banner { padding: 80px 0; background: linear-gradient(160deg, var(--navy) 0%, #0c4a6e 60%, #0e7490 100%); }
.cta-content { text-align: center; max-width: 650px; margin: 0 auto; }
.cta-content h2 { font-size: 32px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-content > p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 32px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 24px; }
.btn-primary-lg { padding: 16px 32px; font-size: 15px; }
.cta-contact-info { display: flex; align-items: center; gap: 8px; }
.cta-contact-info span { font-size: 13px; color: rgba(255,255,255,0.5); }
.cta-phone { font-size: 16px; font-weight: 700; color: #5eead4; text-decoration: none; }
.cta-phone:hover { color: #99f6e4; }

@media (max-width: 540px) { .cta-actions { flex-direction: column; gap: 16px; } }

/* Map */
.presence { padding: 100px 0; background: var(--gray-50); }
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); background: var(--white); }
.map-container { width: 100%; height: 500px; }
.map-legend { display: flex; gap: 24px; padding: 14px 24px; border-top: 1px solid var(--gray-200); }
.legend-entry { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--navy-700); font-weight: 500; }
.legend-marker { width: 14px; height: 14px; border-radius: 50%; }
.legend-marker-hq { background: var(--primary); box-shadow: 0 0 0 3px rgba(3,105,161,0.2); }
.legend-marker-patient { background: var(--accent); box-shadow: 0 0 0 3px rgba(13,148,136,0.2); }

:global(.marker-pin) { width: 30px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
:global(.marker-pin span) { transform: rotate(45deg); font-weight: 800; font-size: 16px; }
:global(.marker-pin-hq) { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); box-shadow: 0 3px 12px rgba(3,105,161,0.4); }
:global(.marker-pin-patient) { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 3px solid var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.2); transform: none; }
:global(.leaflet-popup-content-wrapper) { border-radius: 12px !important; box-shadow: var(--shadow-md) !important; font-family: 'Inter', sans-serif !important; }
:global(.leaflet-popup-content) { margin: 10px 14px !important; font-size: 13px !important; line-height: 1.5 !important; }

/* Testimonials */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
    background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius);
    padding: 28px; transition: all 0.3s var(--ease);
}
.testimonial-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--navy-700); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--navy); }
.testimonial-author span { font-size: 12px; color: var(--gray-500); }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* Contact */
.contact { padding: 100px 0; background: var(--white); }
.contact-form-center {
    max-width: 700px; margin: 0 auto;
    background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 36px;
}
.form-row-3 { grid-template-columns: 1fr 80px 1fr; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--navy-700); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-input { width: 100%; padding: 12px 16px; font-size: 14px; font-family: inherit; color: var(--navy-800); background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); transition: all 0.2s var(--ease); outline: none; }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(3,105,161,0.1); }
.form-textarea { resize: vertical; min-height: 100px; }

.btn-submit { width: 100%; padding: 14px; font-size: 14px; font-weight: 600; font-family: inherit; color: var(--white); background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border: none; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.3s var(--ease); display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 4px 14px rgba(3,105,161,0.25); }
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(3,105,161,0.35); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success { margin-top: 14px; padding: 12px 16px; background: var(--accent-light); color: #065f46; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; text-align: center; }

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

/* Footer */
.footer { padding: 60px 0 0; background: var(--navy); color: var(--gray-400); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4 { font-size: 11px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.footer-links a, .footer-links span { font-size: 14px; color: var(--gray-400); text-decoration: none; transition: all 0.2s var(--ease); }
.footer-links a:hover { color: #5eead4; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 12px; color: var(--gray-500); }

@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } .hero-actions { flex-direction: column; align-items: flex-start; } }

/* Login Page */
.login-page { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }

.login-left { background: linear-gradient(160deg, var(--navy) 0%, #0c4a6e 60%, #0e7490 100%); padding: 48px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.login-left::before { content: ''; position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 40px 40px; }
.login-left-content { position: relative; z-index: 1; max-width: 440px; }

.login-back { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 500; text-decoration: none; margin-bottom: 40px; transition: color 0.2s; }
.login-back:hover { color: rgba(255,255,255,0.8); }

.login-brand { margin-bottom: 32px; }
.login-logo-img { height: 56px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }

.login-left h1 { font-size: 32px; font-weight: 800; color: var(--white); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px; }
.login-left h1 span { color: #5eead4; }
.login-left > .login-left-content > p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; }

.login-features { display: flex; flex-direction: column; gap: 14px; }
.login-feature { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-size: 14px; }
.login-feature svg { color: #5eead4; flex-shrink: 0; }

.login-right { display: flex; align-items: center; justify-content: center; padding: 48px; background: var(--white); }
.login-form-wrapper { width: 100%; max-width: 400px; }
.login-form-wrapper h2 { font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 6px; }
.login-form-subtitle { font-size: 14px; color: var(--gray-500); margin-bottom: 32px; }

.login-form-group { margin-bottom: 20px; }
.login-form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--navy-700); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.login-label-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.login-label-row label { margin-bottom: 0; }
.login-forgot { font-size: 12px; color: var(--primary); text-decoration: none; font-weight: 500; }
.login-forgot:hover { text-decoration: underline; }

.login-input-wrapper { position: relative; }
.login-input-wrapper svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray-400); pointer-events: none; }
.login-input { width: 100%; padding: 12px 16px 12px 42px; font-size: 14px; font-family: inherit; color: var(--navy-800); background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); transition: all 0.2s var(--ease); outline: none; }
.login-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(3,105,161,0.1); background: var(--white); }
.login-input::placeholder { color: var(--gray-400); }

.login-error { padding: 10px 14px; background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; border-radius: var(--radius-sm); font-size: 13px; margin-bottom: 16px; }

.login-btn { width: 100%; padding: 14px; font-size: 14px; font-weight: 600; font-family: inherit; color: var(--white); background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border: none; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.3s var(--ease); display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 4px 14px rgba(3,105,161,0.25); }
.login-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(3,105,161,0.35); }
.login-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.login-spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--white); border-radius: 50%; animation: spin 0.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.login-footer-text { margin-top: 24px; text-align: center; font-size: 13px; color: var(--gray-500); }
.login-footer-text a { color: var(--primary); text-decoration: none; font-weight: 500; margin-left: 4px; }
.login-footer-text a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .login-page { grid-template-columns: 1fr; }
    .login-left { display: none; }
    .login-right { padding: 32px 24px; min-height: 100vh; }
}
