/* ==========================================================================
   AD SİGORTA – LUXURY BLACK & GOLD 8-BRANCH EXTENDED STYLESHEET
   ========================================================================== */

:root {
  /* Renk Paleti: Obsidyen Siyahı, Kömür & Fırçalanmış Altın */
  --bg-deep: #08080a;
  --bg-dark: #0f1014;
  --bg-card: #15161d;
  --bg-surface: #1b1d26;
  
  --gold-300: #fae084;
  --gold-400: #f2c75a;
  --gold-500: #d4af37;
  --gold-600: #b89124;
  --gold-gradient: linear-gradient(135deg, #fae084 0%, #d4af37 50%, #b89124 100%);
  --gold-glow: rgba(212, 175, 55, 0.32);

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --wa-green: #25d366;
  --wa-dark: #1eb956;
  
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 10px 28px rgba(212, 175, 55, 0.35);

  --ease-smooth: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1240px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* --- BASE & RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--slate-50);
  color: var(--slate-900);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--ease-smooth);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4.5vw, 32px);
}

.max-w-narrow {
  max-width: 840px;
  margin-inline: auto;
}

.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-gold { color: var(--gold-500) !important; }

.gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-flow {
  padding-block: clamp(55px, 7vw, 105px);
}

/* --- HEADINGS --- */
.eyebrow-tag {
  display: inline-block;
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 10px;
}

.heading-title {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--bg-deep);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.heading-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  color: var(--slate-600);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(30px, 4.5vw, 50px);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border-radius: 12px;
  transition: var(--ease-smooth);
  white-space: nowrap;
  touch-action: manipulation;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--bg-deep);
  padding: 13px 24px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover, .btn-gold:active {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.48);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 13px 24px;
  backdrop-filter: blur(8px);
}

.btn-glass:hover, .btn-glass:active {
  background: rgba(255, 255, 255, 0.16);
}

.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold-500);
  color: var(--bg-deep);
  padding: 12px 26px;
}

.btn-outline-gold:hover, .btn-outline-gold:active {
  background: var(--gold-gradient);
  color: var(--bg-deep);
}

.btn-full {
  width: 100%;
}

.btn-xl {
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.88rem;
}

/* --- NAVBAR --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-block: 16px;
  transition: var(--ease-smooth);
  background: transparent;
}

.site-header.scrolled {
  padding-block: 12px;
  background: rgba(11, 11, 14, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-shield {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.shield-svg {
  width: 100%;
  height: 100%;
}

.shield-outline {
  fill: var(--bg-dark);
  stroke: var(--gold-500);
  stroke-width: 2.2;
}

.shield-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  fill: var(--gold-400);
  text-anchor: middle;
}

.brand-naming {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-400);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-item {
  color: var(--slate-200);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-block: 6px;
}

.nav-item:hover, .nav-item.active {
  color: var(--gold-300);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 1010;
}

.hamburger-bar {
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--ease-smooth);
}

.mobile-drawer-footer, .mobile-backdrop { display: none; }

/* --- HERO SECTION --- */
.hero-stage {
  position: relative;
  background-color: var(--bg-deep);
  color: #ffffff;
  padding-top: clamp(120px, 14vw, 175px);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.45;
}

.glow-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
  top: -80px;
  right: -50px;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 29, 38, 0.8) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(35px, 5vw, 65px);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.live-dot {
  width: 7px;
  height: 7px;
  background-color: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-400);
}

.eyebrow-text {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--gold-300);
}

.hero-headline {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.hero-summary {
  font-size: clamp(0.98rem, 1.6vw, 1.15rem);
  color: var(--slate-200);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.hero-trust-indicators {
  display: flex;
  align-items: center;
  gap: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.indicator-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 0.95rem;
}

.indicator-meta strong { display: block; font-size: 0.88rem; color: #ffffff; }
.indicator-meta span { font-size: 0.75rem; color: var(--slate-400); }

/* Glass Showcase */
.hero-visual-card { position: relative; }

.glass-showcase {
  background: linear-gradient(145deg, rgba(21, 22, 29, 0.9) 0%, rgba(15, 16, 20, 0.98) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 22px;
  padding: clamp(22px, 3.5vw, 34px);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
}

.showcase-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.15);
  color: var(--wa-green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 30px;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.status-indicator {
  width: 6px;
  height: 6px;
  background-color: var(--wa-green);
  border-radius: 50%;
}

.brand-code {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-400);
}

.showcase-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-400);
  margin-bottom: 16px;
}

.showcase-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.showcase-body p {
  font-size: 0.9rem;
  color: var(--slate-200);
  margin-bottom: 18px;
}

.quick-branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.branch-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-200);
  display: flex;
  align-items: center;
  gap: 8px;
}

