:root {
  --green: #0F9D58;
  --green-dark: #0B7A44;
  --green-light: #E6F4EC;
  --mavi: #4285F4;
  --mavi-koyu: #3367D6;
  --mavi-acik: #E8F0FE;
  --bg-alt: #F4FAF7;
  --text: #202124;
  --text-2: #5F6368;
  --white: #FFFFFF;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.1);
  --gri: #F4F5F6;
  --gri-koyu: #D7DCDF;
  --gri-kenar: #E5E8E9;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 150ms ease;
}
.btn-primary { background: var(--mavi); color: var(--white); }
.btn-primary:hover, .btn-primary:focus { background: var(--mavi-koyu); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover, .btn-white:focus { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-block { width: 100%; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  background: linear-gradient(180deg, #FAFBFB 0%, var(--gri) 62%, #ECEEF0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(60, 64, 67, 0.10),
    0 2px 0 rgba(60, 64, 67, 0.05),
    0 8px 20px rgba(60, 64, 67, 0.14),
    0 18px 38px rgba(60, 64, 67, 0.09);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

.logo-badge {
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-amblem {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 6px;
  filter: drop-shadow(0 8px 16px rgba(60, 64, 67, 0.28));
  transition: transform 150ms ease;
}
.logo-amblem img { display: block; width: auto; height: 98px; }
.logo-yazi { display: block; position: relative; top: 9px; width: auto; height: 42px; }
.logo-badge:hover .logo-amblem,
.logo-badge:focus .logo-amblem { transform: translateY(3px) scale(1.03); }

.nav { display: flex; align-self: stretch; align-items: stretch; gap: 28px; }
.nav > a {
  display: flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 150ms ease;
}
.nav > a:hover, .nav > a:focus { color: var(--green); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: color 150ms ease;
}
.header-phone svg { width: 18px; height: 18px; color: var(--green); }
.header-phone:hover, .header-phone:focus { color: var(--green); }
.btn-header { min-height: 44px; padding: 10px 22px; font-size: 15px; }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 8px 12px;
  background: var(--white);
  border: 1.5px solid var(--green);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(11, 122, 68, 0.14);
  cursor: pointer;
  transition: all 150ms ease;
}
.menu-toggle:hover, .menu-toggle:focus {
  background: var(--green-light);
  box-shadow: 0 4px 10px rgba(11, 122, 68, 0.20);
}
.menu-toggle-cizgiler {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  flex-shrink: 0;
}
.menu-toggle-cizgiler span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: all 150ms ease;
}
.menu-toggle-yazi {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.2px;
  transition: color 150ms ease;
}
.menu-toggle:hover .menu-toggle-yazi,
.menu-toggle:focus .menu-toggle-yazi { color: var(--green); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background:
    radial-gradient(ellipse 62% 80% at 88% -12%, rgba(15, 157, 88, 0.20), transparent 68%),
    radial-gradient(ellipse 55% 72% at -10% 112%, rgba(15, 157, 88, 0.13), transparent 62%),
    linear-gradient(180deg, #E3F2E9 0%, var(--bg-alt) 100%);
}

.hero-dalga {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-dalga svg { display: block; width: 100%; height: 100%; }
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.text-green { color: var(--green); }
.hero-sub { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.hero-desc { font-size: 16px; color: var(--text-2); margin-bottom: 24px; max-width: 480px; }
.hero-checks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hero-checks li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.hero-checks svg { width: 22px; height: 22px; flex-shrink: 0; }

.quote-card {
  background: linear-gradient(180deg, #FBFCFC 0%, var(--gri) 100%);
  border: 1px solid var(--gri-kenar);
  border-bottom-width: 0;
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 0 #D3D9DD,
    0 10px 20px rgba(60, 64, 67, 0.10);
  padding: 32px;
  scroll-margin-top: 90px;
}
.quote-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.quote-sub { font-size: 14px; color: var(--text-2); margin-bottom: 20px; }
.quote-form { display: flex; flex-direction: column; gap: 6px; }
.quote-form label { font-size: 13px; font-weight: 700; color: var(--text); margin-top: 8px; }
.quote-form select,
.quote-form input {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid #DADCE0;
  border-radius: var(--radius);
  outline: none;
  transition: all 150ms ease;
  appearance: none;
}
.quote-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%235F6368' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  cursor: pointer;
}
.quote-form select:focus,
.quote-form input:focus { border-color: var(--mavi); box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.18); }
.quote-form .btn { margin-top: 16px; }
.quote-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-2);
  margin-top: 12px;
}
.quote-note svg { width: 15px; height: 15px; flex-shrink: 0; }

.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-2);
  text-align: center;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--gri);
  border: 1px solid var(--gri-kenar);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px 16px;
  text-decoration: none;
  color: var(--text);
  text-align: center;
  transition: all 150ms ease;
}
.product-card:hover, .product-card:focus {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.product-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 1px solid var(--gri-kenar);
  border-radius: 16px;
}
.product-icon svg { width: 38px; height: 38px; }
.product-name { font-size: 15px; font-weight: 700; line-height: 1.35; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--green);
  border-radius: 16px;
  padding: 32px 16px;
  box-shadow: var(--shadow);
}
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  margin-bottom: 6px;
}
.stat-icon svg { width: 26px; height: 26px; }
.stat-num { font-size: 30px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.9); }

