/* ============================================================
   KG H2H – style.css
   Merged & deduplicated stylesheet (includes Post/Article Layouts)
   ============================================================ */

/* RESET & ROOT */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal: #4F46E5; --teal-dark: #312E81; --teal-light: #EEF2FF; --teal-mid: #6366F1;
  --amber: #7C3AED; --amber-light: #F5F3FF;
  --slate: #1E1B4B; --slate-mid: #3730A3;
  --muted: #6B7280; --soft: #F5F3FF; --white: #FFFFFF; --border: #E0E7FF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 14px; --radius-sm: 8px;
  --shadow: 0 2px 20px rgba(79,70,229,0.08);
  --shadow-md: 0 8px 32px rgba(79,70,229,0.14);
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--slate); background: var(--white); line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* LAYOUT */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--teal); z-index: 999; transition: width 0.1s; width: 0%; }

/* TYPOGRAPHY */
.tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); background: var(--teal-light); padding: 4px 14px; border-radius: 100px; margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; color: var(--slate); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.7; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 100px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; border: none; }
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(79,70,229,0.35); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: white; transform: translateY(-1px); }
.btn-white { background: white; color: var(--teal); }
.btn-white:hover { background: var(--teal-light); }
.wa-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: white; padding: 12px 16px; border-radius: 100px; font-size: 14px; font-weight: 600; transition: filter 0.2s; }
.wa-btn:hover { filter: brightness(1.1); }

/* TOP BAR */
.topbar { background: var(--teal-dark); color: #A7F3D0; font-size: 13px; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #A7F3D0; }
.topbar a:hover { color: white; }
.topbar-items { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 16px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: nowrap; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; line-height: 1; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--teal-dark); gap: 10px; }
.nav-logo img { height: 44px; width: auto; max-width: 160px; display: block; object-fit: contain; }
.nav-logo-dot { width: 10px; height: 10px; background: var(--teal-mid); border-radius: 50%; }
.nav-links { display: flex; gap: 4px; align-items: center; list-style: none; flex-wrap: nowrap; }
.nav-links a { padding: 8px 14px; border-radius: 100px; font-size: 14px; font-weight: 500; color: var(--muted); transition: all 0.18s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-light); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--slate); border-radius: 2px; transition: 0.2s; }
.mobile-menu { display: none; position: fixed; inset: 0; background: white; z-index: 200; padding: 24px; flex-direction: column; gap: 8px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-menu a { font-size: 18px; font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--slate); }
.mobile-menu .mobile-sub { font-size: 14px; color: var(--muted); padding: 8px 0 8px 16px; border-bottom: 1px solid var(--border); }
.close-btn { font-size: 28px; background: none; border: none; cursor: pointer; color: var(--slate); }

/* BREADCRUMB */
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.18s; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { margin: 0 6px; color: rgba(255,255,255,0.4); }