.branch-pill.featured-pill {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.08);
}

.branch-pill:hover, .branch-pill:active {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-500);
  color: #ffffff;
}

.branch-pill i { color: var(--gold-400); }

.showcase-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gold-gradient);
  color: var(--bg-deep);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
}

.action-info { display: flex; flex-direction: column; }
.action-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.8px; }
.action-phone { font-size: 1rem; line-height: 1.2; }

.action-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(8, 8, 10, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-pill {
  position: absolute;
  background: var(--bg-dark);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.float-pill-1 { top: -14px; left: -14px; color: var(--gold-300); }

/* --- PRINCIPLES STRIP --- */
.principles-strip {
  background: var(--bg-dark);
  border-block: 1px solid rgba(212, 175, 55, 0.25);
  padding-block: 20px;
}

.principles-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.principle-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.p-text strong { display: block; font-size: 0.9rem; color: #ffffff; }
.p-text span { font-size: 0.78rem; color: var(--slate-400); }

/* --- DETAILED BRANCHES SECTION (8 BRANŞ) --- */
.detailed-branches-section {
  background: var(--slate-50);
}

.detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.detail-card {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--ease-smooth);
}

.detail-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-lg);
}

.featured-gold-card {
  border: 2px solid var(--gold-500);
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
}

.card-featured-badge {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--gold-gradient);
  color: var(--bg-deep);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
}

.detail-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bg-deep);
  flex-shrink: 0;
  transition: var(--ease-smooth);
}

.detail-card:hover .detail-icon {
  background: var(--bg-deep);
  color: var(--gold-400);
}

.detail-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--gold-600);
  margin-bottom: 2px;
}

.detail-tag.tag-legal {
  color: #e11d48;
}

.detail-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bg-deep);
  line-height: 1.25;
}

.detail-lead {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.detail-box {
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 24px;
}

.detail-box h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--bg-deep);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--slate-800);
  line-height: 1.45;
}

.detail-list i {
  color: var(--gold-600);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.detail-footer {
  margin-top: auto;
}

.solutions-inline-cta {
  background: var(--bg-deep);
  border-radius: 16px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.inline-cta-text strong { display: block; font-size: 1.02rem; color: #ffffff; }
.inline-cta-text span { font-size: 0.88rem; color: var(--slate-400); }

/* --- NEDEN BİZ --- */
.why-us-section { background: #ffffff; }

.why-us-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: clamp(35px, 5vw, 65px);
}

.why-intro-text {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin-bottom: 28px;
}

.advisor-executive-card {
  background: var(--bg-dark);
  border-radius: 18px;
  padding: 26px;
  border: 1.5px solid var(--gold-500);
  box-shadow: var(--shadow-md);
  color: #ffffff;
}

.advisor-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.advisor-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1.5px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-400);
}

.advisor-info h4 { font-size: 1.2rem; font-weight: 800; }
.advisor-info span { font-size: 0.78rem; color: var(--gold-300); letter-spacing: 1px; text-transform: uppercase; }

.advisor-quote {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--slate-200);
  line-height: 1.5;
  margin-bottom: 18px;
  border-left: 2px solid var(--gold-500);
  padding-left: 12px;
}

.advisor-direct-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  border-radius: 10px;
}

.advisor-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
}

.advisor-phone i { color: var(--gold-400); }

.advisor-wa {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.why-cards-col { display: flex; flex-direction: column; gap: 14px; }

.advantage-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 20px;
  transition: var(--ease-smooth);
}