.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}
.step {
  flex: 1;
  max-width: 320px;
  background: var(--white);
  border: 1px solid #EEF1EF;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 14px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--text-2); }
.step-arrow { display: flex; align-items: center; }
.step-arrow svg { width: 28px; height: 28px; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.stars { color: var(--green); font-size: 18px; letter-spacing: 3px; margin-bottom: 12px; }
.testimonial-card p { font-size: 15px; color: var(--text); margin-bottom: 16px; }
.t-name { font-size: 13.5px; font-weight: 700; color: var(--text-2); }

.cta-band { background: var(--green); padding: 56px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer {
  position: relative;
  background: var(--gri-koyu);
  color: var(--text);
  padding: 56px 0 0;
  margin: 32px 0 0;
  border-radius: 0;
  overflow: hidden;
  border-top: 1px solid #C8CED2;
}
.footer-dalga {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.footer-dalga svg { display: block; width: 100%; height: 100%; }
.footer > .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 20px;
  padding-bottom: 40px;
}
.footer-col {
  padding: 16px 12px;
  background: var(--white);
  border: 1px solid var(--gri-kenar);
  border-radius: 16px;
  transition: box-shadow 150ms ease, border-color 150ms ease;
}
.footer-col:hover {
  border-color: #D4D9DB;
  box-shadow: 0 4px 14px rgba(60, 64, 67, 0.10);
}
.footer-col h4 {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px 4px;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3C4043;
  text-decoration: none;
  font-size: 14.5px;
  margin-bottom: 10px;
  transition: color 150ms ease;
}
.footer-col a:hover, .footer-col a:focus { color: var(--green); }
.footer-col a svg { width: 17px; height: 17px; flex-shrink: 0; }
.footer-brand p { font-size: 14.5px; margin-top: 14px; max-width: 300px; color: #3C4043; }
.footer-col a.logo-footer-kart {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 4px;
  padding: 12px 18px;
  background: var(--white);
  border-radius: 16px;
  transform: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
  border: 1px solid var(--gri-kenar);
  box-shadow: 0 4px 12px rgba(60, 64, 67, 0.12);
}
.footer-col a.logo-footer-kart img { display: block; width: auto; height: 40px; }
.footer-col a.logo-footer-kart:hover,
.footer-col a.logo-footer-kart:focus {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(60, 64, 67, 0.18);
}
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14.5px;
  margin-top: 4px;
}
.footer-address svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  flex-wrap: wrap;
  border-top: 1px solid #AEB6BB;
  padding: 20px 0;
  font-size: 13.5px;
  color: #3C4043;
}
.footer-yasal {
  display: flex;
  align-items: center;
  gap: 10px 24px;
  flex-wrap: wrap;
}
.footer-yasal a {
  font-size: 13px;
  font-weight: 700;
  color: #3C4043;
  text-decoration: none;
  transition: color 150ms ease;
}
.footer-yasal a:hover, .footer-yasal a:focus { color: var(--green); }

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 150ms ease;
}
.wa-float:hover, .wa-float:focus { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

@media (max-width: 1200px) {
  .nav { gap: 18px; }
  .nav a, .nav-link { font-size: 14px; }
  .logo-marka-ust { font-size: 19px; }
  .btn-header { padding: 10px 16px; font-size: 14px; white-space: nowrap; }
}
@media (max-width: 1024px) {
  .hero h1 { font-size: 38px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .nav { gap: 18px; }
  .header-phone span { display: none; }
}

@media (max-width: 768px) {
  
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
  }
  .nav.open { display: flex; }
  .nav {
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav > a { padding: 14px 24px; border-bottom: 1px solid #F1F3F4; color: var(--text); }
  .nav > a:hover, .nav > a:focus { color: var(--green); }
  .nav > a:last-child { border-bottom: none; }
  .menu-toggle { display: flex; }
  .header-phone { display: none; }
  .btn-header { min-height: 40px; padding: 9px 13px; font-size: 13.5px; white-space: nowrap; }
  .header-actions { gap: 10px; }

  .hero { padding: 40px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 18px; }
  .quote-card { padding: 24px 20px; }

  .section { padding: 48px 0; }
  .section-title { font-size: 26px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card { padding: 20px 12px; gap: 10px; }
  .product-icon { width: 54px; height: 54px; }
  .product-icon svg { width: 32px; height: 32px; }
  .product-name { font-size: 13.5px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-num { font-size: 24px; }

  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; width: 100%; }
  .step-arrow { transform: rotate(90deg); justify-content: center; }

  .testimonials { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner h2 { font-size: 22px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-col { padding: 12px 9px; }
  .footer-col h4 { font-size: 14.5px; margin-bottom: 12px; }
  .footer-col a {
    align-items: flex-start;
    gap: 7px;
    font-size: 13px;
    margin-bottom: 9px;
    overflow-wrap: anywhere;
  }
  .footer-col a svg { width: 15px; height: 15px; margin-top: 3px; }
  .footer-brand p { font-size: 13px; margin-top: 12px; }
  .footer-address { font-size: 13px; gap: 7px; }
  .footer-address svg { width: 15px; height: 15px; }
}

.nav-item { position: relative; display: flex; align-items: center; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 150ms ease;
}
.nav-link:hover, .nav-link:focus { color: var(--green); }
.nav-link .chevron { width: 16px; height: 16px; transition: transform 150ms ease; }
.nav-item.open .chevron { transform: rotate(180deg); }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  background: var(--white);
  border: 1px solid rgba(15, 157, 88, 0.10);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  z-index: 110;
}
.dropdown::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 150ms ease;
}
.dropdown a:hover, .dropdown a:focus { background: var(--green-light); color: var(--green-dark); }
.nav-item.open .dropdown { display: block; }
@media (min-width: 769px) {
  .nav-item:focus-within .dropdown { display: block; }
}

.kampanya-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kampanya-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: 1px solid #EEF1EF;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  transition: all 150ms ease;
}
.kampanya-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.kampanya-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 14px;
}
.kampanya-icon svg { width: 30px; height: 30px; }
.kampanya-card h3 { font-size: 18px; font-weight: 800; }
.kampanya-card p { font-size: 14.5px; color: var(--text-2); flex: 1; }
.kampanya-link { color: var(--green); font-weight: 700; font-size: 14.5px; text-decoration: none; transition: color 150ms ease; }
.kampanya-link:hover, .kampanya-link:focus { color: var(--green-dark); text-decoration: underline; }

.iptal-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-outline { background: var(--white); color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover, .btn-outline:focus { background: var(--green); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.section-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-2);
  text-align: center;
}

.sss-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sss-item {
  background: var(--white);
  border: 1px solid #EEF1EF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.sss-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: color 150ms ease;
}
.sss-item summary:hover, .sss-item summary:focus { color: var(--green-dark); }
.sss-item summary::-webkit-details-marker { display: none; }
.sss-item summary::after { content: "+"; font-size: 20px; font-weight: 700; color: var(--green); flex-shrink: 0; }
.sss-item[open] summary::after { content: "–"; }
.sss-item p { padding: 0 20px 16px; font-size: 14.5px; color: var(--text-2); }
.sss-item p a { color: var(--green); font-weight: 600; }

@media (max-width: 1024px) {
  .kampanya-grid { grid-template-columns: 1fr; }
  .logo-badge { gap: 12px; }
  .logo-amblem { margin-top: 6px; }
  .logo-amblem img { height: 88px; }
  .logo-yazi { height: 36px; top: 7px; }
}
@media (max-width: 768px) {
  .header-inner { gap: 10px; }
  .logo-badge { gap: 8px; }
  .logo-amblem { margin-top: 5px; }
  .logo-amblem img { height: 76px; }
  .logo-yazi { height: 30px; top: 6px; }
  .footer-col a.logo-footer-kart { padding: 10px 14px; }
  .footer-col a.logo-footer-kart img { height: 34px; }
  .nav { overflow-x: hidden; }
  .nav-item { width: 100%; display: block; }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid #F1F3F4;
    color: var(--text);
  }
  .nav-link:hover, .nav-link:focus { color: var(--green); }
  .dropdown {
    position: static;
    transform: none;
    min-width: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--bg-alt);
    padding: 0;
  }
  .dropdown::before { display: none; }
  .dropdown a { padding: 12px 24px 12px 36px; border-radius: 0; border-bottom: 1px solid #ECF0ED; white-space: normal; }
  .footer { margin: 24px 0 0; border-radius: 0; }
  .iptal-actions .btn { width: 100%; }
}

.dropdown-grid {
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
  min-width: 288px;
  padding: 0;
  left: 0;
  transform: none;
  overflow: hidden;
  border: 1.5px solid var(--green);
  border-radius: 12px;
}
.nav-item.open .dropdown-grid { display: grid; }
.dropdown a.dd-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid #DEE7E2;
  border-radius: 0;
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  transition: background 150ms ease, box-shadow 150ms ease;
}
.dropdown a.dd-card:last-child { border-bottom: none; }
.dropdown a.dd-card:hover, .dropdown a.dd-card:focus {
  background: var(--green-light);
  box-shadow: inset 4px 0 0 var(--green);
}
.dd-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  flex-shrink: 0;
  background: var(--bg-alt);
  border-right: 1px solid #DEE7E2;
  border-radius: 0;
  box-shadow: none;
}
.dd-card-icon svg { width: 22px; height: 22px; }
.dd-card-text {
  display: flex;
  align-items: center;
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
}

