/* ===================================================================
   BTN GRUP GAYRİMENKUL — Premium Kurumsal Tasarım Sistemi
   Kırıkkale & Yahşihan Emlak Danışmanlığı
   100% Responsive / Mobil ve Masaüstü Uyumlu
   =================================================================== */

:root {
  /* Renkler */
  --bg-dark: #070a11;
  --bg-card: #0d1322;
  --bg-card-hover: #131b2e;
  --bg-surface: #101726;
  --bg-surface-elevated: #162035;
  --bg-input: #0a0f1d;

  --gold-500: #d4af37;
  --gold-400: #e5c05b;
  --gold-600: #b89326;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-light: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.35);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-gold: #e5c05b;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-focus: var(--gold-500);

  --emerald-500: #10b981;
  --emerald-light: rgba(16, 185, 129, 0.14);

  /* Tipografi */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Efektler */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1220px;
}

/* ---------------- 1. Temel Sıfırlama & Tipografi ---------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
  min-height: 100vh;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ---------------- 2. Üst Hızlı İletişim Bandı (Topbar) ---------------- */
.topbar {
  background: rgba(7, 10, 17, 0.98);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 8px 0;
  position: relative;
  z-index: 50;
  white-space: nowrap;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.topbar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  color: var(--gold-400);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.74rem;
  border: 1px solid var(--gold-border);
}

.topbar-tag .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 8px var(--emerald-500);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.topbar-agent-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.topbar-agent-link:hover {
  color: var(--gold-400);
}

.topbar-agent-link strong {
  color: var(--text-primary);
}

.topbar-shbdn-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ffcc00;
  font-weight: 700;
  font-size: 0.76rem;
  padding: 2px 9px;
  border-radius: 4px;
  background: rgba(255, 204, 0, 0.12);
  border: 1px solid rgba(255, 204, 0, 0.3);
  transition: all var(--transition-fast);
}

.topbar-shbdn-link:hover {
  background: rgba(255, 204, 0, 0.22);
}

/* ---------------- 3. Ana Navigasyon (Header) ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 22, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(6, 9, 16, 0.98);
  border-bottom-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  gap: 16px;
}

/* Saf Tipografik Logo (İkon / Ev Yoktur) */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1.1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.brand-title span {
  color: var(--gold-400);
}

.brand-subtitle {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* Menü Linkleri */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  transition: width var(--transition-fast);
}

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

.nav-item-contact {
  margin-left: 10px;
}

.nav-link-gold-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  color: #070a11 !important;
  background: linear-gradient(135deg, #d4af37 0%, #b89326 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.28);
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link-gold-box:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e5c05b 0%, #c59b27 100%);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  color: #000000 !important;
}

.nav-link-gold-box.active {
  box-shadow: 0 0 0 2px var(--gold-400), 0 4px 16px rgba(212, 175, 55, 0.45);
}

/* Header Butonları & Mobil Tetikleyici */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b89326 100%);
  color: #070a11;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e5c05b 0%, #c59b27 100%);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-border);
  color: var(--gold-400);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-shbdn {
  background: #ffcc00;
  color: #111111;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(255, 204, 0, 0.3);
}

.btn-shbdn:hover {
  background: #f0be00;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  background: var(--bg-surface);
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

/* ---------------- 4. Hero Bölümü ---------------- */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  padding: 70px 0 50px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.42) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 60% 40%, rgba(7, 10, 17, 0.45) 0%, rgba(7, 10, 17, 0.95) 85%),
              linear-gradient(to top, rgba(7, 10, 17, 1) 0%, rgba(7, 10, 17, 0.25) 60%);
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 880px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
  max-width: 100%;
}

.hero-title {
  font-size: clamp(1.8rem, 4.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #ffffff;
  word-break: break-word;
}

.hero-title .serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--gold-400);
}

.hero-description {
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
  color: #cbd5e1;
  line-height: 1.68;
  margin-bottom: 32px;
  max-width: 740px;
}

