/* =========================================
   Template Varyant: SOFT — LAVANTA/PUDRA
   Sıcak, sakin, terapötik — Psikolog için
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Petrona:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root,
body.theme-warm {
  --bg: #FBF6F5;
  --surface: #FFFFFF;
  --surface-soft: #F2E3E8;
  --text: #2F2730;
  --muted: #7B6E78;
  --accent: #B58BA5;
  --accent-dark: #9A6F8A;
  --lavender: #C8B6D8;
  --sand: #D8C7B0;
  --line: rgba(47, 39, 48, 0.08);
  --shadow: 0 20px 60px rgba(47, 39, 48, 0.07);
  --shadow-sm: 0 4px 18px rgba(47, 39, 48, 0.04);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-xs: 8px;
  --radius-hero: 40px 40px 90px 40px;
  --font-serif: 'Petrona', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --nav-height: 80px;
  --max-width: 1140px;
  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---------- Tema: Sage ---------- */
body.theme-sage {
  --bg: #F5F7F3; --text: #2D3328; --muted: #7D8572;
  --accent: #9BAF90; --accent-dark: #7D9272; --lavender: #BFCAB8; --sand: #D5D5B8;
  --surface-soft: #E8EDE0; --line: rgba(45, 51, 40, 0.08);
}

/* ---------- Tema: Blue ---------- */
body.theme-blue {
  --bg: #F5F7FA; --text: #2A3038; --muted: #7D848E;
  --accent: #8A9FB8; --accent-dark: #6E839C; --lavender: #B0C0CD; --sand: #C8D0C8;
  --surface-soft: #E6EDF3; --line: rgba(42, 48, 56, 0.08);
}