.dropdown-list a {
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 150ms ease;
}
.dropdown-list a:hover, .dropdown-list a:focus {
  border-color: var(--green);
  transform: translateX(3px);
}

.brans-picker { position: relative; }
.brans-picker.js-hazir select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
.picker-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 62px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-2);
  text-align: left;
  background: var(--white);
  border: 1.5px solid #DADCE0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 150ms ease;
}
.picker-trigger:hover { border-color: var(--green); }
.picker-trigger:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 157, 88, 0.15);
}
.brans-picker.acik .picker-trigger {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 157, 88, 0.15);
}
.picker-trigger.secili { color: var(--text); font-weight: 700; }
.picker-trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--green-light);
  border-radius: 11px;
}
.picker-trigger-icon svg { width: 24px; height: 24px; }
.picker-trigger-text { flex: 1; }
.picker-trigger-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--text-2); transition: transform 150ms ease; }
.brans-picker.acik .picker-trigger-chevron { transform: rotate(180deg); }

.picker-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-height: 320px;
  overflow-y: auto;
  padding: 0;
  background: var(--white);
  border: 1.5px solid var(--green);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(11, 122, 68, 0.20), 0 4px 10px rgba(0, 0, 0, 0.08);
}
.picker-panel[hidden] { display: none; }
.picker-card {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: var(--white);
  border: none;
  border-bottom: 1px solid #DEE7E2;
  border-radius: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 150ms ease, box-shadow 150ms ease;
}
.picker-card:last-child { border-bottom: none; }
.picker-card:hover, .picker-card:focus {
  outline: none;
  background: var(--green-light);
  box-shadow: inset 4px 0 0 var(--green);
}
.picker-card[aria-selected="true"] {
  background: var(--green-light);
  box-shadow: inset 4px 0 0 var(--green);
}
.picker-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  flex-shrink: 0;
  background: var(--bg-alt);
  border-right: 1px solid #DEE7E2;
  border-radius: 0;
  box-shadow: none;
}
.picker-card-icon svg { width: 25px; height: 25px; }
.picker-card-text {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 13px 14px;
}
.picker-card-check {
  display: none;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin: auto 14px auto 0;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  color: var(--white);
}
.picker-card-check svg { width: 12px; height: 12px; }
.picker-card[aria-selected="true"] .picker-card-check { display: flex; }

