/* ==========================================================
   Limasol Sigorta Lefkoşa / Hamitköy
   Renkler limasolsigorta.com logosundan (#FE5000) ve kurumsal
   koyu gri (#343E47) tonundan alınmıştır.
   ========================================================== */

:root {
  --brand: #FE5000;
  --brand-600: #E84800;
  --brand-700: #D04300;      /* beyaz zemin üzerinde turuncu metin (AA) */
  --brand-800: #A83400;
  --brand-50: #FFF4EE;
  --brand-100: #FFE4D4;
  --btn-grad: linear-gradient(135deg, #E24A00, #C23D00);

  --slate: #343E47;
  --slate-800: #28313A;
  --slate-900: #1E252C;

  --ink: #1A1D21;
  --text: #5E6773;
  --muted: #8A919B;
  --line: #ECEEF1;
  --soft: #F6F7F9;
  --wa: #25D366;
  --danger: #D92D20;

  --sh-card: 0 12px 30px rgba(20, 24, 28, .10);
  --sh-soft: 0 6px 20px rgba(20, 24, 28, .05);

  --f-head: "Raleway", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1240px;
  --topbar-h: 38px;
  --mainbar-h: 104px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--mainbar-h) + 12px); }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--f-head); color: var(--ink); margin: 0; line-height: 1.15; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.ico {
  width: 1em; height: 1em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
.site-header :focus-visible, .hero :focus-visible, .cta :focus-visible { outline-color: #fff; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; font-weight: 700;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px; border-radius: 50px; border: 0;
  font-size: 15px; font-weight: 700; line-height: 1.2;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn .ico { font-size: 17px; }
.btn-white { background: #fff; color: var(--brand-700); box-shadow: 0 10px 24px rgba(0, 0, 0, .2); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 0, 0, .25); }
.btn-ghost { background: rgba(255, 255, 255, .08); color: #fff; border: 1.6px solid rgba(255, 255, 255, .6); }
.btn-ghost:hover { background: rgba(255, 255, 255, .18); border-color: #fff; }
.btn-brand { background: var(--btn-grad); color: #fff; box-shadow: 0 10px 24px rgba(208, 67, 0, .28); }
.btn-brand:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(208, 67, 0, .34); }
.btn-block { width: 100%; }

.eyebrow-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: 30px;
  background: rgba(0, 0, 0, .14); border: 1px solid rgba(255, 255, 255, .22);
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.eyebrow-chip .ico { font-size: 14px; }

.head-eyebrow {
  display: inline-block; margin-bottom: 10px;
  font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brand-700);
}
.head-eyebrow-light { color: #FF8A4C; }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header { position: sticky; top: calc(var(--topbar-h) * -1); z-index: 50; }

.topbar { background: var(--slate-900); color: rgba(255, 255, 255, .8); font-size: 12.5px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--topbar-h); }
.topbar-left, .topbar-right, .topbar-social { display: flex; align-items: center; gap: 22px; }
.topbar-social { gap: 14px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; white-space: nowrap; }
.topbar a:hover { color: #fff; }
.topbar .ico { font-size: 14px; color: #FF7A33; }
.topbar-assist b { color: #fff; }
.topbar-social .ico { color: rgba(255, 255, 255, .8); font-size: 15px; }
.topbar-social a:hover .ico { color: #fff; }

/* Dil seçici */
.i18n-wait body { visibility: hidden; }
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 9px;
  border-radius: 8px; border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .06);
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .5px;
}
.lang-btn:hover { background: rgba(255, 255, 255, .12); }
.lang-btn .ico { font-size: 14px; color: #FF7A33; }
.lang-btn .chev { font-size: 12px; color: rgba(255, 255, 255, .7); transition: transform .2s; }
.lang.open .lang-btn .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 80; min-width: 160px; padding: 8px;
  border-radius: 12px; background: #fff; box-shadow: 0 18px 40px rgba(20, 24, 28, .22);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s, transform .2s, visibility .2s;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.topbar .lang-menu a { display: flex; justify-content: space-between; gap: 12px; padding: 8px 12px; border-radius: 8px; color: var(--ink); font-size: 13.5px; font-weight: 600; }
.topbar .lang-menu a b { color: var(--muted); font-size: 11px; }
.topbar .lang-menu a:hover, .topbar .lang-menu a[aria-current="true"] { background: var(--brand-50); color: var(--brand-700); }

.mainbar {
  background: var(--brand);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: box-shadow .3s;
}
.site-header.is-scrolled .mainbar { box-shadow: 0 10px 30px rgba(120, 35, 0, .28); }
.mainbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--mainbar-h); }

.brand { display: flex; align-items: center; gap: 14px; color: #fff; flex: none; }
.brand img { height: 74px; width: auto; }
.brand-tag {
  display: flex; flex-direction: column;
  padding-left: 14px; border-left: 1px solid rgba(255, 255, 255, .38);
  font-size: 12px; font-weight: 700; letter-spacing: .2px; line-height: 1.4;
}
.brand-tag b { font-family: var(--f-head); font-size: 16px; font-weight: 900; letter-spacing: .2px; line-height: 1.25; }
.brand-loc { font-size: 10.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255, 255, 255, .82); }

.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.header-actions { display: flex; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.pill .ico { font-size: 14px; }
.pill-light { background: #fff; color: var(--brand-700); }
.pill:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 0, 0, .18); }

.nav-list { display: flex; align-items: center; gap: 26px; }
.nav-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 2px; background: none; border: 0;
  color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; white-space: nowrap;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 1px; height: 2px; border-radius: 2px;
  background: #fff; transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav-link:hover::after, .has-dd:hover > .nav-link::after, .has-dd.open > .nav-link::after { transform: scaleX(1); }
.chev { font-size: 14px; transition: transform .2s; }
.has-dd:hover > .nav-link .chev, .has-dd.open > .nav-link .chev { transform: rotate(180deg); }

.has-dd { position: relative; }
.dd {
  position: absolute; top: calc(100% + 14px); left: 50%;
  min-width: 250px; padding: 12px;
  background: #fff; border-radius: 16px; box-shadow: 0 24px 60px rgba(20, 24, 28, .18);
  opacity: 0; visibility: hidden; transform: translate(-50%, 8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.dd::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; } /* hover köprüsü */
.has-dd:hover > .dd, .has-dd:focus-within > .dd, .has-dd.open > .dd { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dd a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 10px;
  color: var(--ink); font-size: 14px; font-weight: 600; transition: background .15s, color .15s;
}
.dd a:hover { background: var(--brand-50); color: var(--brand-700); }
.dd-ico {
  width: 32px; height: 32px; border-radius: 9px; flex: none;
  display: grid; place-items: center; background: var(--brand-50); color: var(--brand); font-size: 16px;
}
.ext { font-size: 12px; opacity: .6; margin-left: auto; }
.dd-mega { display: grid; grid-template-columns: repeat(3, minmax(210px, 1fr)); gap: 4px 10px; padding: 20px; min-width: 700px; }
.dd-title { padding: 4px 12px 8px; font-size: 11.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--brand-700); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .4); background: rgba(255, 255, 255, .1);
  color: #fff; font-size: 22px; position: relative; z-index: 70;
}
.nav-toggle .ico-close { display: none; }
.nav-backdrop { display: none; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(118deg, #FE5000 0%, #E24600 46%, #9E3100 100%);
  padding: 64px 0 150px;
}
.hero::before { /* ince çizgi dokusu */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: repeating-linear-gradient(118deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 22px);
}
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow-1 { width: 640px; height: 640px; right: -140px; top: -220px; background: radial-gradient(circle, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, 0) 68%); }
.hero-glow-2 { width: 560px; height: 560px; left: -180px; bottom: -280px; background: radial-gradient(circle, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, 0) 70%); }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px; }
.hero h1 {
  color: #fff; font-size: clamp(40px, 5vw, 60px); font-weight: 900;
  letter-spacing: -.5px; line-height: 1.06; margin: 22px 0 18px;
  text-shadow: 0 2px 18px rgba(120, 35, 0, .18);
}
.hero h1 .hl { font-weight: 600; }
.hero-sub { max-width: 530px; font-size: 17.5px; font-weight: 500; line-height: 1.65; color: #fff; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 28px; }
.trust { display: flex; flex-wrap: wrap; gap: 12px 26px; font-size: 14px; font-weight: 600; }
.trust li { display: flex; align-items: center; gap: 9px; }
.trust-ico { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: rgba(0, 0, 0, .16); font-size: 14px; }

/* Hero görseli (telefon + kartlar) */
.hero-visual { position: relative; height: 480px; }
.hv-stage { position: absolute; left: 50%; top: 50%; width: 480px; height: 480px; margin: -240px 0 0 -240px; }
.hv-shield { position: absolute; left: 30px; top: 20px; width: 420px; height: 440px; color: rgba(255, 255, 255, .09); stroke-width: 1; }

.hv-phone {
  position: absolute; left: 120px; top: 12px; width: 240px; height: 456px;
  padding: 10px; border-radius: 38px; background: #15191D;
  box-shadow: 0 40px 80px rgba(60, 15, 0, .45), inset 0 0 0 2px rgba(255, 255, 255, .08);
  transform: rotate(6deg);
  animation: float 6s ease-in-out infinite;
}
.hv-notch { position: absolute; top: 10px; left: 50%; width: 84px; height: 22px; margin-left: -42px; background: #15191D; border-radius: 0 0 14px 14px; z-index: 2; }
.hv-screen { position: relative; height: 100%; overflow: hidden; border-radius: 29px; background: #F4F5F7; padding: 36px 13px 13px; color: var(--ink); }
.hv-app-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.hv-app-head img { height: 30px; width: auto; }
.hv-app-head span { font-size: 11px; font-weight: 800; }
.hv-policy { border-radius: 16px; padding: 13px; color: #fff; background: linear-gradient(135deg, #FE5000, #B83800); box-shadow: 0 10px 20px rgba(254, 80, 0, .3); }
.hv-policy-top { display: flex; align-items: center; justify-content: space-between; }
.hv-policy small { font-size: 8.5px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; opacity: .9; }
.hv-badge { display: inline-flex; align-items: center; gap: 3px; padding: 2px 7px; border-radius: 20px; background: rgba(255, 255, 255, .22); font-size: 9px; font-weight: 700; }
.hv-policy strong { display: block; margin: 4px 0 12px; font-family: var(--f-head); font-size: 17px; font-weight: 800; }
.hv-policy-meta { display: flex; justify-content: space-between; font-size: 9px; opacity: .95; }
.hv-policy-meta b { display: block; font-size: 11.5px; }
.hv-item { display: flex; align-items: center; gap: 10px; margin-top: 10px; padding: 10px; border-radius: 12px; background: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, .04); }
.hv-item-ico { width: 32px; height: 32px; border-radius: 9px; flex: none; display: grid; place-items: center; background: var(--brand-50); color: var(--brand); font-size: 16px; }
.hv-item-body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.hv-item-t { font-size: 11px; font-weight: 700; line-height: 1.3; }
.hv-item-d { font-size: 9.5px; color: var(--muted); }
.hv-item-arrow { font-size: 14px; color: var(--muted); }
.hv-bar { height: 5px; margin-top: 5px; border-radius: 5px; background: #ECEEF1; overflow: hidden; }
.hv-bar i { display: block; width: 72%; height: 100%; background: var(--brand); border-radius: 5px; }
.hv-btn { margin-top: 12px; padding: 10px; border-radius: 12px; background: var(--ink); color: #fff; text-align: center; font-size: 11px; font-weight: 700; }

.hv-float {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 11px 15px 11px 11px; border-radius: 14px; background: #fff;
  box-shadow: 0 18px 40px rgba(60, 15, 0, .3);
  color: var(--ink); font-size: 12.5px; font-weight: 700; line-height: 1.3; white-space: nowrap;
}
.hv-float small { display: block; font-size: 11px; font-weight: 600; color: var(--muted); }
.hv-float-ico { width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center; font-size: 17px; }
.hv-float-ico.ok { background: #E7F8EE; color: #15A04A; }
.hv-float-ico.brand { background: var(--brand-50); color: var(--brand); }
.hv-float-1 { left: -34px; top: 262px; animation: float 5s ease-in-out .6s infinite; }
.hv-float-2 { right: -30px; bottom: 44px; animation: float 5.5s ease-in-out 1.2s infinite; }
.hv-float-3 { right: -34px; top: -6px; animation: float 6.5s ease-in-out .3s infinite; }

@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }

/* ==========================================================
   HIZLI İŞLEMLER
   ========================================================== */
.quick-wrap { position: relative; z-index: 2; margin-top: -118px; }
.quick-eyebrow { margin-bottom: 16px; text-align: center; color: #fff; font-size: 12.5px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; }
.quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.quick-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  padding: 26px 18px 24px; border-radius: 16px; background: #fff; box-shadow: var(--sh-card);
  transition: transform .25s, box-shadow .25s;
}
.quick-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(20, 24, 28, .14); }
.quick-ico {
  width: 54px; height: 54px; margin-bottom: 8px; border-radius: 14px;
  display: grid; place-items: center; font-size: 22px; color: #fff;
  background: linear-gradient(140deg, #FE5000, #C23D00); box-shadow: 0 8px 18px rgba(254, 80, 0, .28);
}
.quick-t { font-size: 16px; font-weight: 800; color: var(--ink); }
.quick-d { font-size: 13.5px; }

/* ==========================================================
   BÖLÜMLER
   ========================================================== */
.section { padding: 84px 0; }
.section-soft { background: var(--soft); }
.section-head { max-width: 680px; margin: 0 auto 46px; text-align: center; }
.section-head h2, .contact-info h2, .hasar h2 { font-size: clamp(28px, 3.4vw, 36px); font-weight: 900; letter-spacing: -.5px; }
.section-head p { margin-top: 14px; font-size: 16px; }

/* Ürünler */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  padding: 30px 26px; border-radius: 18px; background: #fff; border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.prod::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), #FF8A3D);
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.prod:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(20, 24, 28, .10); border-color: transparent; }
.prod:hover::before { transform: scaleX(1); }
.prod-ico {
  width: 60px; height: 60px; margin-bottom: 20px; border-radius: 16px;
  display: grid; place-items: center; font-size: 26px;
  background: var(--brand-50); color: var(--brand); transition: background .25s, color .25s;
}
.prod:hover .prod-ico { background: var(--brand); color: #fff; }
.prod h3 { margin-bottom: 10px; font-size: 18px; font-weight: 800; }
.prod p { flex: 1; margin-bottom: 18px; font-size: 14.5px; }
.prod-more { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-700); font-size: 14px; font-weight: 700; }
.prod-more::after { content: ""; position: absolute; inset: 0; } /* tüm kart tıklanabilir */
.prod-more .ico { transition: transform .2s; }
.prod:hover .prod-more .ico { transform: translateX(4px); }
.products-note { margin-top: 34px; text-align: center; font-size: 14.5px; }
.products-note a { color: var(--brand-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* Online işlemler */
.section-online { background: linear-gradient(180deg, #fff 0%, var(--brand-50) 100%); }
.online-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.online-card {
  display: flex; flex-direction: column; padding: 32px 28px; border-radius: 18px;
  background: #fff; border: 1px solid var(--brand-100); box-shadow: var(--sh-soft);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.online-card:hover, .js .online-card.reveal.in:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(208, 67, 0, .12); border-color: var(--brand); transition-delay: 0s; }
.online-ico {
  width: 56px; height: 56px; margin-bottom: 20px; border-radius: 16px;
  display: grid; place-items: center; font-size: 24px; color: #fff;
  background: var(--btn-grad); box-shadow: 0 8px 18px rgba(254, 80, 0, .25);
}
.online-card h3 { margin-bottom: 10px; font-size: 19px; font-weight: 800; }
.online-card p { flex: 1; margin-bottom: 18px; font-size: 14.5px; }
.online-more { display: inline-flex; align-items: center; gap: 7px; color: var(--brand-700); font-size: 14px; font-weight: 700; }
.online-more .ico { font-size: 13px; }
.online-note { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 30px; text-align: center; color: var(--ink); font-size: 15px; font-weight: 600; }
.online-note .ico { font-size: 20px; color: var(--brand); }

/* Neden biz */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature { padding: 30px 26px; border-radius: 16px; background: #fff; box-shadow: var(--sh-soft); }
.feature-ico {
  width: 56px; height: 56px; margin-bottom: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 23px; color: #fff;
  background: linear-gradient(140deg, #FE5000, #B83800); box-shadow: 0 8px 18px rgba(254, 80, 0, .25);
}
.feature h3 { margin-bottom: 10px; font-size: 18px; font-weight: 800; }
.feature p { font-size: 14.5px; }

/* CTA */
.cta-wrap { padding: 84px 0; }
.cta {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 50px 58px; border-radius: 24px; color: #fff;
  background: linear-gradient(120deg, #FE5000 0%, #B83800 100%);
  box-shadow: 0 24px 50px rgba(254, 80, 0, .28);
}
.cta-glow { position: absolute; width: 440px; height: 440px; right: -110px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 70%); pointer-events: none; }
.cta-text { position: relative; max-width: 620px; }
.cta h2 { margin: 16px 0 10px; color: #fff; font-size: clamp(26px, 3vw, 32px); font-weight: 800; }
.cta p { font-size: 16px; color: #fff; }
.cta-actions { position: relative; display: flex; flex-wrap: wrap; gap: 12px; flex: none; }

/* Hasar */
.hasar {
  position: relative; overflow: hidden; padding: 84px 0; color: rgba(255, 255, 255, .78);
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-900) 100%);
}
.hasar::before {
  content: ""; position: absolute; width: 560px; height: 560px; right: -200px; top: -240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 80, 0, .22), transparent 70%); pointer-events: none;
}
.hasar-inner { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.hasar h2 { margin-bottom: 14px; color: #fff; }
.hasar-head > p { font-size: 16px; }
.assist-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.assist-row .assist-card { margin-top: 0; }
.assist-card-alt { background: rgba(255, 255, 255, .04); }
.assist-card-alt .assist-ico { background: rgba(255, 255, 255, .12); }
.assist-card-alt strong { font-size: 21px; }
.assist-card {
  display: inline-flex; align-items: center; gap: 16px; margin-top: 28px;
  padding: 16px 24px 16px 16px; border-radius: 18px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  transition: background .2s, transform .2s;
}
.assist-card:hover { background: rgba(255, 255, 255, .1); transform: translateY(-2px); }
.assist-ico { width: 52px; height: 52px; border-radius: 14px; flex: none; display: grid; place-items: center; font-size: 24px; color: #fff; background: var(--btn-grad); }
.assist-card small { display: block; font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: rgba(255, 255, 255, .7); }
.assist-card strong { font-family: var(--f-head); font-size: 26px; font-weight: 900; letter-spacing: .5px; color: #fff; }
.steps { display: grid; gap: 16px; }
.steps li { display: flex; gap: 20px; padding: 24px 26px; border-radius: 18px; background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .08); }
.step-no { min-width: 48px; font-family: var(--f-head); font-size: 30px; font-weight: 900; line-height: 1; color: #FF6A1F; }
.steps h3 { margin-bottom: 6px; font-size: 18px; font-weight: 800; color: #fff; }
.steps p { font-size: 14.5px; }

/* Google yorumları */
.rv-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.rv-head h2 { font-size: clamp(28px, 3.4vw, 36px); font-weight: 900; letter-spacing: -.5px; }
.rv-rating { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-soft); }
.rv-rating[hidden] { display: none; }
.rv-score { font-family: var(--f-head); font-size: 34px; font-weight: 900; line-height: 1; color: var(--ink); }
.rv-rating small { display: block; font-size: 12.5px; color: var(--muted); }
.rv-stars { display: flex; gap: 2px; color: #FBBC05; font-size: 17px; }
.rv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 26px; }
.rv-grid:empty { display: none; }
.rv-card { display: flex; flex-direction: column; padding: 30px 28px 26px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 26px rgba(20, 24, 28, .05); }
.rv-card .rv-stars { margin-bottom: 14px; }
.rv-text { flex: 1; margin-bottom: 20px; font-size: 14.5px; line-height: 1.7; color: var(--ink); }
.rv-author { display: flex; align-items: center; gap: 12px; }
.rv-avatar { width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 800; font-size: 18px; color: #fff; background: var(--btn-grad); }
.rv-author strong { display: block; color: var(--ink); font-size: 14.5px; }
.rv-author small { font-size: 12.5px; color: var(--muted); }
.rv-cta { display: flex; align-items: center; gap: 22px; padding: 28px 32px; border-radius: 20px; background: var(--soft); border: 1px solid var(--line); }
.rv-cta-ico { width: 56px; height: 56px; border-radius: 16px; flex: none; display: grid; place-items: center; font-size: 26px; color: #FBBC05; background: #fff; box-shadow: var(--sh-soft); }
.rv-cta-text { flex: 1; }
.rv-cta h3 { margin-bottom: 6px; font-size: 19px; font-weight: 800; }
.rv-cta p { font-size: 14.5px; }
.rv-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: none; }
.rv-actions .btn { padding: 13px 22px; font-size: 14px; }
.btn-line { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-line:hover { border-color: var(--brand); color: var(--brand-700); }

/* Teklif & iletişim */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { margin-bottom: 28px; font-size: 16px; }
.contact-list { display: grid; gap: 12px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; padding: 15px 18px; border-radius: 14px; background: #fff; box-shadow: var(--sh-soft); }
.contact-list div { display: flex; flex-direction: column; }
.ci { width: 42px; height: 42px; border-radius: 12px; flex: none; display: grid; place-items: center; font-size: 19px; background: var(--brand-50); color: var(--brand); }
.contact-list strong { color: var(--ink); font-size: 14px; }
.contact-list span, .contact-list a { font-size: 14.5px; }
.contact-list small, .contact-list small span { color: var(--muted); font-size: 12.5px; }
.contact-list a:hover { color: var(--brand-700); }

.quote-form { padding: 34px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: 0 24px 50px rgba(20, 24, 28, .08); }
.quote-form h3 { margin-bottom: 4px; font-size: 22px; font-weight: 900; }
.form-sub { margin-bottom: 22px; font-size: 13.5px; color: var(--muted); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1.5px solid transparent; background: var(--soft);
  font: inherit; font-size: 15px; color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235E6773' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}
.field input::placeholder, .field textarea::placeholder { color: #A3A9B1; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(254, 80, 0, .12); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); background: #FFF5F4; }
.check { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 20px; font-size: 13px; cursor: pointer; }
.check input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--brand); }
.check.invalid span { color: var(--danger); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn[disabled] { opacity: .7; cursor: wait; transform: none; }
.form-status a { color: #15803D; text-decoration: underline; }
.form-note { margin-top: 12px; text-align: center; font-size: 12.5px; color: var(--muted); }
.form-status { margin-top: 8px; text-align: center; font-size: 13.5px; font-weight: 600; }
.form-status:empty { display: none; }
.form-status.ok { color: #15803D; }
.form-status.err { color: var(--danger); }

.map-card { position: relative; height: 380px; margin-top: 56px; overflow: hidden; border-radius: 22px; background: #E9ECEF; box-shadow: var(--sh-soft); }
.map-card iframe { display: block; width: 100%; height: 100%; border: 0; }
.map-overlay {
  position: absolute; left: 24px; bottom: 24px; max-width: calc(100% - 48px);
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px 14px 14px; border-radius: 16px; background: #fff;
  box-shadow: 0 18px 40px rgba(20, 24, 28, .18);
}
.map-overlay img { height: 46px; width: auto; flex: none; }
.map-overlay strong { display: block; color: var(--ink); font-size: 14.5px; }
.map-overlay span { display: block; font-size: 13px; }
.map-overlay a { display: inline-flex; align-items: center; gap: 5px; margin-top: 2px; color: var(--brand-700); font-size: 13px; font-weight: 700; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer { background: #1B2127; color: rgba(255, 255, 255, .68); font-size: 14px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.25fr; gap: 40px; padding-top: 70px; padding-bottom: 50px; }
.footer-brand img { height: 74px; width: auto; margin-bottom: 18px; }
.footer-tag { margin-bottom: 10px; font-family: var(--f-head); font-size: 20px; font-weight: 800; line-height: 1.3; color: #fff; }
.site-footer h4 { position: relative; margin-bottom: 18px; padding-bottom: 12px; font-size: 15px; font-weight: 800; letter-spacing: .4px; color: #fff; }
.site-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 3px; border-radius: 3px; background: var(--brand); }
.footer-col li { margin-bottom: 10px; }
.footer-col a { display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact li > .ico { margin-top: 3px; font-size: 16px; color: #FF7A33; }
.footer-contact a { display: inline; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1);
  color: #fff; font-size: 16px; transition: background .2s, border-color .2s;
}
.socials a:hover { background: var(--brand); border-color: var(--brand); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); }
.footer-bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 16px; padding-top: 22px; padding-bottom: 22px; font-size: 13px; }

.footer-credit { padding-bottom: 20px; text-align: center; font-size: 12.5px; color: rgba(255, 255, 255, .45); }
.footer-credit a { color: rgba(255, 255, 255, .6); text-decoration: underline; text-underline-offset: 3px; }
.footer-credit a:hover { color: #fff; }

/* Sabit butonlar */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; font-size: 30px; color: #fff; background: var(--wa);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25); transition: transform .2s;
}
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--wa);
  z-index: -1; animation: pulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: scale(1.07); }
@keyframes pulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.6); opacity: 0; } }
.to-top {
  position: fixed; right: 30px; bottom: 94px; z-index: 40;
  width: 42px; height: 42px; border: 0; border-radius: 12px;
  display: grid; place-items: center; font-size: 18px; color: #fff; background: var(--slate-900);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .25s, transform .25s, visibility .25s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }

/* Scroll animasyonu */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; transition-delay: calc(var(--d, 0) * 90ms); }
.js .reveal.in { opacity: 1; transform: none; }
.js .quick-card.reveal.in:hover, .js .prod.reveal.in:hover { transform: translateY(-5px); transition-delay: 0s; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1180px) {
  .nav-list { gap: 18px; }
  .nav-link { font-size: 13px; }
  .hide-lg { display: none !important; }
}

@media (max-width: 1080px) {
  .products, .features { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  :root { --mainbar-h: 84px; }
  .brand img { height: 60px; }
  .brand-tag { font-size: 11px; }
  .brand-tag b { font-size: 14.5px; }
  .brand-loc { font-size: 9.5px; letter-spacing: 1.2px; }

  /* Mobil menü */
  .nav-toggle { display: inline-flex; }
  .header-right {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 65;
    width: min(380px, 88vw); padding: 96px 22px 32px;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: #fff; overflow-y: auto; box-shadow: -20px 0 60px rgba(0, 0, 0, .2);
    transform: translateX(100%); visibility: hidden; transition: transform .35s ease, visibility .35s;
  }
  .nav-open .header-right { transform: none; visibility: visible; }
  .header-actions { order: 2; flex-direction: column; margin-top: 24px; }
  .header-actions .pill { justify-content: center; padding: 13px 18px; font-size: 14px; }
  .pill-light { background: var(--btn-grad); color: #fff; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-link { width: 100%; justify-content: space-between; padding: 16px 4px; color: var(--ink); font-size: 15px; }
  .nav-link::after { display: none; }
  .has-dd:hover > .nav-link .chev { transform: none; }
  .has-dd.open > .nav-link .chev { transform: rotate(180deg); }
  .dd, .dd-mega {
    position: static; display: none; min-width: 0; padding: 0 0 12px;
    opacity: 1; visibility: visible; transform: none; box-shadow: none; border-radius: 0;
  }
  .has-dd:hover > .dd, .has-dd:focus-within > .dd, .has-dd.open > .dd { transform: none; }
  .dd::before { display: none; }
  .has-dd.open > .dd { display: block; }
  .has-dd.open > .dd-mega { display: grid; grid-template-columns: 1fr; }
  .site-header :focus-visible { outline-color: var(--brand); }
  .nav-backdrop {
    display: block; position: fixed; inset: 0; z-index: 60;
    background: rgba(15, 18, 22, .5); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  }
  .nav-open .nav-backdrop { opacity: 1; visibility: visible; }
  .nav-open .nav-toggle { color: var(--ink); background: #fff; border-color: var(--line); }
  .nav-open .nav-toggle .ico-open { display: none; }
  .nav-open .nav-toggle .ico-close { display: block; }
  body.nav-open { overflow: hidden; }

  .hero { padding: 48px 0 150px; }
  .hero-inner { grid-template-columns: 1fr; gap: 10px; }
  .hero-visual { height: 440px; }
  .quick { grid-template-columns: repeat(2, 1fr); }
  .online-grid, .rv-grid { grid-template-columns: 1fr; }
  .rv-head { flex-direction: column; align-items: flex-start; }
  .rv-cta { flex-direction: column; align-items: flex-start; }
  .cta { flex-direction: column; align-items: flex-start; padding: 40px 34px; }
  .hasar-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hide-md { display: none !important; }
}

@media (max-width: 600px) {
  body { font-size: 14.5px; }
  .container { padding-inline: 18px; }
  .section, .cta-wrap, .hasar { padding: 64px 0; }
  .brand img { height: 54px; }
  .brand-tag { padding-left: 10px; font-size: 10px; letter-spacing: 0; }
  .brand-tag b { font-size: 13px; }
  .brand-loc { font-size: 9px; letter-spacing: .8px; }
  .hide-sm { display: none !important; }

  .hero-cta .btn { flex: 1 1 auto; }
  .hero-visual { height: 370px; }
  .hv-stage { transform: scale(.76); }
  .quick { gap: 12px; }
  .quick-card { padding: 20px 12px; }
  .quick-ico { width: 48px; height: 48px; font-size: 20px; }
  .quick-t { font-size: 15px; }
  .quick-d { font-size: 12.5px; }
  .products, .features { grid-template-columns: 1fr; }
  .cta { padding: 34px 24px; }
  .cta-actions, .cta-actions .btn { width: 100%; }
  .steps li { padding: 20px; gap: 14px; }
  .assist-card strong { font-size: 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 26px 20px; }
  .map-card { height: 420px; }
  .map-overlay { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-top: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
