/* ============================================================
   EN BOY HALI YIKAMA — Anadolu Yakası
   Palet: Turkuaz #1FA9B8 · Krem #FAF6EE · Lacivert #0B3B4A · Altın #D4AF37
   ============================================================ */
:root {
  --bg: #FAF6EE;
  --bg-2: #FFFFFF;
  --bg-3: #F2EBDD;
  --surface: #FFFFFF;
  --ink: #0F1F25;
  --ink-2: #324B55;
  --muted: #6B7B85;
  --line: rgba(11,59,74,0.10);
  --line-strong: rgba(11,59,74,0.20);
  --teal: #1FA9B8;
  --teal-d: #168291;
  --teal-l: #4FC3D2;
  --teal-soft: rgba(31,169,184,0.10);
  --navy: #0B3B4A;
  --navy-d: #062A35;
  --gold: #D4AF37;
  --gold-d: #A6841C;
  --green: #16A34A;
  --red: #DC2626;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 14px 40px rgba(11,59,74,0.10);
  --shadow-lg: 0 26px 70px rgba(11,59,74,0.18);
  --shadow-teal: 0 12px 30px rgba(31,169,184,0.32);
  --font-h: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-b: 'Inter', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-b); color: var(--ink); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s; }
a:hover { color: var(--teal); }
h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 700; color: var(--navy); line-height: 1.12; letter-spacing: -0.015em; }
h1 { font-size: clamp(38px, 6vw, 68px); letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 4.2vw, 44px); }
h3 { font-size: clamp(20px, 2.4vw, 24px); }
p { color: var(--ink-2); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* TOPBAR */
.topbar { background: linear-gradient(90deg, var(--navy-d) 0%, var(--navy) 100%); padding: 8px 0; font-size: 13px; color: #fff; }
.topbar .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: center; }
.topbar-247 { color: #fff; font-weight: 600; letter-spacing: 0.06em; display: inline-flex; align-items: center; gap: 8px; }
.topbar-247::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: blink 1.5s infinite; }
@keyframes blink { 50% { opacity: 0.35; } }
.topbar a { color: #fff; display: inline-flex; gap: 6px; align-items: center; font-weight: 600; }
.topbar a:hover { color: var(--gold); }
.topbar-actions { display: flex; gap: 16px; align-items: center; }

/* HEADER */
.header { background: rgba(255,255,255,0.97); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 90; backdrop-filter: blur(10px); }
.header-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-svg { width: 58px; height: 58px; transition: transform .35s; }
.logo:hover .logo-svg { transform: rotate(-6deg) scale(1.06); }
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.logo-title { font-family: var(--font-h); font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: 0.02em; }
.logo-sub { font-size: 10.5px; color: var(--teal-d); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.main-nav { display: flex; gap: 26px; }
.main-nav a { font-weight: 600; font-size: 14px; color: var(--ink-2); letter-spacing: 0.02em; padding: 6px 0; position: relative; }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a:hover, .main-nav a.is-active { color: var(--navy); }
.menu-toggle { display: none; background: none; border: none; color: var(--navy); cursor: pointer; padding: 8px; }
@media (max-width: 1100px) { .main-nav { display: none; } .menu-toggle { display: block; } .header-cta .btn-secondary { display: none; } }
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(255,255,255,0.98); z-index: 100; padding: 90px 24px 24px; overflow-y: auto; }
.mobile-menu.is-open { display: block; }
.mobile-menu a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 19px; font-weight: 600; }
.mobile-menu-close { position: absolute; top: 24px; right: 24px; color: var(--navy); background: none; border: none; cursor: pointer; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 14px; letter-spacing: 0.04em; border: none; cursor: pointer; transition: all .25s; text-transform: uppercase; }
.btn-primary { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%); color: #fff; box-shadow: var(--shadow-teal); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(31,169,184,0.5); color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ABC54; color: #fff; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-d); color: #fff; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-d) 100%); color: var(--navy); }
.btn-gold:hover { transform: translateY(-2px); color: var(--navy); }
.btn-lg { padding: 18px 36px; font-size: 15px; }

/* HERO */
.hero { position: relative; background: linear-gradient(135deg, var(--bg) 0%, var(--bg-3) 100%); padding: 90px 0 80px; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 700px; height: 700px; background: radial-gradient(circle, var(--teal-soft) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -20%; left: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,175,55,0.10) 0%, transparent 70%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 980px) { .hero .container { grid-template-columns: 1fr; gap: 40px; } }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(31,169,184,0.12); border: 1px solid rgba(31,169,184,0.30); padding: 8px 18px; border-radius: 6px; font-size: 12px; font-weight: 700; color: var(--teal-d); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 24px; }
.hero-eyebrow-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 0 0 rgba(31,169,184,.6); animation: pulse 1.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(31,169,184,.6); } 70% { box-shadow: 0 0 0 12px rgba(31,169,184,0); } }
.hero-title { color: var(--navy); margin-bottom: 22px; }
.hero-title em { color: var(--teal); font-style: normal; display: block; font-size: 0.78em; }
.hero-desc { font-size: 19px; line-height: 1.6; color: var(--ink-2); max-width: 560px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; font-size: 13px; color: var(--ink-2); }
.hero-trust strong { color: var(--navy); font-weight: 700; }
.hero-visual { position: relative; }
.hero-photo { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-deco { position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(212,175,55,0.4); border-radius: var(--radius-lg); pointer-events: none; }
.hero-photo::after { content: ''; position: absolute; right: -22px; bottom: -22px; width: 140px; height: 140px; background: var(--teal); border-radius: 50%; opacity: 0.18; z-index: -1; }
.hero-mini-badge { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line-strong); padding: 10px 16px 10px 12px; border-radius: 12px; margin-bottom: 18px; box-shadow: var(--shadow); max-width: 360px; }
.hero-mini-badge svg { flex-shrink: 0; }
.hero-mini-badge strong { display: block; font-family: var(--font-h); font-size: 14px; color: var(--navy); letter-spacing: 0.02em; }
.hero-mini-badge span { display: block; font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* PROCESS STRIP */
.process-strip { background: var(--navy); padding: 36px 0; color: #fff; position: relative; overflow: hidden; }
.process-strip::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent 0 22px, rgba(212,175,55,0.06) 22px 23px); }
.process-strip .container { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 768px) { .process-strip .container { grid-template-columns: 1fr; gap: 18px; } }
.process-item { display: flex; gap: 14px; align-items: center; }
.process-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(31,169,184,0.18); color: var(--teal-l); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(31,169,184,0.30); }
.process-item strong { display: block; font-family: var(--font-h); font-size: 17px; color: #fff; letter-spacing: 0.01em; margin-bottom: 2px; }
.process-item span { font-size: 13px; color: rgba(255,255,255,0.75); }

/* SECTIONS */
.section { padding: 90px 0; position: relative; }
.section-light { background: var(--bg-2); }
.section-dark { background: var(--bg); }
.section-cream { background: var(--bg-3); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin: 0 auto 56px; text-align: center; }
.section-eyebrow { display: inline-flex; background: rgba(31,169,184,0.10); border: 1px solid rgba(31,169,184,0.28); padding: 6px 14px; border-radius: 4px; font-size: 11px; font-weight: 700; color: var(--teal-d); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; }
.section-head h2 { color: var(--navy); margin-bottom: 14px; }
.section-head p { font-size: 17px; color: var(--muted); }

/* SERVICE BUTTONS — 6 items: 3-col grid for balanced 3x2 layout */
.svc-buttons { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .svc-buttons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-buttons { grid-template-columns: 1fr; } }
.svc-button { position: relative; background: var(--surface); border-radius: var(--radius-lg); padding: 0; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; aspect-ratio: 4/3; }
.svc-button:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-button-img { position: absolute; inset: 0; }
.svc-button-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; filter: brightness(0.78) contrast(1.05); }
.svc-button:hover .svc-button-img img { transform: scale(1.08); }
.svc-button-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,59,74,0.40) 0%, rgba(11,59,74,0.85) 100%); }
.svc-button-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 2; color: #fff; }
.svc-button h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.svc-button-go { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }

/* VIDEO STRIP — kontrollü oynatma (poster + play) */
.video-strip { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .video-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .video-strip { grid-template-columns: 1fr 1fr; gap: 10px; } }
.video-card { position: relative; aspect-ratio: 9/16; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--navy); }
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-card::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(212,175,55,0.25); border-radius: var(--radius); pointer-events: none; }

/* CARPET TYPES — 8 items: 4-col grid for balanced 4x2 layout */
.carpet-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .carpet-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .carpet-grid { grid-template-columns: repeat(2, 1fr); } }
.carpet-card { display: block; background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: all .3s; aspect-ratio: 4/5; position: relative; }
.carpet-card:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: var(--shadow); }
.carpet-card img { width: 100%; height: 70%; object-fit: cover; }
.carpet-card-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px; background: var(--surface); display: flex; justify-content: space-between; align-items: center; font-family: var(--font-h); font-weight: 700; color: var(--navy); font-size: 16px; }
.carpet-card-label svg { color: var(--teal); }

/* REFERENCES STRIP — markalar */
.brands-strip { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; align-items: center; padding: 32px; background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.brands-strip span { font-family: var(--font-h); font-weight: 600; color: var(--ink-2); font-size: 15px; padding: 8px 18px; border: 1.5px solid var(--line-strong); border-radius: 999px; letter-spacing: 0.02em; transition: all .25s; }
.brands-strip span:hover { color: var(--teal-d); border-color: var(--teal); background: var(--teal-soft); }

/* INFO STAT CARDS */
.stats { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%); padding: 60px 0; color: #fff; position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent 0 18px, rgba(212,175,55,0.05) 18px 19px); }
.stats .container { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
.stat-num { font-family: var(--font-h); font-size: clamp(36px, 5vw, 56px); line-height: 1; color: var(--gold); margin-bottom: 6px; font-weight: 800; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.92); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }

/* AREA GRID — 10 items: 5-col layout for 5x2 */
.areas-grid { display: grid; gap: 14px; grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
.area-card { display: flex; gap: 12px; align-items: center; padding: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: all .25s; }
.area-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow); }
.area-card-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-soft); color: var(--teal-d); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.area-card strong { display: block; font-weight: 700; color: var(--navy); font-family: var(--font-h); font-size: 17px; letter-spacing: 0.01em; }
.area-card span { font-size: 12px; color: var(--muted); }

