/* ========================================
   UYGUN DURDU SİGORTA
   Tasarım Sistemi — Refined Editorial v2
   ======================================== */

:root {
  --navy-900: #0A2540;
  --navy-800: #122E54;
  --navy-700: #1B3A6B;
  --navy-100: #E8EEF5;

  --mint-600: #5BA888;
  --mint-500: #7BC4A4;
  --mint-400: #9DD4B8;
  --mint-100: #E8F4EE;

  --cream-50: #FAF7F2;
  --cream-100: #F5F0E8;
  --cream-200: #EDE5D6;

  --ink-900: #0F1A2E;
  --ink-700: #2C3E5C;
  --ink-500: #5A6E8C;
  --ink-300: #95A5BC;

  --white: #FFFFFF;
  --black: #000000;

  --danger: #DC2C3F;
  --success: #10B981;
  --warning: #F59E0B;

  --font-display: 'Bricolage Grotesque', 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container-max: 1280px;
  --section-padding: clamp(4rem, 10vw, 8rem);

  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 4px 16px rgba(10, 37, 64, 0.06);
  --shadow-lg: 0 12px 40px rgba(10, 37, 64, 0.08);
  --shadow-xl: 0 24px 64px rgba(10, 37, 64, 0.12);
  --shadow-glow: 0 0 0 4px rgba(123, 196, 164, 0.15);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-base: 400ms;
  --duration-slow: 800ms;
}

/* ========================================
   RESET
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
a { color: inherit; text-decoration: none; transition: color var(--duration-fast) var(--ease-out); }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { line-height: 1.7; color: var(--ink-700); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint-600);
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--mint-600);
}

/* ========================================
   LAYOUT
   ======================================== */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; }

@media (min-width: 768px) { .container { padding: 0 2rem; } }

section { padding: var(--section-padding) 0; position: relative; }

/* ========================================
   NAVBAR
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all var(--duration-base) var(--ease-out);
}

.nav.scrolled {
  padding: 0.875rem 0;
  background: rgba(250, 247, 242, 0.95);
  border-bottom-color: rgba(10, 37, 64, 0.08);
  box-shadow: var(--shadow-md);
}

.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.nav__logo { height: 44px; width: auto; flex-shrink: 0; }
.nav__logo img { height: 100%; width: auto; }

.nav__menu { display: none; align-items: center; gap: 2.5rem; list-style: none; }

@media (min-width: 1024px) { .nav__menu { display: flex; } }

.nav__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-900);
  position: relative;
  padding: 0.5rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint-500);
  transition: width var(--duration-base) var(--ease-out);
}

.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link:hover { color: var(--mint-600); }

.nav__cta { display: none; align-items: center; gap: 0.5rem; }

@media (min-width: 768px) { .nav__cta { display: inline-flex; } }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.75rem;
  background: transparent;
  z-index: 115;
}

@media (min-width: 1024px) { .nav__toggle { display: none; } }

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
}

.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: var(--cream-50);
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform var(--duration-base) var(--ease-out);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
  z-index: 110;
}

.nav__mobile.active { transform: translateX(0); }

.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.nav__mobile a {
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-900);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.nav__mobile a:hover { color: var(--mint-600); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius-md);
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn--primary { background: var(--navy-900); color: var(--white); }
.btn--primary:hover { background: var(--navy-800); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--mint { background: var(--mint-500); color: var(--navy-900); }
.btn--mint:hover { background: var(--mint-600); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--whatsapp { background: #25D366; color: var(--white); }
.btn--whatsapp:hover { background: #1FAD52; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25); }

.btn--outline { background: transparent; color: var(--navy-900); border-color: var(--navy-900); }
.btn--outline:hover { background: var(--navy-900); color: var(--white); }

.btn--ghost { background: transparent; color: var(--navy-900); padding: 0.5rem 0; }
.btn--ghost:hover { color: var(--mint-600); }

.btn--lg { padding: 1.125rem 2.25rem; font-size: 1rem; }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream-50);
}

.hero__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.4; pointer-events: none; }

.hero__bg::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, var(--mint-400) 0%, transparent 70%);
  filter: blur(80px);
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, var(--navy-100) 0%, transparent 70%);
  filter: blur(80px);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1.3fr 1fr; gap: 5rem; } }

.hero__content { animation: fadeUp 1s var(--ease-out) both; }

.hero__title {
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 1.5rem 0 1.5rem;
}

.hero__title em { font-style: italic; font-weight: 400; color: var(--mint-600); position: relative; }

.hero__title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 0.12em;
  background: var(--mint-400);
  opacity: 0.4;
  z-index: -1;
}

.hero__lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--ink-700);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 37, 64, 0.1);
}

.hero__trust-item { display: flex; flex-direction: column; gap: 0.25rem; }

.hero__trust-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero__trust-label { font-size: 0.8125rem; color: var(--ink-500); font-weight: 500; }

.hero__visual { position: relative; animation: fadeUp 1s 0.2s var(--ease-out) both; }

.hero__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.hero__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--navy-900), var(--mint-500));
}

.hero__card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-200);
}

.hero__card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-100);
  border-radius: var(--radius-md);
  color: var(--mint-600);
}

.hero__card-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--navy-900); }
.hero__card-sub { font-size: 0.8125rem; color: var(--ink-500); }

.hero__benefits { display: flex; flex-direction: column; gap: 1rem; }

.hero__benefit {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem;
  background: var(--cream-50);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--navy-900);
  font-weight: 600;
}

.hero__benefit-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--mint-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.8; } }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header { max-width: 720px; margin: 0 auto 4rem; text-align: center; }
.section-header.left { text-align: left; margin-left: 0; }
.section-header__title { margin-top: 1rem; margin-bottom: 1.25rem; }
.section-header__lead { font-size: 1.125rem; color: var(--ink-700); }

/* ========================================
   SERVICES GRID
   ======================================== */