.advantage-card:hover {
  background: #ffffff;
  border-color: var(--gold-500);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.adv-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-600);
  line-height: 1;
  flex-shrink: 0;
}

.adv-body h3 { font-size: 1.1rem; font-weight: 800; color: var(--bg-deep); margin-bottom: 4px; }
.adv-body p { font-size: 0.88rem; color: var(--slate-600); line-height: 1.5; }

/* --- 4 ADIMLI SÜREÇ --- */
.process-timeline-section { background: var(--slate-50); }

.timeline-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-badge {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bg-deep);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-gold);
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 22px 18px;
  height: calc(100% - 60px);
  transition: var(--ease-smooth);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}

.step-card h4 { font-size: 1.02rem; font-weight: 800; color: var(--bg-deep); margin-bottom: 6px; }
.step-card p { font-size: 0.86rem; color: var(--slate-600); line-height: 1.5; }

/* --- HAKKIMIZDA --- */
.about-brand-section { background: var(--slate-50); }

.about-card-container {
  background: var(--bg-deep);
  border-radius: 24px;
  padding: clamp(28px, 4.5vw, 55px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-lg);
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 4.5vw, 55px);
  align-items: center;
}

.about-headline {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.about-lead { font-size: 1.02rem; color: var(--slate-200); line-height: 1.65; margin-bottom: 12px; }
.about-subtext { font-size: 0.92rem; color: var(--slate-400); line-height: 1.6; margin-bottom: 24px; }

.core-pillar-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.core-pillar-box:last-child { margin-bottom: 0; }

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pillar-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.pillar-text p { font-size: 0.85rem; color: var(--slate-300); line-height: 1.45; }

/* --- MASTER CTA BANNER --- */
.master-cta-section { background: var(--slate-50); padding-block: 16px; }

.master-cta-box {
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
  border: 2px solid var(--gold-500);
  border-radius: 24px;
  padding: clamp(28px, 4.5vw, 55px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow-lg);
  color: #ffffff;
}

.cta-icon-floating {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--wa-green);
  margin-bottom: 16px;
}

.cta-title { font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 800; line-height: 1.2; margin-bottom: 10px; }
.cta-lead { font-size: 1rem; color: var(--slate-200); line-height: 1.6; margin-bottom: 20px; }
.cta-direct-phone { font-size: 0.92rem; color: var(--gold-300); display: flex; align-items: center; gap: 8px; }

.btn-whatsapp-grand {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--wa-green);
  color: #ffffff;
  padding: 15px 24px;
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
  transition: var(--ease-smooth);
}

.btn-whatsapp-grand i { font-size: 1.9rem; }
.btn-double-text { display: flex; flex-direction: column; }
.btn-sub { font-size: 0.72rem; font-weight: 600; opacity: 0.9; text-transform: uppercase; }
.btn-main { font-size: 1.1rem; font-weight: 800; }

.btn-whatsapp-grand:hover, .btn-whatsapp-grand:active {
  background: var(--wa-dark);
  transform: translateY(-2px);
}

.cta-promise { display: block; margin-top: 12px; font-size: 0.8rem; color: var(--slate-400); }

/* --- FAQ ACCORDION --- */
.faq-section { background: #ffffff; }
.accordion-group { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--slate-50);
  overflow: hidden;
  transition: var(--ease-smooth);
}

.faq-item.active {
  border-color: var(--gold-500);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.faq-question { font-size: 0.98rem; font-weight: 700; color: var(--bg-deep); }

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  position: relative;
  flex-shrink: 0;
  transition: var(--ease-smooth);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--bg-deep);
  transform: translate(-50%, -50%);
  transition: var(--ease-smooth);
}

.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after { width: 2px; height: 10px; }