@media (max-width: 1024px) {
  .dropdown-grid { min-width: 380px; }
}
@media (max-width: 768px) {
  
  .dropdown-grid {
    grid-template-columns: 1fr;
    min-width: 0;
    width: 100%;
    padding: 0;
    gap: 0;
    border: none;
    border-radius: 0;
  }
  .dropdown a.dd-card { padding: 0; gap: 0; }
  .dd-card-icon { width: 44px; }
  .dd-card-icon svg { width: 20px; height: 20px; }
  .dd-card-text { padding: 12px 14px; font-size: 13.5px; }
  .picker-panel { max-height: 300px; }
  .picker-card { font-size: 13.5px; }
  .picker-card-icon { width: 46px; }
  .picker-card-icon svg { width: 23px; height: 23px; }
  .picker-card-text { padding: 12px 12px; }
}

@media (min-width: 769px) {
  .nav-item:focus-within .dropdown-grid { display: grid; }
}

.picker-hata {
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #D93025;
}
.brans-picker.hatali .picker-trigger {
  border-color: #D93025;
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.15);
}

@media (max-width: 400px) {
  .header-inner { gap: 8px; }
  .header-actions { gap: 8px; }
  .logo-badge { gap: 6px; }
  .logo-amblem img { height: 64px; }
  .logo-yazi { height: 24px; top: 5px; }
  .btn-header { min-height: 38px; padding: 8px 11px; font-size: 12.5px; white-space: nowrap; }
  .menu-toggle { gap: 6px; padding: 7px 9px; border-radius: 10px; }
  .menu-toggle-cizgiler { width: 20px; gap: 4px; }
  .menu-toggle-yazi { font-size: 12px; }
  .footer-col a.logo-footer-kart { padding: 8px 11px; border-radius: 13px; }
  .footer-col a.logo-footer-kart img { height: 26px; }
}