/* MAIN HERO */
.hero { background: linear-gradient(135deg, var(--teal-dark) 0%, #4F46E5 60%, #7C3AED 100%); color: white; padding: 72px 0 64px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 350px; height: 350px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 740px; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 100px; padding: 6px 16px; font-size: 13px; font-weight: 500; color: #C7D2FE; margin-bottom: 24px; }
.hero-badge-dot { width: 6px; height: 6px; background: #A5B4FC; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 52px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; color: white; }
.hero h1 em { font-style: normal; color: #C7D2FE; }
.hero-desc { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.82); margin-bottom: 32px; max-width: 600px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: white; }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,0.65); }
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.hero-card { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: center; gap: 16px; backdrop-filter: blur(8px); transition: transform 0.2s, background 0.2s; }
.hero-card:hover { transform: translateX(4px); background: rgba(255,255,255,0.16); }
.hero-card-icon { width: 46px; height: 46px; background: rgba(255,255,255,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.hero-card-text strong { font-size: 15px; font-weight: 600; color: white; display: block; margin-bottom: 2px; }
.hero-card-text span { font-size: 13px; color: rgba(255,255,255,0.65); }

/* HERO VARIANTS */
.hero.hero-dark { background: linear-gradient(135deg, #1a0a2e 0%, #2d1b5a 40%, #3b1f7a 100%); }
.hero.hero-dark .hero-badge { color: #DDD6FE; background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.22); }
.hero.hero-dark h1 em { color: #C4B5FD; }
.contact-strip.dark { background: linear-gradient(135deg, #1a0a2e, #3b1f7a); }

.hero.hero-teal { background: linear-gradient(135deg, #134e4a 0%, #0f766e 50%, #0d9488 100%); }
.hero.hero-teal .hero-badge { color: #CCFBF1; }
.hero.hero-teal h1 em { color: #99F6E4; }
.contact-strip.teal { background: linear-gradient(135deg, #134e4a, #0d9488); }

.hero.hero-blue { background: linear-gradient(135deg, #1E3A5F 0%, #1D4ED8 60%, #2563EB 100%); }
.hero.hero-blue .hero-badge { color: #BFDBFE; }
.hero.hero-blue h1 em { color: #93C5FD; }
.contact-strip.blue { background: linear-gradient(135deg, #1E3A5F, #1D4ED8); }

.hero.hero-green { background: linear-gradient(135deg, #064E3B 0%, #065F46 40%, #0F6E56 100%); }
.hero.hero-green .hero-badge { color: #A7F3D0; }
.hero.hero-green h1 em { color: #6EE7B7; }
.hero.hero-green + .contact-strip,
.contact-strip.green { background: linear-gradient(135deg, #064E3B, #0F6E56); }

/* BLOG INDEX HERO */
.blog-hero { background: linear-gradient(135deg, var(--teal-dark) 0%, #4F46E5 60%, #7C3AED 100%); padding: 64px 0; position: relative; overflow: hidden; }
.blog-hero::before { content:''; position:absolute; top:-80px; right:-80px; width:360px; height:360px; background:rgba(255,255,255,0.04); border-radius:50%; }
.blog-hero-inner { position: relative; z-index: 1; }
.blog-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: white; margin-bottom: 12px; }
.blog-hero p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 560px; }

/* SINGLE POST HERO */
.post-hero { background: linear-gradient(135deg, var(--teal-dark) 0%, #4F46E5 60%, #7C3AED 100%); padding: 64px 0 56px; position: relative; overflow: hidden; }
.post-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.post-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.post-category { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); border-radius: 100px; padding: 5px 14px; font-size: 12px; font-weight: 600; color: #C7D2FE; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.post-hero h1 { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 44px); font-weight: 700; line-height: 1.15; color: white; margin-bottom: 20px; }
.post-hero h1 em { font-style: normal; color: #C7D2FE; }
.post-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.post-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.65); }
.post-meta-item strong { color: rgba(255,255,255,0.9); font-weight: 600; }

/* POST / ARTICLE LAYOUT */
.article-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; padding: 64px 0 80px; }
.article-body { min-width: 0; }
.article-body p { font-size: 16px; line-height: 1.8; color: #374151; margin-bottom: 24px; }
.article-body h2 { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; color: var(--slate); line-height: 1.2; margin: 48px 0 16px; padding-top: 8px; border-top: 2px solid var(--border); }
.article-body h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.article-body h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--slate-mid); margin: 28px 0 10px; }
.article-body strong { color: var(--slate); font-weight: 600; }
.article-body em { font-style: italic; color: var(--muted); }

/* POST COMPONENTS */
.intro-callout { background: var(--teal-light); border-left: 4px solid var(--teal); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 20px 24px; margin-bottom: 36px; font-size: 16px; color: var(--slate-mid); line-height: 1.7; font-style: italic; }
.factor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 32px; }
.factor-card { background: var(--soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; }
.factor-num { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.factor-card h4 { font-size: 14px; font-weight: 700; color: var(--slate); margin-bottom: 6px; }
.factor-card p { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 0; }
.highlight-box { background: linear-gradient(135deg, var(--teal-dark), #4F46E5); border-radius: var(--radius); padding: 28px 32px; color: white; margin: 32px 0; }
.highlight-box h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; color: white; }
.highlight-box p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 0; }
.warning-box { background: #FFFBEB; border: 1px solid #FDE68A; border-left: 4px solid #F59E0B; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 22px; margin: 24px 0; }
.warning-box p { font-size: 14px; color: #78350F; line-height: 1.65; margin-bottom: 0; }
.warning-box strong { color: #92400E; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 16px 0 28px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: #374151; line-height: 1.6; }
.check-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; font-size: 14px; }
.toc { background: var(--soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 36px; }
.toc h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.toc ol { list-style: none; display: flex; flex-direction: column; gap: 8px; counter-reset: toc; }
.toc ol li { counter-increment: toc; display: flex; gap: 10px; align-items: baseline; }
.toc ol li::before { content: counter(toc); font-size: 11px; font-weight: 700; color: var(--teal); background: var(--teal-light); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toc ol li a { font-size: 14px; color: var(--slate-mid); transition: color 0.18s; line-height: 1.4; }
.toc ol li a:hover { color: var(--teal); }

/* SIDEBAR */
.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.sidebar-card h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--slate); margin-bottom: 10px; }
.sidebar-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.sidebar-cta { background: linear-gradient(135deg, var(--teal-dark), #4F46E5); border-radius: var(--radius); padding: 24px; color: white; }
.sidebar-cta h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: white; margin-bottom: 8px; }
.sidebar-cta p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 18px; }
.sidebar-cta .phone { font-size: 20px; font-weight: 700; color: white; display: block; margin-bottom: 14px; letter-spacing: 0.02em; }
.related-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.related-list li a { font-size: 14px; color: var(--slate-mid); display: flex; gap: 8px; align-items: flex-start; line-height: 1.4; transition: color 0.18s; }
.related-list li a:hover { color: var(--teal); }
.related-list li a::before { content: '→'; color: var(--teal); flex-shrink: 0; font-size: 13px; }

/* BYLINE */
.byline { display: flex; align-items: center; gap: 16px; padding: 24px; background: var(--soft); border-radius: var(--radius); border: 1px solid var(--border); margin-top: 48px; }
.byline-avatar { width: 52px; height: 52px; background: linear-gradient(135deg, var(--teal-dark), var(--teal)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.byline-name { font-size: 15px; font-weight: 700; color: var(--slate); margin-bottom: 2px; }
.byline-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* GRID COMPONENTS (ICU, Surgery, Care, Benefits, Conditions, Shifts) */
.alert-banner { background: #FEF2F2; border: 1px solid #FECACA; padding: 16px 24px; border-radius: var(--radius-sm); display: flex; gap: 12px; align-items: flex-start; margin-bottom: 32px; }
.alert-banner p { font-size: 14px; color: #991B1B; line-height: 1.5; }

.feature-grid, .care-grid, .benefits-grid, .conditions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.feature-card, .care-card, .benefit-card, .condition-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: all 0.2s; }
.feature-card:hover, .care-card:hover, .benefit-card:hover, .condition-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon, .care-icon, .benefit-icon, .condition-icon { font-size: 28px; margin-bottom: 12px; }
.feature-card h3, .care-card h3, .benefit-card h3, .condition-card h3 { font-size: 16px; font-weight: 600; color: var(--slate); margin-bottom: 8px; }
.feature-card p, .care-card p, .benefit-card p, .condition-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.surgery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.surgery-pill { background: white; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 16px; text-align: center; transition: all 0.18s; }
.surgery-pill:hover { border-color: var(--teal); background: var(--teal-light); }
.surgery-pill .sicon { font-size: 24px; margin-bottom: 8px; }
.surgery-pill p { font-size: 13px; font-weight: 600; color: var(--slate); line-height: 1.3; }

.shift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.shift-card { border-radius: var(--radius); padding: 28px 24px; text-align: center; }
.shift-card.day { background: #EEF2FF; border: 2px solid #C7D2FE; }
.shift-card.night { background: #1E1B4B; color: white; }
.shift-card.full { background: linear-gradient(135deg, #312E81, #4F46E5); color: white; }
.shift-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.shift-card p { font-size: 14px; opacity: 0.8; margin-bottom: 16px; }
.shift-card .price { font-size: 13px; font-weight: 600; background: rgba(255,255,255,0.15); padding: 4px 14px; border-radius: 100px; display: inline-block; }
.shift-card.day .price { background: rgba(79,70,229,0.12); color: var(--teal-dark); }

/* SHIFT COMPARISON TABLE */
.shift-table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.shift-table thead tr { background: var(--teal-dark); color: white; }
.shift-table thead th { padding: 14px 16px; text-align: left; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; }
.shift-table tbody tr { border-bottom: 1px solid var(--border); }
.shift-table tbody tr:last-child { border-bottom: none; }
.shift-table tbody tr:nth-child(even) { background: var(--soft); }
.shift-table tbody td { padding: 13px 16px; font-size: 14px; color: var(--slate-mid); vertical-align: top; line-height: 1.5; }
.shift-table tbody td:first-child { font-weight: 600; color: var(--slate); }

/* LIST COMPONENTS */
.indicator-list, .when-list, .checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.indicator-list li, .when-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.indicator-list li .ind-icon, .when-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.indicator-list li div strong, .when-list li div strong { display: block; font-size: 15px; color: var(--slate); margin-bottom: 3px; font-weight: 600; }
.indicator-list li div span, .when-list li div span { font-size: 14px; color: var(--muted); line-height: 1.5; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--slate-mid); }
.checklist li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* TIMELINE */
.timeline, .steps { display: flex; flex-direction: column; gap: 0; }
.timeline-item, .step { display: flex; gap: 20px; position: relative; }
.timeline-item:not(:last-child) .tline { position: absolute; left: 19px; top: 44px; width: 2px; height: calc(100% - 8px); background: var(--border); }
.step:not(:last-child) .step-line { position: absolute; left: 19px; top: 44px; width: 2px; height: calc(100% - 8px); background: rgba(255,255,255,0.15); }
.tnum { width: 40px; height: 40px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; color: white; margin-bottom: 28px; }
.step-num { width: 40px; height: 40px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; color: #C7D2FE; margin-bottom: 24px; }
.timeline-item div strong { display: block; font-size: 15px; color: var(--slate); margin-bottom: 4px; }
.step-text strong { display: block; font-size: 15px; font-weight: 600; color: white; margin-bottom: 3px; }
.timeline-item div span, .step-text span { font-size: 14px; color: var(--muted); line-height: 1.55; }
.step-text span { color: rgba(255,255,255,0.65); }

/* ABOUT & WHY US */
.about-grid, .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-grid { gap: 64px; }
.about-visual { position: relative; }
.about-main-card { background: linear-gradient(135deg, var(--teal-dark) 0%, #4F46E5 100%); border-radius: 24px; padding: 40px; color: white; position: relative; overflow: hidden; }
.about-main-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; background: rgba(255,255,255,0.06); border-radius: 50%; }
.about-main-card blockquote { font-family: var(--font-display); font-size: 22px; font-weight: 400; line-height: 1.5; margin-bottom: 20px; color: white; font-style: italic; }
.about-main-card cite { font-size: 14px; color: rgba(255,255,255,0.6); font-style: normal; }
.about-float-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-md); position: absolute; right: -28px; bottom: -28px; min-width: 200px; }
.about-float-stat { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--teal); line-height: 1; }
.about-float-label { font-size: 13px; color: var(--muted); margin-top: 4px; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.pill { background: var(--teal-light); color: var(--teal-dark); font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 100px; }
.about-points { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.about-points li { display: flex; gap: 14px; align-items: flex-start; }
.about-check { width: 22px; height: 22px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; color: var(--teal); font-size: 12px; font-weight: 700; }
.about-points li span { font-size: 15px; color: var(--slate-mid); line-height: 1.5; }

.why-cards { display: flex; flex-direction: column; gap: 16px; }
.why-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start; transition: border-color 0.2s, box-shadow 0.2s; }
.why-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.why-icon { width: 48px; height: 48px; background: var(--teal-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.why-card h3 { font-size: 16px; font-weight: 600; color: var(--slate); margin-bottom: 4px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.why-visual { background: linear-gradient(135deg, var(--teal-dark) 0%, #4F46E5 100%); border-radius: 24px; padding: 40px; color: white; }
.why-visual h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 12px; color: white; }
.why-visual p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 28px; }

/* TRUST BAR & QUICK ACTIONS */
.trust-bar { background: var(--soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--teal); }
.trust-item span { font-size: 13px; color: var(--muted); font-weight: 500; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.quick-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: all 0.2s; cursor: pointer; position: relative; overflow: hidden; }
.quick-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transition: transform 0.2s; }
.quick-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.quick-card:hover::before { transform: scaleX(1); }
.quick-icon { font-size: 32px; margin-bottom: 12px; }
.quick-card h3 { font-size: 15px; font-weight: 600; color: var(--slate); margin-bottom: 4px; }
.quick-card p { font-size: 13px; color: var(--muted); }

/* SERVICES & BLOG GRIDS */
.services-bg { background: var(--soft); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.service-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; transition: all 0.22s; position: relative; overflow: hidden; }
.service-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-icon { font-size: 36px; margin-bottom: 14px; }
.service-card h3 { font-size: 16px; font-weight: 600; color: var(--slate); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.service-link { font-size: 13px; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 4px; }
.service-link:hover { text-decoration: underline; }

.blog-section { padding: 72px 0 88px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.post-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.22s; display: flex; flex-direction: column; }
.post-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.post-card-header { background: linear-gradient(135deg, var(--teal-dark), #4F46E5); padding: 28px 24px 24px; position: relative; }
.post-card-cat { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.15); border-radius: 100px; padding: 4px 12px; font-size: 11px; font-weight: 600; color: #C7D2FE; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.post-card-icon { font-size: 36px; margin-bottom: 12px; }
.post-card-header h2 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: white; line-height: 1.3; }
.post-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card-meta { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.post-card-meta span { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.post-card-body p { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.post-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--teal); transition: gap 0.18s; }
.post-card:hover .post-card-link { gap: 10px; }
.post-card-soon { opacity: 0.65; }
.post-card-soon .post-card-header { background: linear-gradient(135deg, #374151, #4B5563); }
.soon-badge { display: inline-block; background: #FEF3C7; color: #92400E; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; margin-top: 10px; }

/* SERVICE INNER PAGES */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.content-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.info-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.info-card-icon { font-size: 32px; margin-bottom: 14px; }
.info-card h3 { font-size: 17px; font-weight: 600; color: var(--slate); margin-bottom: 10px; }
.info-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 36px; }
.area-pill { background: white; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 14px; font-weight: 500; color: var(--slate-mid); transition: all 0.18s; text-align: center; }
.area-pill:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

/* TESTIMONIALS */
.testimonials-bg { background: var(--soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.review-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; }
.review-stars { color: #F59E0B; font-size: 15px; margin-bottom: 14px; }
.review-card blockquote { font-size: 15px; line-height: 1.7; color: var(--slate-mid); font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--teal-dark); flex-shrink: 0; }
.reviewer-name { font-size: 14px; font-weight: 600; color: var(--slate); }
.reviewer-date { font-size: 12px; color: var(--muted); }
.review-badge { position: absolute; top: 20px; right: 20px; background: #FEF3C7; color: #92400E; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.faq-section { margin-top: 48px; border-top: 2px solid var(--border); padding-top: 40px; }
.faq-section h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--slate); margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.faq-section .faq-list { margin-top: 0; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-section .faq-item { background: var(--soft); }
.faq-q { width: 100%; background: none; border: none; padding: 18px 24px; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--slate); text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q:hover { color: var(--teal); }
.faq-arrow { font-size: 18px; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; padding: 0 24px; font-size: 14px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--slate); margin-bottom: 16px; line-height: 1.2; }
.contact-info p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--soft); border-radius: var(--radius-sm); border: 1px solid var(--border); transition: border-color 0.2s; }
.contact-method:hover { border-color: var(--teal); }
.contact-method-icon { font-size: 20px; }
.contact-method-label { font-size: 12px; color: var(--muted); font-weight: 500; margin-bottom: 2px; }
.contact-method-val { font-size: 15px; font-weight: 600; color: var(--slate); }
.contact-method-val a { color: var(--teal); }
.contact-method-val a:hover { text-decoration: underline; }
.contact-form { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 24px; color: var(--slate); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; color: var(--slate); background: var(--soft); transition: border-color 0.2s, box-shadow 0.2s; appearance: auto; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(79,70,229,0.10); background: white; }
.form-group textarea { height: 100px; resize: vertical; }
.form-submit { width: 100%; padding: 15px; border-radius: 100px; border: none; background: var(--teal); color: white; font-family: var(--font-body); font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s; margin-top: 6px; }
.form-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* CTA BANNERS */
.cta-banner, .contact-strip, .blog-cta, .bottom-cta { background: linear-gradient(135deg, var(--teal-dark), #7C3AED); padding: 64px 0; text-align: center; color: white; }
.blog-cta { background: var(--soft); border-top: 1px solid var(--border); padding: 56px 0; text-align: center; color: var(--slate); }
.cta-banner h2, .contact-strip h2, .bottom-cta h2 { font-family: var(--font-display); font-size: clamp(24px, 3.5vw, 42px); font-weight: 700; margin-bottom: 14px; color: white; }
.blog-cta h2 { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; color: var(--slate); margin-bottom: 10px; }
.cta-banner p, .contact-strip p, .bottom-cta p { font-size: 16px; color: rgba(255,255,255,0.80); margin-bottom: 28px; }
.blog-cta p { font-size: 16px; color: var(--muted); margin-bottom: 24px; }
.cta-banner .btns, .contact-strip .btns, .bottom-cta .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: var(--slate); color: rgba(255,255,255,0.70); padding: 52px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: white; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.18s; }
.footer-col ul li a:hover { color: #C7D2FE; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 13px; }
.footer-wa { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: white; padding: 10px 20px; border-radius: 100px; font-size: 14px; font-weight: 600; transition: filter 0.2s; }
.footer-wa:hover { filter: brightness(1.1); }

/* FLOATING CTA */
.float-cta { position: fixed; bottom: 28px; right: 28px; z-index: 99; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 100px; font-size: 14px; font-weight: 700; box-shadow: 0 4px 20px rgba(0,0,0,0.20); transition: transform 0.2s; cursor: pointer; border: none; color: white; }
.float-btn:hover { transform: scale(1.04); }
.float-call { background: var(--teal); }
.float-wa { background: #25D366; }

/* RESPONSIVE – Tablet (≤900px) */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo img { height: 36px; max-width: 130px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: grid; grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-float-card { right: 0; bottom: -20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .surgery-grid { grid-template-columns: repeat(2, 1fr); }
  .care-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .conditions-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 36px; }
  .content-grid-3 { grid-template-columns: 1fr 1fr; }
  .shift-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .article-wrap { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; }
  .factor-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-cta { bottom: 20px; right: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
}

/* RESPONSIVE – Mobile (≤520px) */
@media (max-width: 520px) {
  .nav-logo img { height: 30px; max-width: 110px; }
  .hero-visual { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .content-grid-3 { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .post-meta { gap: 12px; }
  .shift-table { font-size: 13px; }
  .shift-table thead th, .shift-table tbody td { padding: 10px 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}