.faq-item.active .faq-icon { background: var(--gold-gradient); }
.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-panel p {
  padding: 0 20px 18px 20px;
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* --- INSTAGRAM SHOWCASE --- */
.instagram-showcase-section { background: var(--slate-50); }

.instagram-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.insta-post-card {
  background: var(--bg-dark);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  padding: 20px;
  color: #ffffff;
  transition: var(--ease-smooth);
}

.insta-post-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.post-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.account-tag { font-size: 0.78rem; font-weight: 700; color: var(--gold-300); }
.post-header i { color: #e1306c; font-size: 1.15rem; }
.post-icon { font-size: 1.6rem; color: var(--gold-400); margin-bottom: 10px; }
.post-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.post-body p { font-size: 0.85rem; color: var(--slate-300); margin-bottom: 14px; }
.post-footer { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { background: rgba(255, 255, 255, 0.08); font-size: 0.7rem; font-weight: 600; color: var(--slate-200); padding: 3px 8px; border-radius: 6px; }

/* --- İLETİŞİM --- */
.contact-matrix-section { background: #ffffff; }

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-box-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--ease-smooth);
}

.contact-box-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
}

.featured-contact-box { border: 2px solid var(--wa-green); background: #ffffff; }

.featured-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(37, 211, 102, 0.15);
  color: var(--wa-green);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
}

.contact-icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.wa-bubble { background: rgba(37, 211, 102, 0.15); color: var(--wa-green); }
.email-bubble { background: rgba(212, 175, 55, 0.15); color: var(--gold-600); }

.contact-box-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--bg-deep); margin-bottom: 4px; }
.contact-detail { font-size: 1rem; font-weight: 800; color: var(--gold-600); margin-bottom: 14px; word-break: break-all; }
.contact-action-link { font-size: 0.82rem; font-weight: 700; color: var(--slate-600); display: flex; align-items: center; gap: 6px; }

/* --- FOOTER --- */
.site-footer {
  background: var(--bg-deep);
  color: #ffffff;
  padding-top: clamp(50px, 7vw, 80px);
  border-top: 1px solid rgba(212, 175, 55, 0.35);
}

.footer-main-content {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1.1fr;
  gap: clamp(24px, 3.5vw, 40px);
  margin-bottom: 40px;
}

.footer-description {
  font-size: 0.9rem;
  color: var(--slate-400);
  line-height: 1.6;
  margin: 16px 0 20px 0;
  max-width: 320px;
}

.footer-social-strip { display: flex; gap: 8px; }

.footer-social-strip a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-300);
}

.footer-social-strip a:hover {
  background: var(--gold-gradient);
  color: var(--bg-deep);
  border-color: var(--gold-500);
}

.footer-title { font-size: 1rem; font-weight: 800; color: var(--gold-300); margin-bottom: 16px; }
.footer-menu-links li { margin-bottom: 8px; }
.footer-menu-links a { color: var(--slate-300); font-size: 0.88rem; }
.footer-menu-links a:hover { color: var(--gold-400); padding-left: 4px; }

.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-row i { font-size: 1rem; margin-top: 3px; }
.footer-contact-row div span { display: block; font-size: 0.7rem; color: var(--slate-400); text-transform: uppercase; }
.footer-contact-row div a { font-size: 0.92rem; font-weight: 700; color: #ffffff; }

.footer-bottom-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 18px;
  font-size: 0.82rem;
  color: var(--slate-400);
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-demo-badge {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-300);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
}

/* --- FLOATING CONTROLS --- */
.floating-wa-btn {
  position: fixed;
  bottom: calc(20px + var(--safe-bottom));
  right: 20px;
  background: var(--wa-green);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  z-index: 995;
  transition: var(--ease-smooth);
}

.floating-wa-btn i { font-size: 1.35rem; }
.floating-wa-btn:hover, .floating-wa-btn:active { transform: translateY(-3px) scale(1.02); }

.scroll-to-top {
  position: fixed;
  bottom: calc(20px + var(--safe-bottom));
  left: 20px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-deep);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--ease-smooth);
}