/* Hero Hızlı Erişim Konsolu */
.search-console {
  background: rgba(13, 19, 34, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
}

.search-console::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.hero-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

.hero-action-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-action-card.shbdn-card {
  border-color: rgba(255, 204, 0, 0.35);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.05) 0%, rgba(13, 19, 34, 0.6) 100%);
}

.hero-action-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.hero-action-card h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.hero-action-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.hero-action-card .btn {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.84rem;
}

/* ---------------- 5. Güven & İstatistik Bandı ---------------- */
.trust-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 22px 0;
  position: relative;
  z-index: 10;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 14px;
  border-right: 1px solid var(--border-subtle);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.trust-info {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-size: 1.28rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.trust-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ---------------- 6. Genel Bölüm Başlıkları & Izgaralar ---------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 46px;
}

.section-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Hakkımızda Izgarası */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* ---------------- 7. Sahibinden.com Entegrasyon Kartı ---------------- */
.section-sahibinden {
  padding: 50px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
}

.sahibinden-banner {
  background: linear-gradient(135deg, #111a2e 0%, #0a0f1d 100%);
  border: 1px solid rgba(255, 204, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.sahibinden-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.sahibinden-logo-box {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: #ffcc00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: #111;
  flex-shrink: 0;
}

.sahibinden-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.sahibinden-text p {
  color: #cbd5e1;
  font-size: 0.92rem;
  max-width: 580px;
}

/* ---------------- 8. İnteraktif Araçlar (Değerleme & Kredi) ---------------- */
.section-tools {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.tools-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.tool-tab-btn {
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.tool-tab-btn.active {
  background: linear-gradient(135deg, var(--gold-500), #b89326);
  color: #070a11;
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
}

.tool-pane {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 0 auto;
}

.tool-pane.active {
  display: block;
}



.valuation-form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--text-muted);
}

.select-wrapper {
  position: relative;
}

.select-wrapper select,
.search-field input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.9rem;
  color: #ffffff;
  transition: all var(--transition-fast);
  appearance: none;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.select-wrapper select:focus,
.search-field input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.valuation-result-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(16, 23, 38, 0.95) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  margin-top: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.valuation-estimate-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.valuation-estimate-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

/* Kredi Izgarası */
.loan-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
}

.loan-inputs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.range-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.range-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.range-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.range-display {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
}

.styled-range {
  width: 100%;
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
  accent-color: var(--gold-500);
}

.styled-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-500);
  cursor: pointer;
  border: 2px solid #ffffff;
}

.loan-summary-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.loan-metric {
  margin-bottom: 18px;
}

.loan-metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.loan-metric-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
}

.loan-metric-value.highlight {
  color: var(--gold-400);
}

/* ---------------- 9. Danışmanlarımız (The Team) ---------------- */
.section-team {
  padding: 80px 0;
  background: var(--bg-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
}

.team-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.team-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold-light);
  color: var(--gold-400);
  border: 1px solid var(--gold-border);
}

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

.team-portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f2b42 0%, #0d1424 100%);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-400);
  flex-shrink: 0;
}

.team-title-group h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.team-role {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold-400);
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.62;
  margin-bottom: 20px;
}

.team-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.spec-tag {
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  color: #cbd5e1;
  border: 1px solid var(--border-subtle);
}

.team-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.team-btn-call {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  color: #ffffff;
  padding: 11px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.team-btn-call:hover {
  border-color: var(--gold-border);
  color: var(--gold-400);
}

.team-btn-wa {
  background: #25d366;
  color: #ffffff;
  padding: 11px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.team-btn-wa:hover {
  background: #20ba5a;
}

/* ---------------- 10. Bölge Rehberi & Hizmetler ---------------- */
.section-guide {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: all var(--transition-fast);
}

.guide-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.guide-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 16px;
}

.guide-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.guide-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Hizmetler Izgarası */
.section-services {
  padding: 80px 0;
  background: var(--bg-dark);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.service-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(13, 19, 34, 0.8) 100%);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-points {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: #cbd5e1;
}

.service-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-points li svg {
  color: var(--gold-400);
  flex-shrink: 0;
}

/* ---------------- 11. SSS (Accordion) ---------------- */
.section-faq {
  padding: 80px 0;
  background: var(--bg-surface);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-border);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
}

