/* ==========================================================================
   YAKUP KAÇMAZ SİGORTA – ULTRA-RESPONSIVE & MOBILE-FIRST DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Renk Paleti */
  --navy-deep: #081220;
  --navy-dark: #0e1e36;
  --navy-surface: #142848;
  --navy-card: #183056;
  
  --gold-300: #fae084;
  --gold-400: #f0c354;
  --gold-500: #e5b742;
  --gold-600: #c99824;
  --gold-gradient: linear-gradient(135deg, #fae084 0%, #e5b742 50%, #c99824 100%);
  --gold-glow: rgba(229, 183, 66, 0.28);

  --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;
  
  /* Tipografi */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  
  /* Gölgeler */
  --shadow-sm: 0 4px 12px rgba(8, 18, 32, 0.05);
  --shadow-md: 0 12px 30px rgba(8, 18, 32, 0.08);
  --shadow-lg: 0 24px 50px rgba(8, 18, 32, 0.14);
  --shadow-gold: 0 10px 28px rgba(229, 183, 66, 0.32);

  /* Animasyon & Transition */
  --ease-smooth: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1240px;

  /* Mobil Safe Area Handling */
  --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);
}

/* --- SECTION 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(--navy-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: 640px;
  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(--navy-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(229, 183, 66, 0.45);
}

.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-navy {
  background: transparent;
  border: 1.5px solid var(--navy-deep);
  color: var(--navy-deep);
  padding: 12px 26px;
}

.btn-outline-navy:hover, .btn-outline-navy:active {
  background: var(--navy-deep);
  color: #ffffff;
}

.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(8, 18, 32, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.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(--navy-surface);
  stroke: var(--gold-500);
  stroke-width: 2;
}

.shield-letter {
  stroke: var(--gold-400);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.brand-naming {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.12rem;
  color: #ffffff;
  line-height: 1.15;
}

.brand-tag {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-400);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  color: var(--slate-200);
  font-size: 0.92rem;
  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(255, 255, 255, 0.12);
  z-index: 1010;
}

.hamburger-bar {
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--ease-smooth);
}

.mobile-drawer-contact {
  display: none;
}

.mobile-backdrop {
  display: none;
}

/* --- HERO SECTION --- */
.hero-stage {
  position: relative;
  background-color: var(--navy-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.5;
}

.glow-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(229, 183, 66, 0.18) 0%, transparent 70%);
  top: -80px;
  right: -50px;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 40, 72, 0.7) 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(229, 183, 66, 0.1);
  border: 1px solid rgba(229, 183, 66, 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(229, 183, 66, 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(20, 40, 72, 0.85) 0%, rgba(14, 30, 54, 0.95) 100%);
  border: 1.5px solid rgba(229, 183, 66, 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.4);
}

.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(229, 183, 66, 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:hover, .branch-pill:active {
  background: rgba(229, 183, 66, 0.15);
  border-color: var(--gold-500);
  color: #ffffff;
}

.branch-pill i {
  color: var(--gold-400);
  font-size: 0.85rem;
}

.showcase-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gold-gradient);
  color: var(--navy-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, 18, 32, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-pill {
  position: absolute;
  background: var(--navy-deep);
  border: 1px solid rgba(229, 183, 66, 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.35);
  z-index: 3;
}

.float-pill-1 {
  top: -14px;
  left: -14px;
  color: var(--gold-300);
}

/* --- PRINCIPLES STRIP --- */
.principles-strip {
  background: var(--navy-dark);
  border-block: 1px solid rgba(229, 183, 66, 0.2);
  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(229, 183, 66, 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);
}

/* --- SOLUTIONS GRID --- */
.solutions-section {
  background: var(--slate-50);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.8vw, 28px);
  margin-bottom: 34px;
}

.solution-card {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--ease-smooth);
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
}

.featured-gold-card {
  border: 2px solid var(--gold-500);
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold-gradient);
  color: var(--navy-deep);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
}

.card-top-flex {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.card-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--navy-deep);
  flex-shrink: 0;
}

.solution-card:hover .card-icon-wrap {
  background: var(--navy-deep);
  color: var(--gold-400);
}

.card-category {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--gold-600);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.card-description {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 22px;
  flex-grow: 1;
}

.card-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.card-action-btn i {
  color: var(--wa-green);
  font-size: 1.1rem;
}

.solution-card:hover .card-action-btn,
.solution-card:active .card-action-btn {
  background: var(--gold-gradient);
  border-color: var(--gold-500);
  color: var(--navy-deep);
}

.solution-card:hover .card-action-btn i,
.solution-card:active .card-action-btn i {
  color: var(--navy-deep);
}

.solutions-inline-cta {
  background: var(--navy-deep);
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border: 1px solid rgba(229, 183, 66, 0.3);
}

.inline-cta-text strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
}