/* ---------- Tema: Rose ---------- */
body.theme-rose {
  --bg: #FBF6F5; --text: #3D3232; --muted: #8D7E7E;
  --accent: #C99A94; --accent-dark: #A87A74; --lavender: #D8C0C0; --sand: #D8CFC0;
  --surface-soft: #F0E5E2; --line: rgba(61, 50, 50, 0.08);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-sans);
  font-size: 16px; line-height: 1.8;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 400;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

/* ---------- Skip Link ---------- */
.skip-link { position: absolute; top: -100%; left: 16px; background: var(--accent); color: #fff; padding: 10px 22px; border-radius: 0 0 var(--radius-xs) var(--radius-xs); z-index: 10000; font-size: 13px; font-weight: 500; transition: top 0.3s; }
.skip-link:focus { top: 0; }

/* ---------- Container ---------- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.3; color: var(--text); letter-spacing: -0.01em; }
.section-label { display: inline-block; font-family: var(--font-sans); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 14px; padding: 4px 14px; background: rgba(181, 139, 165, 0.10); border-radius: 20px; }
.section-title { font-size: clamp(30px, 4.5vw, 42px); font-weight: 500; margin-bottom: 24px; max-width: 680px; }
.section-desc { font-size: 16px; color: var(--muted); max-width: 560px; margin-bottom: 48px; line-height: 1.8; }
.section { padding: 100px 0; }
.section-alt { background: var(--surface); }

/* ---------- Navbar — Soft ---------- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-height); display: flex; align-items: center; transition: all var(--transition); background: transparent; }
.navbar.scrolled { background: rgba(251, 246, 245, 0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-brand { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.brand-name { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--text); }
.brand-sub { font-family: var(--font-sans); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links ul { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 13px; font-weight: 500; color: var(--muted); position: relative; padding: 6px 0; transition: color var(--transition); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); border-radius: 2px; transition: width var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: #fff; background: var(--accent); padding: 11px 26px; border-radius: 100px; transition: all var(--transition); white-space: nowrap; backdrop-filter: blur(8px); }
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(181, 139, 165, 0.25); }

/* ---------- Hamburger ---------- */
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 44px; height: 44px; gap: 5px; padding: 8px; border-radius: var(--radius-xs); z-index: 1001; }
.hamburger-line { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); transform-origin: center; }
.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile Bottom Bar ---------- */
.mobile-bottom-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: rgba(251, 246, 245, 0.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--line); padding: 10px 20px; padding-bottom: max(10px, env(safe-area-inset-bottom, 10px)); gap: 10px; }
.mbb-btn { display: flex; align-items: center; justify-content: center; gap: 8px; flex: 1; padding: 12px 20px; border-radius: 100px; font-size: 12px; font-weight: 600; transition: background var(--transition); }
.mbb-whatsapp { background: #25D366; color: #fff; }
.mbb-whatsapp:hover { background: #1ebe5c; }
.mbb-call { background: var(--accent); color: #fff; }
.mbb-call:hover { background: var(--accent-dark); }

/* ═══════════════════════════════════════
   HERO — SOFT LAVANTA
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--nav-height) 0 80px;
  overflow: hidden;
  background: linear-gradient(170deg, #FBF6F5 0%, #F5EEF2 40%, #F8F2EE 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 139, 165, 0.12) 0%, transparent 70%);
  top: -250px; right: -200px;
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 182, 216, 0.10) 0%, transparent 70%);
  bottom: -150px; left: -150px;
}
.hero-blob { display: none; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-content { display: flex; flex-direction: column; gap: 22px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  color: var(--accent);
  background: rgba(181, 139, 165, 0.10);
  padding: 7px 18px;
  border-radius: 100px;
  width: fit-content;
}
.hero-title { font-size: clamp(34px, 5vw, 52px); font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; }
.hero-desc { font-size: 17px; color: var(--muted); line-height: 1.8; max-width: 480px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-flex; font-size: 11px; font-weight: 500;
  color: var(--accent-dark);
  background: rgba(181, 139, 165, 0.06);
  border: 1px solid rgba(181, 139, 165, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }

/* Hero Visual — Pamuksu/Camımsı Kart */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  width: 100%; max-width: 400px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 40px 40px 90px 40px;
  box-shadow: 0 16px 48px rgba(181, 139, 165, 0.10);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.hero-photo { position: relative; width: 100%; aspect-ratio: 1/1; border-radius: 20px; overflow: hidden; background: var(--surface-soft); display: flex; align-items: center; justify-content: center; }
.profile-img { width: 100%; height: 100%; object-fit: cover; display: none; }
.profile-img[src="assets/images/profile.jpg"] { display: block; }
.photo-placeholder { display: flex; align-items: center; justify-content: center; color: var(--muted); opacity: 0.35; }
.photo-badge {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 10px; font-weight: 500;
  color: #fff; background: var(--accent);
  padding: 5px 14px; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.hero-mini-cards { display: flex; flex-direction: column; gap: 10px; }
.mini-card {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  padding: 10px 14px;
  background: rgba(255,255,255,0.55);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}
.mini-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(181, 139, 165, 0.12); color: var(--accent); flex-shrink: 0; }

/* ---------- Buttons (Soft) ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 13px; font-weight: 500; padding: 14px 32px; border-radius: 100px; transition: all var(--transition); cursor: pointer; border: none; white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(181, 139, 165, 0.20); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(181, 139, 165, 0.30); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(181, 139, 165, 0.04); transform: translateY(-1px); }

/* ---------- Trust Bar — Pastel ---------- */
.trust-bar { padding: 48px 0; background: rgba(251, 246, 245, 0.5); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card { display: flex; flex-direction: column; gap: 12px; padding: 28px 20px; border-radius: var(--radius); text-align: center; align-items: center; background: var(--surface); border: 1px solid var(--line); transition: all var(--transition); }
.trust-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: rgba(181, 139, 165, 0.20); }
.trust-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(181, 139, 165, 0.10); color: var(--accent); }
.trust-title { font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--text); }
.trust-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---------- About ---------- */
.about-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.about-text { display: flex; flex-direction: column; gap: 22px; font-size: 17px; color: var(--muted); line-height: 1.85; }
.about-text p { max-width: 520px; }
.about-visual { display: flex; justify-content: center; }
.about-photo-placeholder { width: 100%; max-width: 340px; aspect-ratio: 4/5; border-radius: var(--radius-hero); background: var(--surface-soft); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.about-img { width: 100%; height: 100%; object-fit: cover; display: none; }
.about-img[src="assets/images/about.jpg"] { display: block; }
.ap-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--muted); opacity: 0.35; }
.ap-inner span { font-size: 12px; font-weight: 500; }