.scroll-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* --- SCROLL REVEAL --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-revealed { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE & MOBILE OPTIMIZATION --- */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .principles-container { grid-template-columns: repeat(2, 1fr); }
  .detailed-grid { grid-template-columns: 1fr; }
  .why-us-layout { grid-template-columns: 1fr; }
  .about-card-container { grid-template-columns: 1fr; }
  .timeline-wrapper { grid-template-columns: repeat(2, 1fr); }
  .master-cta-box { grid-template-columns: 1fr; }
  .instagram-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 84%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-deep);
    border-right: 1px solid rgba(212, 175, 55, 0.25);
    padding: 85px 24px 30px 24px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1005;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.7);
  }

  .main-navigation.active { transform: translateX(100%); left: -100%; }

  .mobile-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: var(--ease-smooth);
  }

  .mobile-backdrop.active { opacity: 1; visibility: visible; }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .nav-item {
    font-size: 1.1rem;
    font-weight: 700;
    padding-block: 8px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .menu-toggle { display: flex; }
  .menu-toggle.active .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active .hamburger-bar:nth-child(2) { opacity: 0; }
  .menu-toggle.active .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .desktop-only { display: none !important; }

  .mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .drawer-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--gold-400);
  }

  .drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
  }

  .btn-phone { background: rgba(255, 255, 255, 0.08); color: #ffffff; }
  .btn-wa { background: var(--wa-green); color: #ffffff; }

  .hero-stage { padding-top: 100px; padding-bottom: 50px; }
  .hero-headline { font-size: 2.1rem; line-height: 1.2; }
  .hero-cta-group { flex-direction: column; width: 100%; gap: 10px; }
  .hero-main-btn, .hero-sec-btn { width: 100%; }
  .hero-trust-indicators { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .principles-container { grid-template-columns: 1fr 1fr; gap: 14px; }
  .detailed-grid { grid-template-columns: 1fr; gap: 20px; }
  .detail-card { padding: 24px 20px; }

  .solutions-inline-cta {
    padding: 20px 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .solutions-inline-cta .btn { width: 100%; }

  .timeline-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
    padding-left: 20px;
  }

  .timeline-line-track {
    display: block;
    position: absolute;
    top: 20px;
    left: 40px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(180deg, var(--gold-500) 0%, rgba(212, 175, 55, 0.1) 100%);
  }

  .timeline-step { display: flex; align-items: flex-start; gap: 16px; }
  .step-badge { width: 38px; height: 38px; font-size: 0.95rem; flex-shrink: 0; }
  .step-card { height: auto; padding: 16px; flex-grow: 1; }

  .master-cta-box { padding: 26px 18px; gap: 24px; }
  .master-cta-box .btn-whatsapp-grand { width: 100%; justify-content: center; }

  .instagram-cards-grid, .contact-cards-grid, .footer-main-content {
    grid-template-columns: 1fr;
  }

  .floating-btn-text, .floating-pill { display: none; }
  .floating-wa-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    right: 16px;
    bottom: calc(16px + var(--safe-bottom));
  }

  .scroll-to-top {
    width: 38px;
    height: 38px;
    left: 16px;
    bottom: calc(16px + var(--safe-bottom));
  }
}
/* ==========================================================================
   AD SİGORTA – LUXURY BLACK & GOLD COMPLETE STYLESHEET
   ========================================================================== */

:root {
  --bg-deep: #07080a;
  --bg-dark: #0f1015;
  --bg-card: #14161f;
  --gold-300: #fae084;
  --gold-400: #f2c75a;
  --gold-500: #d4af37;
  --gold-gradient: linear-gradient(135deg, #fae084 0%, #d4af37 50%, #b89124 100%);
  --wa-green: #25d366;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --shadow-gold: 0 10px 28px rgba(212, 175, 55, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: #f4f7fa; color: #0f172a; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* 8 DETAYLI BRANŞ GRID */
.detailed-branches-section { padding: 90px 0; background: #0c0d12; color: #ffffff; }
.detailed-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 40px; }

.detail-card {
  background: #141620;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 34px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.35s ease;
}

.detail-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-500);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25);
  background: #181b26;
}