.sayfa-basligi {
  position: relative;
  padding: 52px 0 44px;
  background:
    radial-gradient(ellipse 60% 90% at 88% -20%, rgba(15, 157, 88, 0.18), transparent 66%),
    linear-gradient(180deg, #E3F2E9 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--gri-kenar);
}
.sayfa-basligi h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.6px;
  text-align: center;
  margin-bottom: 8px;
}
.sayfa-basligi p {
  font-size: 16px;
  color: var(--text-2);
  text-align: center;
}

.nav > a.aktif { color: var(--green); font-weight: 700; }

.quote-form .btn { margin-top: 16px; margin-bottom: 2px; }

@media (max-width: 768px) {
  .sayfa-basligi { padding: 34px 0 30px; }
  .sayfa-basligi h1 { font-size: 26px; }
  .sayfa-basligi p { font-size: 14.5px; }
}

.onay-alani {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.onay-satiri {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-2);
}
.onay-satiri input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.onay-kutu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  flex-shrink: 0;
  background: var(--white);
  border: 1.5px solid #C9CED1;
  border-radius: 5px;
  color: var(--white);
  transition: all 150ms ease;
}
.onay-kutu svg { width: 12px; height: 12px; opacity: 0; transition: opacity 150ms ease; }
.onay-satiri input:checked + .onay-kutu { background: var(--mavi); border-color: var(--mavi); }
.onay-satiri input:checked + .onay-kutu svg { opacity: 1; }
.onay-satiri input:focus-visible + .onay-kutu { box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.25); }
.metin-ac {
  padding: 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: var(--mavi);
  text-decoration: underline;
  cursor: pointer;
}
.metin-ac:hover, .metin-ac:focus { color: var(--mavi-koyu); }

.metin-pencere { position: fixed; inset: 0; z-index: 300; }
.metin-pencere[hidden] { display: none; }
.metin-arkaplan { position: absolute; inset: 0; background: rgba(20, 25, 22, 0.55); }
.metin-govde {
  position: relative;
  width: min(760px, calc(100% - 32px));
  max-height: calc(100vh - 80px);
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
  overflow: hidden;
}
.metin-ust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gri-kenar);
}
.metin-ust h2 { font-size: 17px; font-weight: 800; line-height: 1.3; }
.metin-kapat {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--gri);
  border: none;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  transition: all 150ms ease;
}
.metin-kapat:hover, .metin-kapat:focus { background: var(--gri-koyu); }
.metin-icerik { padding: 20px 24px; overflow-y: auto; }

.yasal-metin { max-width: 820px; margin: 0 auto; font-size: 14.5px; color: var(--text); }
.yasal-metin p { margin-bottom: 12px; }
.yasal-metin h3 { font-size: 16.5px; font-weight: 800; margin: 20px 0 8px; }
.yasal-metin h4 { font-size: 14.5px; font-weight: 700; margin: 14px 0 6px; }
.yasal-metin ul { margin: 0 0 12px 20px; }
.yasal-metin li { margin-bottom: 6px; }
.yasal-metin a { color: var(--mavi); font-weight: 600; }

.sube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
}
.sube-kart {
  padding: 24px 22px;
  background: var(--gri);
  border: 1px solid var(--gri-kenar);
  border-radius: 16px;
}
.sube-kart h3 { font-size: 15px; font-weight: 800; line-height: 1.35; margin-bottom: 2px; }
.sube-unvan { font-size: 12.5px; color: var(--text-2); margin-bottom: 12px; }
.sube-satir {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 9px;
  font-size: 13.5px;
  color: var(--text);
  text-decoration: none;
  transition: color 150ms ease;
}
a.sube-satir:hover, a.sube-satir:focus { color: var(--mavi); }
.sube-satir svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; }

.footer-liste {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gri-kenar);
  border-radius: 12px;
}
.footer-col .footer-liste a,
.footer-col .footer-liste .footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding: 8px 12px;
  border-bottom: 1px solid #DEE7E2;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: background 150ms ease, box-shadow 150ms ease, color 150ms ease;
}
.footer-col .footer-liste a:last-child,
.footer-col .footer-liste .footer-address:last-child { border-bottom: none; }
.footer-col .footer-liste a:hover,
.footer-col .footer-liste a:focus {
  background: var(--green-light);
  box-shadow: inset 4px 0 0 var(--green);
  color: var(--green-dark);
}
.footer-col .footer-liste a svg,
.footer-col .footer-liste .footer-address svg { margin-top: 2px; }

@media (max-width: 768px) {
  .nav-item-urunler .dropdown-grid {
    position: static;
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin: 4px 14px 12px;
    min-width: 0;
    background: var(--white);
    border: 1.5px solid var(--green);
    border-radius: 12px;
    overflow: hidden;
  }
  .footer-col .footer-liste a,
  .footer-col .footer-liste .footer-address { padding: 8px 10px; font-size: 13px; }
}