.services { background: var(--white); position: relative; }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mint-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--mint-400);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--cream-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-600);
  margin-bottom: 1.5rem;
  transition: all var(--duration-base) var(--ease-out);
}

.service-card:hover .service-card__icon {
  background: var(--mint-500);
  color: var(--white);
  border-color: var(--mint-500);
  transform: rotate(-6deg) scale(1.05);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.service-card__desc { font-size: 0.9375rem; color: var(--ink-700); line-height: 1.6; flex-grow: 1; margin-bottom: 1.5rem; }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}

.service-card__link svg { transition: transform var(--duration-base) var(--ease-out); }
.service-card:hover .service-card__link svg { transform: translateX(6px); }

/* ========================================
   FEATURES
   ======================================== */
.features { background: var(--cream-50); position: relative; }

.features-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }

@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature { text-align: left; padding: 1rem 0; }

.feature__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mint-600);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
}

.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: var(--mint-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.feature__desc { font-size: 0.9375rem; color: var(--ink-700); line-height: 1.6; }

/* ========================================
   PROCESS
   ======================================== */
.process { background: var(--navy-900); color: var(--white); position: relative; overflow: hidden; }

.process::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123, 196, 164, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.process h1, .process h2, .process h3 { color: var(--white); }
.process .eyebrow { color: var(--mint-400); }
.process .eyebrow::before { background: var(--mint-400); }
.process .section-header__lead { color: rgba(255, 255, 255, 0.7); }

.process-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; position: relative; }

@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--mint-500);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.process-step__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--white); }
.process-step__desc { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.7); line-height: 1.6; }

/* ========================================
   QUOTE FORM SECTION
   ======================================== */
.quote-section { background: var(--white); position: relative; }

.quote-section__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }

@media (min-width: 1024px) { .quote-section__inner { grid-template-columns: 1fr 1.2fr; gap: 5rem; } }