/* GALLERY */
.gallery { display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.1); }

/* MEDIA SPLIT */
.media-split { display: grid; gap: 50px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .media-split { grid-template-columns: 1.05fr 1fr; gap: 70px; } .media-split.is-reverse { grid-template-columns: 1fr 1.05fr; } .media-split.is-reverse .media-split-img { order: 2; } }
.media-split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; position: relative; }
.media-split-img img { width: 100%; height: 100%; object-fit: cover; }

/* CTA BAR */
.cta-bar { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%); padding: 70px 0; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-bar::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(212,175,55,0.20), transparent 50%), radial-gradient(circle at 80% 70%, rgba(255,255,255,0.10), transparent 50%); }
.cta-bar .container { position: relative; z-index: 2; }
.cta-bar h2 { color: #fff; margin-bottom: 16px; }
.cta-bar p { color: rgba(255,255,255,0.92); font-size: 18px; max-width: 600px; margin: 0 auto 28px; }
.cta-bar-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-bar .btn-primary { background: #fff; color: var(--teal-d); }
.cta-bar .btn-primary:hover { background: var(--gold); color: var(--navy); }

/* FOOTER */
.footer { background: var(--navy-d); color: rgba(255,255,255,0.72); padding: 80px 0 32px; border-top: 4px solid var(--gold); }
.footer-grid { display: grid; gap: 40px; margin-bottom: 50px; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 20px; letter-spacing: 0.04em; font-family: var(--font-h); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.72); font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-row { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; color: rgba(255,255,255,0.88); font-size: 13px; }
.footer-contact-row svg { color: var(--teal-l); flex-shrink: 0; }
.footer-contact-row strong { color: #fff; }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.55); }
.footer-bottom a { color: rgba(255,255,255,0.85); }
.footer-policy-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* FAB */
.fab-wrap { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: flex; flex-direction: column; gap: 14px; }
.fab { position: relative; width: 60px; height: 60px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 12px 28px rgba(11,59,74,0.30); cursor: pointer; transition: transform .25s; }
.fab-whatsapp { background: #25D366; }
.fab-call { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%); animation: callFlash 1.4s ease-in-out infinite; }
@keyframes callFlash { 0%,100% { box-shadow: 0 12px 28px rgba(31,169,184,0.5), 0 0 0 0 rgba(31,169,184,0); transform: scale(1); } 50% { box-shadow: 0 14px 36px rgba(31,169,184,0.7), 0 0 0 14px rgba(31,169,184,0); transform: scale(1.08); } }
.fab:hover { transform: scale(1.1); }

/* PAGE HEADER & CONTENT */
.page-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%); padding: 70px 0; position: relative; overflow: hidden; color: #fff; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 75% 30%, rgba(31,169,184,0.30) 0%, transparent 50%), radial-gradient(circle at 15% 75%, rgba(212,175,55,0.12) 0%, transparent 50%); }
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: #fff; margin-bottom: 14px; }
.page-header p { color: rgba(255,255,255,0.88); font-size: 18px; max-width: 700px; }
.breadcrumb { padding: 14px 0; font-size: 13px; color: var(--muted); background: var(--surface); border-bottom: 1px solid var(--line); }
.breadcrumb .container { display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--teal-d); font-weight: 600; }
.breadcrumb span:last-child { color: var(--ink-2); }
.article { background: var(--bg-2); padding: 60px 0; }
.article-grid { max-width: 900px; margin: 0 auto; }
.article h2 { color: var(--navy); margin: 36px 0 14px; border-left: 4px solid var(--teal); padding-left: 14px; }
.article h3 { color: var(--navy); margin: 24px 0 10px; }
.article p { margin-bottom: 16px; font-size: 16px; line-height: 1.85; color: var(--ink-2); }
.article ul, .article ol { margin: 0 0 20px 24px; }
.article li { margin-bottom: 8px; color: var(--ink-2); line-height: 1.7; }
.article-lead { font-size: 19px; line-height: 1.7; color: var(--ink); font-weight: 500; padding: 22px 26px; background: var(--bg-3); border-left: 4px solid var(--gold); border-radius: 10px; }
.article-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin: 32px 0; aspect-ratio: 16/9; }
.article-image img { width: 100%; height: 100%; object-fit: cover; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-question { width: 100%; padding: 20px 24px; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-weight: 700; font-size: 16px; color: var(--navy); text-align: left; font-family: inherit; }
.faq-icon { color: var(--teal); transition: transform .25s; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px; color: var(--ink-2); font-size: 15px; line-height: 1.75; display: none; }
.faq-item.is-open .faq-answer { display: block; }

/* CONTACT */
.contact-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }
.contact-form { background: var(--surface); padding: 36px; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group label { display: block; font-weight: 600; font-size: 13px; color: var(--navy); margin-bottom: 6px; }
.form-control { width: 100%; padding: 14px 16px; border-radius: 10px; border: 1.5px solid var(--line-strong); background: var(--surface); color: var(--ink); font-family: inherit; font-size: 15px; }
.form-control:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(31,169,184,0.15); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-msg { margin-top: 14px; padding: 14px; border-radius: 10px; font-size: 14px; }
.form-msg.ok { background: rgba(22,163,74,0.12); color: #15803D; border: 1px solid rgba(22,163,74,0.3); }
.form-msg.err { background: rgba(220,38,38,0.10); color: var(--red); border: 1px solid rgba(220,38,38,0.3); }
.contact-info-card { background: var(--surface); padding: 36px; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-info-card h3 { color: var(--navy); margin-bottom: 22px; font-size: 22px; }
.contact-info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row svg { color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.contact-info-row strong { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-info-row span { color: var(--navy); font-size: 15px; }

/* BLOG */
.blog-grid { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.blog-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all .3s; box-shadow: var(--shadow); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-3); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-card-body h3 { color: var(--navy); font-size: 19px; margin-bottom: 10px; line-height: 1.3; }
.blog-card-body p { color: var(--ink-2); font-size: 14px; line-height: 1.55; margin-bottom: 14px; }
.blog-card-link { color: var(--teal-d); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 60px 0 50px; }
  .hero-mini-badge { max-width: 100%; }
  .hero-photo { aspect-ratio: 3/2; max-height: 320px; }
  .topbar { padding: 6px 0; font-size: 11.5px; }
  .topbar .container { justify-content: center; gap: 14px; flex-wrap: nowrap; }
  .topbar-247 { letter-spacing: 0.04em; font-size: 11.5px; }
  .topbar-actions { gap: 10px; }
  .topbar a { font-size: 12px; gap: 5px; }
  .topbar a svg { width: 11px; height: 11px; }
  .header-row { padding: 10px 0; gap: 10px; }
  .logo { gap: 8px; }
  .logo-svg { width: 44px; height: 44px; }
  .logo-title { font-size: 16px; letter-spacing: 0.01em; }
  .logo-sub { font-size: 9px; letter-spacing: 0.14em; }
  .header-cta { gap: 6px; }
  .header-cta .hhy-call-btn { padding: 0 !important; width: 42px; height: 42px; font-size: 0 !important; border-radius: 50%; line-height: 1; }
  .header-cta .hhy-call-btn::before { content: '📞'; font-size: 18px; line-height: 1; }
  .menu-toggle { padding: 6px; }
  .hero-cta .btn { width: 100%; }
}
@media (max-width: 380px) {
  .topbar-247 { display: none; }
  .topbar .container { justify-content: center; }
}