.alan-sarici { position: relative; }
.alan-uyari {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 12px;
  z-index: 5;
  padding: 8px 14px;
  background: #D93025;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(217, 48, 37, 0.35);
  white-space: nowrap;
  animation: uyariGel 200ms ease;
  pointer-events: none;
}
.alan-uyari::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 22px;
  border: 7px solid transparent;
  border-top-color: #D93025;
}
@keyframes uyariGel {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: none; }
}
.quote-form input.hatali {
  border-color: #D93025;
  box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.16);
}

.sube-ara-sarici {
  position: relative;
  max-width: 480px;
  margin: 0 auto 10px;
}
.sube-ara-ikon {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  color: var(--text-2);
  pointer-events: none;
}
.sube-ara {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px 12px 46px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid #DADCE0;
  border-radius: var(--radius);
  outline: none;
  transition: all 150ms ease;
}
.sube-ara:focus {
  border-color: var(--mavi);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.18);
}
.sube-sayac {
  margin-bottom: 22px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.yorum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.yorum-kart {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 22px 18px;
  background: var(--white);
  border: 1px solid var(--gri-kenar);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.yorum-kart:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.yorum-ust {
  display: flex;
  align-items: center;
  gap: 11px;
}
.yorum-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--green-light);
  border: 2px solid var(--green);
  border-radius: 50%;
  font-size: 19px;
  font-weight: 800;
  color: var(--green-dark);
}
.yorum-kimlik { display: flex; flex-direction: column; }
.yorum-ad { font-size: 15px; font-weight: 800; color: var(--text); }
.yorum-meta { font-size: 12.5px; font-weight: 600; color: var(--text-2); }
.yorum-yildiz {
  font-size: 15px;
  letter-spacing: 2px;
  color: #F4B400;
}
.yorum-yildiz b { margin-left: 4px; letter-spacing: 0; font-size: 13.5px; color: var(--text); }
.yorum-ozet {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
  flex: 1;
}
.yorum-devam {
  padding: 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--mavi);
  cursor: pointer;
  transition: color 150ms ease;
}
.yorum-devam:hover, .yorum-devam:focus { color: var(--mavi-koyu); text-decoration: underline; }

.yorum-pencere-govde { max-width: 620px; }
.yorum-pencere-govde .metin-icerik { display: flex; flex-direction: column; gap: 12px; }
.yorum-tam { font-size: 15px; line-height: 1.7; color: var(--text); }

@media (max-width: 1024px) {
  .yorum-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .yorum-grid { grid-template-columns: 1fr; gap: 12px; }
  .yorum-kart { padding: 18px 16px 15px; }
}