.quote-section__info { padding-top: 1rem; }

.quote-form {
  background: var(--cream-50);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-200);
}

.form-group { margin-bottom: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-label .required { color: var(--danger); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--white);
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-md);
  color: var(--navy-900);
  transition: all var(--duration-fast) var(--ease-out);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--mint-500);
  box-shadow: var(--shadow-glow);
  background: var(--white);
}

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

.form-error { display: block; font-size: 0.8125rem; color: var(--danger); margin-top: 0.375rem; font-weight: 500; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--ink-700);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox input { margin-top: 2px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--mint-500); }
.form-checkbox a { color: var(--navy-900); font-weight: 700; text-decoration: underline; }

.form-success {
  background: var(--mint-100);
  border: 1px solid var(--mint-400);
  color: #1F6B47;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
}

.form-error-box {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: var(--danger);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.form-error-box ul { padding-left: 1.25rem; }

.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

/* ========================================
   FAQ
   ======================================== */
.faq { background: var(--cream-50); }

.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.875rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out);
}

.faq-item.active { border-color: var(--mint-400); box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-900);
  text-align: left;
  letter-spacing: -0.01em;
}

.faq-question__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  transition: all var(--duration-base) var(--ease-out);
}

.faq-item.active .faq-question__icon { background: var(--mint-500); color: var(--white); transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--duration-base) var(--ease-out); }

.faq-answer__inner { padding: 0 1.75rem 1.5rem; color: var(--ink-700); line-height: 1.7; font-size: 0.9375rem; }

.faq-item.active .faq-answer { max-height: 500px; }

/* ========================================
   CTA STRIP
   ======================================== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123, 196, 164, 0.2) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-strip__inner { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; position: relative; z-index: 2; }

@media (min-width: 768px) { .cta-strip__inner { grid-template-columns: 1.5fr 1fr; gap: 3rem; } }

.cta-strip h2 { color: var(--white); }
.cta-strip p { color: rgba(255, 255, 255, 0.8); margin-top: 1rem; font-size: 1.0625rem; }

.cta-strip__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: flex-start; }

@media (min-width: 768px) { .cta-strip__actions { justify-content: flex-end; } }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

.footer__logo { height: 56px; margin-bottom: 1.5rem; }
.footer__logo img { height: 100%; width: auto; }

.footer__about {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer__title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--mint-400);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.footer__list a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast) var(--ease-out);
  line-height: 1.4;
  display: inline-block;
}

.footer__list a:hover { color: var(--mint-400); }

.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--mint-400); }
.footer__contact-item a:hover { color: var(--mint-400); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

.footer__bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__bottom-links a:hover { color: var(--mint-400); }

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  transition: all var(--duration-base) var(--ease-out);
  animation: pulse 2.5s infinite ease-in-out;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}

.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.4;
  animation: pulse 2.5s infinite ease-in-out;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  z-index: 95;
  box-shadow: 0 -8px 32px rgba(10, 37, 64, 0.2);
  transform: translateY(100%);
  transition: transform var(--duration-slow) var(--ease-out);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cookie-banner__inner { flex-direction: row; align-items: center; }
}

.cookie-banner__text { font-size: 0.875rem; line-height: 1.5; flex-grow: 1; }
.cookie-banner__text a { color: var(--mint-400); text-decoration: underline; }

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
  padding-top: 160px;
  padding-bottom: 4rem;
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--mint-400) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.page-header__inner { position: relative; z-index: 2; max-width: 800px; }

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--ink-500);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.page-header__breadcrumb a:hover { color: var(--mint-600); }
.page-header__breadcrumb span { color: var(--mint-600); font-weight: 600; }

.page-header__title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; letter-spacing: -0.03em; }
.page-header__lead { font-size: 1.125rem; color: var(--ink-700); max-width: 640px; }

/* ========================================
   PROSE
   ======================================== */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-700);
}