.featured-gold-card {
  border: 2px solid var(--gold-500);
  background: linear-gradient(180deg, #181b26 0%, #13151f 100%);
}

.card-featured-badge {
  position: absolute;
  top: 16px; right: 18px;
  background: var(--gold-gradient);
  color: #07080a;
  font-size: 0.72rem; font-weight: 800;
  padding: 4px 12px; border-radius: 20px;
}

.detail-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.detail-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--gold-400); flex-shrink: 0;
}
.detail-card:hover .detail-icon { background: var(--gold-gradient); color: #07080a; }

.detail-tag { font-size: 0.72rem; font-weight: 800; letter-spacing: 1.5px; color: var(--gold-400); margin-bottom: 4px; }
.detail-tag.tag-legal { color: #f43f5e; }
.detail-title { font-size: 1.35rem; font-weight: 800; color: #ffffff; line-height: 1.25; }
.detail-lead { font-size: 0.94rem; color: #cbd5e1; line-height: 1.65; margin-bottom: 20px; }

.detail-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px; padding: 18px 20px; margin-bottom: 24px;
}
.detail-box h4 { font-size: 0.82rem; font-weight: 800; color: var(--gold-300); margin-bottom: 12px; text-transform: uppercase; }
.detail-list { display: flex; flex-direction: column; gap: 10px; }
.detail-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: #e2e8f0; line-height: 1.5; }
.detail-list i { color: var(--gold-400); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }

.btn-card-wa {
  width: 100%; background: var(--gold-gradient); color: #07080a;
  padding: 13px 20px; font-size: 0.92rem; font-weight: 800; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: var(--shadow-gold);
}
.btn-card-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212, 175, 55, 0.5); }

@media (max-width: 1024px) { .detailed-grid { grid-template-columns: 1fr; } }
/* ==========================================================================
   AD SİGORTA – LUXURY BLACK & GOLD 8-BRANCH EXTENDED STYLESHEET
   ========================================================================== */

:root {
  --bg-deep: #08090c;
  --bg-dark: #0f1016;
  --bg-card: #141622;
  --bg-card-hover: #191c2b;
  --gold-300: #fae084;
  --gold-400: #f2c75a;
  --gold-500: #d4af37;
  --gold-600: #b89124;
  --gold-gradient: linear-gradient(135deg, #fae084 0%, #d4af37 50%, #b89124 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --wa-green: #25d366;
  --wa-dark: #1eb956;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 10px 28px rgba(212, 175, 55, 0.35);
  --ease: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1240px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body { font-family: var(--font-body); background-color: var(--slate-50); color: var(--slate-900); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: clamp(16px, 4.5vw, 32px); }
.max-w-narrow { max-width: 840px; margin-inline: auto; }
.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-gold { color: var(--gold-500) !important; }
.gold-gradient { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-flow { padding-block: clamp(65px, 8vw, 105px); scroll-margin-top: 80px; }

/* 8 SİGORTA BRANŞI DETAYLI KARTLARI */
.detailed-branches-section { background: var(--bg-deep); color: #ffffff; padding-block: clamp(75px, 9vw, 115px); }
.detailed-branches-section .heading-title { color: #ffffff; }
.detailed-branches-section .heading-subtitle { color: var(--slate-400); }
.detailed-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 40px; }

.detail-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 34px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: var(--ease);
  scroll-margin-top: 100px;
}

.detail-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-500);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25);
  background: var(--bg-card-hover);
}

.featured-gold-card {
  border: 2px solid var(--gold-500);
  background: linear-gradient(180deg, #181b28 0%, #12141f 100%);
}

.card-featured-badge {
  position: absolute;
  top: 16px; right: 18px;
  background: var(--gold-gradient);
  color: var(--bg-deep);
  font-size: 0.72rem; font-weight: 800;
  padding: 4px 12px; border-radius: 20px;
}

.detail-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.detail-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--gold-400); flex-shrink: 0;
  transition: var(--ease);
}
.detail-card:hover .detail-icon { background: var(--gold-gradient); color: var(--bg-deep); transform: scale(1.06); }

.detail-tag { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 1.5px; color: var(--gold-400); margin-bottom: 4px; }
.detail-tag.tag-legal { color: #f43f5e; }
.detail-title { font-size: 1.35rem; font-weight: 800; color: #ffffff; line-height: 1.25; }
.detail-lead { font-size: 0.94rem; color: var(--slate-200); line-height: 1.65; margin-bottom: 20px; }

.detail-box {
  background: rgba(0, 0, 0, 0.