.iletisim-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-areas:
    "form  yan"
    "adres harita";
  gap: 20px;
  align-items: stretch;
}
.iletisim-form-kart  { grid-area: form; }
.iletisim-yan        { grid-area: yan; }
.iletisim-adres-kart { grid-area: adres; }
.iletisim-harita-kart { grid-area: harita; }
.iletisim-kart {
  padding: 24px 22px;
  background: var(--gri);
  border: 1px solid #DBE0E3;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(60, 64, 67, 0.12);
  transition: box-shadow 150ms ease, border-color 150ms ease;
}
.iletisim-kart:hover {
  border-color: #D4D9DB;
  box-shadow: 0 8px 22px rgba(60, 64, 67, 0.14);
}
.iletisim-liste {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gri-kenar);
  border-radius: 12px;
}
.iletisim-liste > * {
  margin: 0;
  border-bottom: 1px solid #DEE7E2;
}
.iletisim-liste > *:last-child { border-bottom: none; }
.iletisim-liste .iletisim-satir {
  display: flex;
  align-items: center;
  padding: 11px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background 150ms ease, box-shadow 150ms ease, color 150ms ease;
}
.iletisim-liste a.iletisim-satir:hover,
.iletisim-liste a.iletisim-satir:focus {
  background: var(--green-light);
  box-shadow: inset 4px 0 0 var(--green);
  color: var(--green-dark);
}
.iletisim-adres-liste .iletisim-adres {
  padding: 12px 14px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.55;
}
.iletisim-yan {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.iletisim-baslik {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}
.iletisim-baslik svg { width: 22px; height: 22px; flex-shrink: 0; }

.iletisim-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.iletisim-alan { display: flex; flex-direction: column; gap: 6px; }
.iletisim-alan-genis { grid-column: 1 / -1; }
.iletisim-alan label { font-size: 13px; font-weight: 700; color: var(--text); }
.iletisim-alan input,
.iletisim-alan select,
.iletisim-alan textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid #DADCE0;
  border-radius: var(--radius);
  outline: none;
  transition: all 150ms ease;
  appearance: none;
}
.iletisim-alan textarea { min-height: 140px; resize: vertical; }
.iletisim-alan select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%235F6368' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  cursor: pointer;
}
.iletisim-alan input:focus,
.iletisim-alan select:focus,
.iletisim-alan textarea:focus {
  border-color: var(--mavi);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.18);
}
.iletisim-alt {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.iletisim-not { font-size: 12.5px; color: var(--text-2); }

.btn-wa { margin-top: 14px; width: 100%; }

.btn-wa {
  gap: 8px;
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover, .btn-wa:focus { background: #1EB958; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-wa svg { width: 20px; height: 20px; }

.saat-satir {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
}
.saat-satir b { color: var(--text); font-weight: 700; white-space: nowrap; }
.iletisim-kart .iletisim-not { margin-top: 8px; }

.iletisim-adres { font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.iletisim-harita-butonlar { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.iletisim-harita-kart { padding: 6px; overflow: hidden; }
.iletisim-harita-kart iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 7px;
}

@media (max-width: 900px) {
  .iletisim-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "form"
      "yan"
      "adres"
      "harita";
  }
  .iletisim-form { grid-template-columns: 1fr; }
  .iletisim-harita-kart iframe { min-height: 260px; }
}

.odeme-footer {
  width: 100vw;
  margin: 4px calc(50% - 50vw) 36px;
  padding: 26px 20px;
  border-radius: 0;
  border-left: none;
  border-right: none;
}
.odeme-kart {
  padding: 24px 26px;
  background: var(--gri);
  border: 1px solid var(--gri-kenar);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.odeme-baslik {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}
.odeme-baslik svg { width: 22px; height: 22px; flex-shrink: 0; }
.odeme-chipler {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.odeme-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 62px;
  min-height: 36px;
  padding: 5px 13px;
  background: var(--white);
  border: 1px solid var(--gri-kenar);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-2);
}
.odeme-chip svg { width: 15px; height: 15px; }
.logo-visa {
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.5px;
  color: var(--text-2);
}
.logo-mc { display: inline-flex; }
.logo-mc i {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.logo-mc i:first-child { background: #EB001B; }
.logo-mc i:last-child { background: #F79E1B; margin-left: -8px; mix-blend-mode: multiply; }
.logo-troy {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-2);
}
.logo-paytr { font-size: 15px; font-weight: 500; color: var(--text-2); }
.logo-paytr i { font-style: normal; color: var(--text-2); }

@media (max-width: 768px) {
  .odeme-footer { margin: 0 0 28px; }
  .odeme-kart { padding: 18px 16px; }
  .odeme-chipler { gap: 8px; }
  .odeme-chip { min-width: 56px; min-height: 33px; padding: 4px 10px; font-size: 11.5px; }
}

.sirket-band {
  padding: 36px 0 40px;
  background: var(--white);
  border-top: 1px solid var(--gri-kenar);
  overflow: hidden;
}
.sirket-baslik {
  margin-bottom: 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--text-2);
}
.sirket-serit {
  display: flex;
  width: max-content;
  animation: sirketAkis 95s linear infinite;
}
.sirket-band:hover .sirket-serit { animation-play-state: paused; }
.sirket-kart {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-right: 14px;
  padding: 12px 22px 10px;
  min-width: 150px;
  background: var(--white);
  border: 1px solid var(--gri-kenar);
  border-radius: 12px;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.sirket-kart img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.sirket-ad {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--text-2);
}
@keyframes sirketAkis {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .sirket-serit { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
}
@media (max-width: 768px) {
  .sirket-band { padding: 26px 0 30px; }
  .sirket-kart { padding: 8px 14px 7px; min-width: 118px; gap: 6px; }
  .sirket-kart img { height: 27px; max-width: 120px; }
  .sirket-ad { font-size: 10.5px; }
}

.tel-hayalet {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  white-space: pre;
  pointer-events: none;
  color: #9AA0A6;
  overflow: hidden;
}
.tel-hayalet-dolgu { visibility: hidden; }

.teklif-sayac {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
}
.teklif-sayac b { color: var(--green); font-size: 15px; }
.sayac-nokta {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  animation: sayacNabiz 1.6s ease-in-out infinite;
}
@keyframes sayacNabiz {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15, 157, 88, 0.45); }
  55%      { box-shadow: 0 0 0 7px rgba(15, 157, 88, 0); }
}

@media (max-width: 768px) {
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-yasal { justify-content: center; }
}

.sayac-il {
  display: inline-block;
  font-weight: 700;
  color: var(--mavi);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .teklif-sayac {
    gap: 6px;
    margin-bottom: 10px;
    font-size: 11.5px;
    flex-wrap: wrap;
    row-gap: 2px;
  }
  .teklif-sayac b { font-size: 13px; }
  .sayac-nokta { width: 7px; height: 7px; }
  .sayac-il { min-width: 15ch; font-size: 11.5px; }
}

.picker-panel::after {
  content: "";
  position: sticky;
  bottom: -1px;
  display: block;
  height: 34px;
  margin-top: -34px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%234285F4' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center bottom 4px / 15px 15px no-repeat,
    linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white) 72%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 200ms ease;
}
.picker-panel.panel-sonda::after { opacity: 0; }

@media (min-width: 769px) {
  .dropdown-grid {
    max-height: min(72vh, 560px);
    overflow-y: auto;
  }
  .dropdown-grid::after {
    content: "";
    position: sticky;
    bottom: -1px;
    display: block;
    height: 34px;
    margin-top: -34px;
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%234285F4' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center bottom 4px / 15px 15px no-repeat,
      linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white) 72%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 200ms ease;
  }
  .dropdown-grid.panel-sonda::after { opacity: 0; }
}

.picker-panel,
.dropdown-grid {
  -webkit-overflow-scrolling: touch; 
  overscroll-behavior: contain;      
  scrollbar-width: thin;
}
.picker-trigger,
.picker-card,
.dropdown a.dd-card {
  touch-action: manipulation;        
}

.footer-sosyal {
  display: flex;
  gap: 10px;
}
.footer-sosyal a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--gri-kenar);
  border-radius: 10px;
  color: #3C4043;
  transition: all 150ms ease;
}
.footer-sosyal a:hover, .footer-sosyal a:focus {
  color: var(--mavi);
  border-color: var(--mavi);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(60, 64, 67, 0.14);
}
.footer-sosyal svg { width: 19px; height: 19px; }