.inline-cta-text span {
  font-size: 0.85rem;
  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(--navy-deep);
  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(--navy-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(--navy-deep);
  margin-bottom: 4px;
}

.adv-body p {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* --- HAKKIMIZDA --- */
.about-brand-section {
  background: var(--slate-50);
}

.about-card-container {
  background: var(--navy-deep);
  border-radius: 24px;
  padding: clamp(28px, 4.5vw, 55px);
  border: 1px solid rgba(229, 183, 66, 0.3);
  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(229, 183, 66, 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;
}

/* --- DASK & KASKO FEATURE BLOCKS --- */
.alternating-features-section {
  background: #ffffff;
}

.feature-alternating-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: clamp(30px, 5vw, 65px);
  margin-bottom: clamp(50px, 7vw, 90px);
}

.feature-alternating-row:last-child { margin-bottom: 0; }

.reverse-row {
  grid-template-columns: 1.15fr 1fr;
}

.reverse-row .feature-visual-panel { order: 2; }
.reverse-row .feature-content-panel { order: 1; }

.feature-visual-panel {
  min-height: 280px;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(229, 183, 66, 0.25);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.panel-dask { background: linear-gradient(135deg, #0e1e36 0%, #1a3660 100%); }
.panel-kasko { background: linear-gradient(135deg, #0a1728 0%, #152d50 100%); }

.panel-inner-card {
  background: rgba(8, 18, 32, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 183, 66, 0.3);
  border-radius: 14px;
  padding: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}

.panel-icon {
  font-size: 1.8rem;
  color: var(--gold-400);
}

.stat-highlight {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
}

.stat-sub {
  font-size: 0.78rem;
  color: var(--slate-300);
}

.feature-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy-deep);
  margin-bottom: 14px;
}

.feature-desc {
  font-size: 0.98rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin-bottom: 18px;
}

.feature-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.feature-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate-800);
}

.feature-check-list i {
  color: var(--gold-600);
}

/* --- 4 ADIMLI SÜREÇ TIMELINE --- */
.process-timeline-section {
  background: var(--slate-50);
}

.timeline-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline-step {
  position: relative;
}

.step-badge {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-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(--navy-deep);
  margin-bottom: 6px;
}

.step-card p {
  font-size: 0.86rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* --- MASTER WHATSAPP BANNER --- */
.master-cta-section {
  background: var(--slate-50);
  padding-block: 16px;
}

.master-cta-box {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-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(--navy-deep);
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(8, 18, 32, 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(--navy-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(3, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.insta-post-card {
  background: var(--navy-deep);
  border: 1px solid rgba(229, 183, 66, 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 MATRIX --- */
.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(8, 18, 32, 0.08);
  color: var(--navy-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); }
.ig-bubble { background: rgba(225, 48, 108, 0.15); color: #e1306c; }

.contact-box-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.contact-detail {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-600);
  margin-bottom: 14px;
}

.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(--navy-deep);
  color: #ffffff;
  padding-top: clamp(50px, 7vw, 80px);
  border-top: 1px solid rgba(229, 183, 66, 0.3);
}

.footer-main-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 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(--navy-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(229, 183, 66, 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(--navy-deep);
  border: 1px solid rgba(229, 183, 66, 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);
}

/* ==========================================================================
   TABLET & MOBILE BREAKPOINTS (FINTECH APP UX)
   ========================================================================== */

/* --- TABLET (769px - 1024px) --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .principles-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 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);
  }
}

/* --- MOBILE (Max 768px - Full App Styling) --- */
@media (max-width: 768px) {
  /* Header & Mobile Drawer */
  .main-navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 84%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--navy-deep);
    border-right: 1px solid rgba(229, 183, 66, 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.6);
  }

  .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.65);
    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;
  }

  /* Drawer İçi Hızlı İletişim */
  .mobile-drawer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .drawer-contact-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--gold-400);
  }

  .drawer-contact-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-call {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }

  .btn-wa {
    background: var(--wa-green);
    color: #ffffff;
  }

  /* Hero Section Mobil Düzen */
  .hero-stage {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .hero-headline {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .hero-summary {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-main-btn, .hero-sec-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .hero-trust-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 18px;
  }

  /* Principles Strip (Mobilde 2x2 Temiz Grid) */
  .principles-container {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .principle-item {
    gap: 10px;
  }

  .p-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .p-text strong {
    font-size: 0.82rem;
  }

  .p-text span {
    font-size: 0.7rem;
  }

  /* Sigorta Kartları Tek Sütun */
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution-card {
    padding: 22px 18px;
  }

  .solutions-inline-cta {
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .solutions-inline-cta .btn {
    width: 100%;
  }

  /* DASK & Kasko Feature Blokları */
  .feature-alternating-row, .reverse-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 45px;
  }

  .reverse-row .feature-visual-panel { order: 1; }
  .reverse-row .feature-content-panel { order: 2; }

  .feature-visual-panel {
    min-height: 220px;
    padding: 16px;
  }

  .panel-inner-card {
    padding: 12px;
  }

  .panel-icon {
    font-size: 1.5rem;
  }

  .feature-title {
    font-size: 1.5rem;
  }

  .feature-content-panel .btn {
    width: 100%;
  }

  /* 4 Adımlı Süreç Timeline (Mobilde Dikey Çizgili Hat) */
  .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(229, 183, 66, 0.1) 100%);
    z-index: 1;
  }

  .timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    z-index: 2;
  }

  .step-badge {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .step-card {
    height: auto;
    padding: 16px;
    flex-grow: 1;
  }

  /* Master CTA Mobil */
  .master-cta-box {
    padding: 26px 18px;
    gap: 24px;
  }

  .master-cta-box .btn-whatsapp-grand {
    width: 100%;
    justify-content: center;
  }

  /* Instagram & İletişim Kartları */
  .instagram-cards-grid,
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-box-card {
    padding: 24px 18px;
  }

  /* Footer Mobil */
  .footer-main-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Sabit Butonlar (Mobile Optimized) */
  .floating-btn-text {
    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));
  }

  .floating-wa-btn i {
    font-size: 1.5rem;
  }

  .scroll-to-top {
    width: 38px;
    height: 38px;
    left: 16px;
    bottom: calc(16px + var(--safe-bottom));
  }

  .floating-pill {
    display: none;
  }
}

/* --- SMALL SCREENS (360px - 390px iPhone & Android) --- */
@media (max-width: 390px) {
  .hero-headline {
    font-size: 1.85rem;
  }
  .brand-name {
    font-size: 1rem;
  }
  .quick-branch-grid {
    grid-template-columns: 1fr;
  }
  .principles-container {
    grid-template-columns: 1fr;
  }
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}