/* ---------- Services — Soft Organic ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; display: flex; flex-direction: column; gap: 14px; transition: all var(--transition); position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(181, 139, 165, 0.18); }
.service-card::after {
  content: '';
  position: absolute;
  top: 12px; right: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.15;
}
.service-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(181, 139, 165, 0.08); color: var(--accent); }
.service-title { font-family: var(--font-sans); font-size: 17px; font-weight: 600; color: var(--text); }
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.services-cta { margin-top: 48px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.services-cta p { font-size: 15px; color: var(--muted); max-width: 480px; }

/* ---------- Themes ---------- */
.themes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 680px; }
.theme-item { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: var(--muted); padding: 14px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: all var(--transition); }
.theme-item:hover { border-color: var(--accent); color: var(--text); background: rgba(181, 139, 165, 0.03); }
.theme-bullet { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; opacity: 0.45; }

/* ---------- Process ---------- */
.process-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 780px; }
.process-step { display: flex; gap: 18px; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: all var(--transition); }
.process-step:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.step-number { font-family: var(--font-serif); font-size: 30px; font-weight: 700; color: var(--accent); opacity: 0.35; line-height: 1; min-width: 48px; }
.step-content h3 { font-family: var(--font-sans); font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ---------- Ethics ---------- */
.ethics-content { max-width: 680px; display: flex; flex-direction: column; gap: 18px; font-size: 16px; color: var(--muted); line-height: 1.85; }
.ethics-notice { display: flex; align-items: flex-start; gap: 12px; padding: 16px 22px; background: rgba(181, 139, 165, 0.04); border: 1px solid rgba(181, 139, 165, 0.12); border-radius: var(--radius-sm); font-size: 13px; color: var(--accent-dark); line-height: 1.6; margin-top: 12px; }
.ethics-notice svg { flex-shrink: 0; color: var(--accent); }

/* ---------- CTA — Soft Gradyan ---------- */
.section-cta { background: var(--surface); }
.cta-card { text-align: center; max-width: 660px; margin: 0 auto; padding: 60px 40px; background: linear-gradient(145deg, #F4E7EC 0%, #EEE7F5 50%, #F8F2EE 100%); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.cta-title { font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.cta-desc { font-size: 16px; color: var(--muted); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- FAQ — Pill Cards ---------- */
.faq-list { max-width: 680px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid rgba(181, 139, 165, 0.15); border-radius: 100px; overflow: hidden; background: var(--surface); transition: box-shadow var(--transition); }
.faq-item.open { border-radius: var(--radius-sm); border-color: rgba(181, 139, 165, 0.25); }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 24px; font-size: 14px; font-weight: 500; text-align: left; color: var(--text); gap: 16px; transition: background var(--transition); }
.faq-question:hover { background: rgba(181, 139, 165, 0.04); }
.faq-arrow { flex-shrink: 0; transition: transform var(--transition); color: var(--accent); opacity: 0.55; }
.faq-item.open .faq-arrow { transform: rotate(180deg); opacity: 1; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 280px; }
.faq-answer p { padding: 0 24px 18px; font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.contact-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); }
.contact-value { font-size: 15px; font-weight: 500; color: var(--text); transition: color var(--transition); }
a.contact-value:hover { color: var(--accent); }
.contact-actions { display: flex; flex-direction: column; gap: 12px; }
.contact-action-btn { width: 100%; justify-content: center; }

/* ---------- Footer — Pastel Açık ---------- */
.footer { background: rgba(251, 246, 245, 0.6); border-top: 1px solid var(--line); padding: 48px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 14px; }
.footer-brand { font-family: var(--font-serif); font-size: 15px; font-weight: 600; color: var(--text); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; font-weight: 500; color: var(--muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-note { font-size: 12px; color: var(--muted); opacity: 0.6; line-height: 1.6; max-width: 560px; }

/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .service-card:hover, .process-step:hover, .theme-item:hover, .trust-card:hover { transform: none; }
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
::selection { background: rgba(181, 139, 165, 0.18); color: var(--text); }

/* ---------- Responsive: Tablet ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-content { align-items: center; }
  .hero-desc { max-width: 560px; }
  .hero-btns, .hero-tags { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 340px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; text-align: center; }
  .about-text p { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  /* Hizalama */
  .section-label { text-align: center; width: 100%; }
  .section-title { text-align: center; margin-left: auto; margin-right: auto; }
  .section-desc { text-align: center; margin-left: auto; margin-right: auto; }
  .trust-card { text-align: center; align-items: center; }
  .service-card { text-align: center; align-items: center; }
  .service-icon { margin: 0 auto; }
  .cta-card { text-align: center; }
  .contact-actions { align-items: center; }
  .contact-action-btn { justify-content: center; }
}

/* ---------- Responsive: Mobile ---------- */
@media (max-width: 768px) {
  :root { --nav-height: 72px; }
  .container { padding: 0 18px; }
  .section { padding: 72px 0; }
  .nav-links { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; justify-content: center; align-items: center; gap: 40px; padding: 24px; opacity: 0; pointer-events: none; transition: opacity var(--transition); z-index: 1000; visibility: hidden; }
  .nav-links.open { opacity: 0; pointer-events: none; visibility: hidden; }
  .nav-links ul { flex-direction: column; gap: 28px; }
  .nav-link { font-size: 18px; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: calc(var(--nav-height) + 32px) 0 48px; }
  .hero-title { font-size: clamp(28px, 8vw, 36px); }
  .hero-card { padding: 24px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-card { padding: 18px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px 20px; }
  .themes-grid { grid-template-columns: 1fr; }
  .process-step { padding: 20px; }
  .cta-card { padding: 36px 20px; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .contact-actions { gap: 10px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* ---------- Responsive: Small Mobile ---------- */
@media (max-width: 400px) {
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .section-desc { font-size: 15px; }
}

/* ═══ MOBIL BOTTOM SHEET MENU ═══ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.menu-overlay.open { opacity: 1; pointer-events: all; }
.mobile-menu {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 85vh; overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-inner {
  background: var(--surface);
  border-radius: 26px 26px 0 0;
  padding: 14px 20px 28px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
}
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-drag {
  display: block; width: 36px; height: 4px;
  border-radius: 4px; background: var(--muted);
  opacity: 0.3; margin: 0 auto 10px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.mobile-menu-title {
  font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--text);
}
.mobile-menu-close {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface-soft); color: var(--muted); cursor: pointer; border: none;
}
.mobile-menu-close:hover { background: var(--line); }
.mobile-menu-links { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.mobile-menu-links li { margin: 0; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; min-height: 48px;
  padding: 12px 16px; font-size: 15px; font-weight: 500;
  color: var(--text); border-radius: 14px; text-decoration: none;
  transition: background 0.2s ease;
}
.mobile-nav-link::after {
  content: ''; width: 8px; height: 8px;
  border-right: 2px solid var(--muted);
  border-top: 2px solid var(--muted);
  transform: rotate(45deg); opacity: 0.4; flex-shrink: 0;
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: var(--surface-soft); }
.mobile-nav-link.active { color: var(--accent); }
.mobile-menu-cta-wrap { padding-top: 8px; }
.mobile-menu-cta-wrap .btn { width: 100%; justify-content: center; }
@media (prefers-reduced-motion: reduce) { .mobile-menu, .menu-overlay { transition: none !important; } }