.magaza-rozetleri {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.magaza-rozet {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  margin: 0 !important;
  padding: 8px 14px;
  background: #1B1F23;
  border-radius: 10px;
  color: var(--white) !important;
  text-decoration: none;
  transition: all 150ms ease;
}
.magaza-rozet:hover, .magaza-rozet:focus {
  background: #2A2F34;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}
.magaza-rozet svg { width: 22px; height: 22px; flex-shrink: 0; }
.magaza-rozet span { display: flex; flex-direction: column; line-height: 1.15; }
.magaza-rozet small { font-size: 9.5px; font-weight: 600; opacity: 0.75; }
.magaza-rozet b { font-size: 13.5px; font-weight: 700; }

.sonuc-pencere {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sonuc-govde {
  position: relative;
  width: min(430px, calc(100% - 32px));
  margin: 0;
  padding: 34px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  max-height: none;
  overflow: visible;
}
.sonuc-ikon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  background: var(--green);
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(15, 157, 88, 0.35);
}
.sonuc-ikon svg { width: 34px; height: 34px; }
.sonuc-ikon-hata { background: #D93025; box-shadow: 0 8px 20px rgba(217, 48, 37, 0.35); }
.sonuc-govde h2 { font-size: 22px; font-weight: 800; }
.sonuc-govde p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; }
.sonuc-sayac { font-size: 13px; }
.sonuc-sayac b { color: var(--green); font-size: 15px; }
.sonuc-govde .btn-wa { width: auto; margin-top: 4px; padding: 12px 22px; }
.sonuc-kapat {
  position: absolute;
  top: 12px;
  right: 12px;
}

.logo-marka {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
  transition: transform 150ms ease;
}
.logo-marka:hover, .logo-marka:focus { transform: translateY(-1px); }
.logo-marka-ust {
  font-size: clamp(19px, 1.9vw, 24px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #17191C;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 2px 3px rgba(60, 64, 67, 0.28);
  white-space: nowrap;
}
.logo-i { position: relative; }
.logo-i::after {
  content: "";
  position: absolute;
  top: -0.045em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.17em;
  height: 0.17em;
  border-radius: 50%;
  background: #E4342F;
  box-shadow: 0 1px 1px rgba(60, 64, 67, 0.3);
}
.logo-marka-alt {
  margin-top: 5px;
  font-size: clamp(8px, 1.75vw, 10.5px);
  font-weight: 600;
  letter-spacing: 0.415em;
  color: #5F6368;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .header-inner { gap: 8px; }
  .logo-marka-ust { font-size: 16.5px; }
  .logo-marka-alt { margin-top: 4px; font-size: 7.5px; letter-spacing: 0.34em; }
}
@media (max-width: 400px) {
  .logo-marka-ust { font-size: 15px; }
  .logo-marka-alt { font-size: 7px; letter-spacing: 0.3em; }
}

.logo-marka-footer { margin-bottom: 4px; }
.logo-marka-footer .logo-marka-ust { font-size: 22px; }

.header-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  background: #25D366;
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 150ms ease;
}
.header-wa:hover, .header-wa:focus {
  background: #1EB958;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.header-wa svg { width: 20px; height: 20px; }
@media (max-width: 1200px) {
  .header-wa { padding: 10px 13px; }
  .header-wa span { display: none; }
}
@media (max-width: 768px) {
  .header-wa { display: none; }
}