.faq-toggle-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--gold-500);
  color: #070a11;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 20px 18px 20px;
}

/* ---------------- 12. İletişim & Lokasyon ---------------- */
.section-contact {
  padding: 80px 0;
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
}

.contact-info-card,
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-info-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-row-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.contact-row-text h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-row-text p,
.contact-row-text a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-row-text a:hover {
  color: var(--gold-400);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.9rem;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Contact Page & Section Specific Enhancements */
.contact-agents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

.contact-office-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.contact-office-box {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition-smooth);
}

.contact-office-box:hover {
  border-color: var(--gold-border);
  background: rgba(212, 175, 55, 0.03);
  transform: translateY(-2px);
}

.contact-office-box .box-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.contact-office-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-office-box p,
.contact-office-box a {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-office-box a:hover {
  color: var(--gold-400);
}

.contact-map-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.contact-map-header {
  padding: 20px 26px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-map-header-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-map-header-title .map-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.contact-map-header-title h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.contact-map-header-title p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.contact-map-iframe-container {
  width: 100%;
  height: 420px;
  background: #111827;
  position: relative;
}

.contact-map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 992px) {
  .contact-agents-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-office-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ---------------- 13. Kurumsal Footer ---------------- */
.site-footer {
  background: #04060a;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 0.94rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------------- 14. Floating Action Button (FAB) ---------------- */
.fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}

.fab-main-btn {
  background: linear-gradient(135deg, var(--gold-500) 0%, #b89326 100%);
  color: #070a11;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
}

.fab-main-btn:hover {
  transform: translateY(-2px);
}

.fab-popup {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  display: none;
  flex-direction: column;
  gap: 12px;
}

.fab-popup.open {
  display: flex;
}

.fab-popup-header {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gold-400);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fab-agent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
}

.fab-agent-info h5 {
  font-size: 0.84rem;
  color: #ffffff;
}

.fab-agent-info p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.fab-agent-btns {
  display: flex;
  gap: 6px;
}

.fab-agent-btns a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab-btn-wa {
  background: #25d366;
  color: #fff;
}

.fab-btn-tel {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--gold-400);
}

/* ===================================================================
   15. GÜÇLÜ MOBİL VE TABLET UYUMLULUK SİSTEMİ (RESPONSIVE)
   =================================================================== */

.mobile-menu-cta {
  display: none;
}

/* Tablet ve Küçük Ekranlar (<= 992px) */
@media (max-width: 992px) {
  /* Üst bar gizlenir, ekran temiz kalır */
  .topbar {
    display: none !important;
  }

  .header-inner {
    height: 66px;
  }

  /* Mobil Menü (Tam Ekran Genişliğinde Açılır Çekmece) */
  .nav-menu {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
    background: rgba(7, 10, 17, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 2px solid var(--gold-border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 32px;
    gap: 0;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: block;
    width: 100%;
    color: var(--text-primary);
  }

  .nav-item-contact {
    margin-left: 0;
    margin-top: 10px;
  }

  .nav-link-gold-box {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    font-size: 1rem;
  }

  .mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 12px;
  }

  .mobile-menu-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px;
    font-size: 0.88rem;
  }

  /* Header aksiyonları */
  .header-actions .btn-outline {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Grid düzenlemeleri */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) {
    border-right: none;
  }

  .hero-action-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .loan-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .valuation-form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* Mobil Telefonlar (<= 768px) */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Header Düzeni */
  .header-inner {
    height: 62px;
  }

  .brand-title {
    font-size: 1.05rem;
    gap: 4px;
  }

  .brand-subtitle {
    font-size: 0.54rem;
    letter-spacing: 0.18em;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn:not(.btn-whatsapp):not(.mobile-toggle) {
    display: none;
  }

  /* Hero Bölümü */
  .hero {
    min-height: auto;
    padding: 36px 0 28px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-badge {
    font-size: 0.74rem;
    padding: 5px 12px;
    white-space: normal;
    line-height: 1.35;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
    line-height: 1.22;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .search-console {
    padding: 16px 14px;
  }

  .hero-action-card {
    padding: 18px 14px;
  }

  .hero-action-card h4 {
    font-size: 1.02rem;
  }

  .hero-action-card .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.86rem;
  }

  /* Sahibinden Kartı */
  .section-sahibinden {
    padding: 36px 0;
  }

  .sahibinden-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
    align-items: stretch;
    gap: 18px;
  }

  .sahibinden-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .sahibinden-icon {
    width: 54px;
    height: 54px;
  }

  .sahibinden-text h3 {
    font-size: 1.25rem;
  }

  .sahibinden-text p {
    font-size: 0.88rem;
  }

  .btn-shbdn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.92rem;
  }

  /* Araçlar (Değerleme & Kredi) */
  .section-tools {
    padding: 50px 0;
  }

  .tools-nav {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 24px;
  }

  .tool-tab-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
    padding: 13px 14px;
  }

  .tool-pane {
    padding: 20px 14px;
  }

  .valuation-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .valuation-estimate-value {
    font-size: 1.55rem;
    word-break: break-word;
  }

  .loan-summary-card {
    padding: 20px 14px;
  }

  .loan-metric-value {
    font-size: 1.45rem;
  }

  /* Danışman Kartları & Butonları (Tek Kolon ve Tam Genişlik) */
  .section-team {
    padding: 50px 0;
  }

  .team-card {
    padding: 22px 16px;
  }

  .team-badge {
    position: static;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 12px;
  }

  .team-portrait {
    width: 58px;
    height: 58px;
    font-size: 1.2rem;
  }

  .team-title-group h3 {
    font-size: 1.15rem;
  }

  .team-bio {
    font-size: 0.86rem;
  }

  .team-contact-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .team-btn-call,
  .team-btn-wa {
    width: 100%;
    padding: 13px 14px;
    font-size: 0.88rem;
    justify-content: center;
  }

  /* Bölge Rehberi & Hizmetler */
  .section-guide,
  .section-services {
    padding: 50px 0;
  }

  .guide-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .guide-card,
  .service-card {
    padding: 20px 16px;
  }

  /* SSS (FAQ) */
  .section-faq {
    padding: 50px 0;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.92rem;
    gap: 10px;
  }

  .faq-answer {
    padding: 0 16px;
    font-size: 0.85rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 16px;
  }

  /* İletişim Formu */
  .section-contact {
    padding: 50px 0;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 22px 16px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Footer */
  .site-footer {
    padding: 50px 0 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* FAB Butonu (Mobil İçin Yuvarlak, Formları Kapatmayan Tasarım) */
  .fab-container {
    bottom: 18px;
    right: 16px;
  }

  .fab-main-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.45);
  }

  .fab-main-btn .fab-text {
    display: none;
  }

  .fab-popup {
    position: fixed;
    bottom: 80px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* Küçük Ekran Telefonlar (<= 640px) */
@media (max-width: 640px) {
  /* WhatsApp butonunu header'da kare ikon yapar, logo ferahlar */
  .header-actions .btn-whatsapp {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions .btn-whatsapp .btn-text {
    display: none;
  }

  .mobile-toggle {
    width: 38px;
    height: 38px;
  }

  .section-title {
    font-size: clamp(1.45rem, 5.8vw, 1.85rem);
  }
}

/* Ekstra Küçük Telefonlar (<= 480px) */
@media (max-width: 480px) {
  .brand-title {
    font-size: 0.96rem;
  }

  .brand-subtitle {
    font-size: 0.5rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .hero-title {
    font-size: 1.62rem;
  }

  .search-console {
    padding: 14px 12px;
  }

  .hero-action-card {
    padding: 16px 12px;
  }

  .tool-pane {
    padding: 18px 12px;
  }

  .loan-summary-card {
    padding: 18px 12px;
  }
}