.prose h2 { font-size: 1.625rem; margin-top: 3rem; margin-bottom: 1rem; }
.prose h3 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.prose p { margin-bottom: 1.25rem; }
.prose ul, .prose ol { margin: 1rem 0 1.5rem 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--navy-900); }
.prose a { color: var(--mint-600); text-decoration: underline; }

/* ========================================
   CONTACT INFO CARDS
   ======================================== */
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }

@media (min-width: 640px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }

.contact-card {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--duration-base) var(--ease-out);
}

.contact-card:hover {
  border-color: var(--mint-400);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--mint-100);
  color: var(--mint-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}

.contact-card__value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.4;
  word-break: break-word;
}

.contact-card__value a:hover { color: var(--mint-600); }

/* ========================================
   ERRORS
   ======================================== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(8rem, 25vw, 16rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--navy-900), var(--mint-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

/* ========================================
   UTILITY
   ======================================== */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.flex { display: flex; }
.gap-4 { gap: 1rem; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  z-index: 200;
  font-weight: 700;
  transition: top var(--duration-base) var(--ease-out);
}

.skip-link:focus { top: 1rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ========================================
   MOBILE OPTIMIZATIONS
   ======================================== */

/* Footer mobilde tek sütun, güzel hizalı */
@media (max-width: 900px) {
  .footer { padding: 3rem 0 1.5rem; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
  }
  .footer__title { font-size: 0.75rem; margin-bottom: 1rem; }
  .footer__list { gap: 0.75rem; }
  .footer__list a { font-size: 0.9375rem; }
  .footer__about { max-width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 1rem; text-align: left; }
  .footer__bottom-links { flex-wrap: wrap; gap: 0.875rem 1.25rem; }
}

/* WhatsApp FAB mobilde optimize */
@media (max-width: 1023px) {
  .fab-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 1rem;
    right: 1rem;
  }
  .fab-whatsapp svg { width: 24px; height: 24px; }
}

/* Mobile menu açıkken FAB ve cookie banner gizlensin */
body.menu-open .fab-whatsapp,
body.menu-open .cookie-banner {
  display: none !important;
}

/* Cookie banner görünüyorsa, FAB onun üstüne çıksın - mobilde */
@media (max-width: 900px) {
  body:has(.cookie-banner.visible) .fab-whatsapp { bottom: 7rem; }
}

/* iPhone safe area */
@supports (padding: env(safe-area-inset-bottom)) {
  .fab-whatsapp { bottom: calc(1rem + env(safe-area-inset-bottom)); }
  .cookie-banner { padding-bottom: calc(1.25rem + env(safe-area-inset-bottom)); }
}

/* Küçük ekran ek optimizasyonları */
@media (max-width: 640px) {
  .hero { padding-top: 100px; min-height: auto; }
  .hero__actions { gap: 0.75rem; }
  .hero__actions .btn { flex: 1; justify-content: center; min-width: 0; }
  .hero__card { padding: 1.5rem; }

  .page-header { padding-top: 130px; padding-bottom: 2.5rem; }

  section { padding: 3rem 0; }

  .quote-form { padding: 1.75rem 1.25rem; }
  .faq-question { padding: 1.25rem; font-size: 1rem; }
  .faq-answer__inner { padding: 0 1.25rem 1.25rem; }

  .process-step { padding: 1.5rem; }
  .process-step__num { font-size: 3rem; }

  .cookie-banner { padding: 1rem; }
  .cookie-banner__text { font-size: 0.8125rem; }
}

/* ========================================
   FOOTER NUKE — Mobil Force Fix
   ======================================== */
@media (max-width: 1023px) {
  .footer .container { display: block !important; }
  .footer__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
    width: 100% !important;
  }
  .footer__grid > div {
    width: 100% !important;
    max-width: 100% !important;
    grid-column: auto !important;
    grid-row: auto !important;
    position: static !important;
    float: none !important;
    display: block !important;
  }
}
