/* ============================================
   ARTON DEMİR — style.css
   ============================================ */

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

:root {
  --white:   #ffffff;
  --dark:    #1a1a1a;
  --accent:  #C8952A;
  --accent2: #E8B84B;
  --gray:    #64748b;
  --light:   #f8fafc;
  --border:  #e2e8f0;
  --font:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img    { height: 58px; width: auto; display: block; }
.logo-img-sm { height: 44px; }
.logo-main   { color: var(--dark); }
.logo-accent { color: var(--accent); }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s;
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }

/* ---- DROPDOWN ---- */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--gray);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
  cursor: pointer;
}
.nav-dropdown-trigger svg {
  width: 14px; height: 14px;
  transition: transform .25s;
}
.nav-dropdown-wrap:hover .nav-dropdown-trigger { color: var(--dark); }
.nav-dropdown-wrap:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  padding: 8px;
  display: flex;
  gap: 0;
  min-width: 560px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 200;
}
/* Görünmez köprü — fare gap'i geçerken dropdown kapanmasın */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0; right: 0;
  height: 16px;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-col { flex: 1; padding: 12px 8px; }

.dropdown-group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--dark);
  background: var(--light);
  margin-bottom: 12px;
  transition: background .2s;
}
.dropdown-group-title:hover { background: rgba(200,149,42,.08); }
.dropdown-group-title strong { display: block; font-size: .95rem; font-weight: 700; }
.dropdown-group-title small  { display: block; font-size: .75rem; color: var(--gray); margin-top: 1px; }

.dgt-icon {
  width: 36px; height: 36px;
  background: var(--dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.dgt-icon svg { width: 18px; height: 18px; }
.dgt-arrow { width: 14px; height: 14px; color: var(--gray); margin-left: auto; flex-shrink: 0; }

.dropdown-divider {
  width: 1px;
  background: var(--border);
  margin: 8px 4px;
  align-self: stretch;
}

.dropdown-items { padding: 0 6px; }
.dropdown-sub-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  padding: 6px 8px 4px;
}
.dropdown-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 8px 10px;
}
.dropdown-sizes a {
  text-decoration: none;
  color: var(--dark);
  font-size: .8rem;
  font-weight: 600;
  background: var(--light);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  transition: background .15s, color .15s, border-color .15s;
}
.dropdown-sizes a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
  gap: 4px;
}
.mobile-menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  letter-spacing: .3px;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #a87820;
  border-color: #a87820;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,149,42,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-sm { padding: 10px 24px; font-size: .88rem; margin-top: 20px; }
.btn-full { width: 100%; text-align: center; padding: 15px; font-size: 1rem; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1a1a1a 0%, #111111 40%, #1a1408 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,93,4,.18) 0%, transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Cline x1='0' y1='30' x2='60' y2='30' stroke='%23ffffff08' stroke-width='1'/%3E%3Cline x1='30' y1='0' x2='30' y2='60' stroke='%23ffffff08' stroke-width='1'/%3E%3C/svg%3E") repeat;
  opacity: .4;
}

/* iki kolon wrapper */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 56px;
}

.hero-content {
  /* sol kolon */
}

.hero-tag {
  display: inline-block;
  background: rgba(232,93,4,.15);
  color: var(--accent2);
  border: 1px solid rgba(232,93,4,.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--accent); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.1);
}
.stats-row {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 28px 16px;
  text-align: center;
  transition: background .2s;
}
.stat:hover { background: rgba(255,255,255,.04); }

.stat-icon {
  width: 32px; height: 32px;
  color: var(--accent);
  margin-bottom: 6px;
  opacity: .85;
}
.stat-icon svg { width: 100%; height: 100%; }

.stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.5px;
}
.stat-sup {
  font-size: 1.1rem;
  font-weight: 700;
  vertical-align: super;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: .3px;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.08);
  align-self: stretch;
  margin: 12px 0;
}

/* ---- SECTIONS ---- */
.section { padding: 96px 0; }
.section-dark {
  background: var(--dark);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tag-light { color: var(--accent2); }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.title-light { color: var(--white); }

.section-desc {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---- PRODUCT CARDS ---- */
.products-section { background: var(--light); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
}

/* Card Header */
.pc-header {
  background: var(--dark);
  padding: 140px 32px 28px;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.pc-header::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.pc-header-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.pc-header-icon svg { width: 38px; height: 38px; }

.pc-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.pc-subtitle {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  letter-spacing: .5px;
}

/* Card Body */
.pc-body { padding: 28px 32px; flex: 1; }

.pc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pc-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
}
.pc-feat svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Sizes */
.pc-sizes { display: flex; flex-direction: column; gap: 20px; }
.pc-size-group {}
.pc-size-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray);
  margin-bottom: 10px;
}
.pc-size-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.thin-dot  { background: var(--accent); }
.thick-dot { background: var(--dark); }

/* Hasır specs table */
.hasir-specs {
  margin-top: 16px;
  background: var(--light);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hs-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.hs-item:last-child { border-bottom: none; }
.hs-key { font-size: .82rem; color: var(--gray); font-weight: 500; }
.hs-val { font-size: .88rem; color: var(--dark); font-weight: 700; }

/* Card Footer */
.pc-footer {
  padding: 20px 32px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--border);
}
.pc-range {
  font-size: .88rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(200,149,42,.08);
  border: 1px solid rgba(200,149,42,.2);
  padding: 6px 14px;
  border-radius: 100px;
}

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.accent-dot { background: var(--accent); }
.dark-dot   { background: var(--dark); }

.size-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--dark);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 600;
  transition: background .2s, border-color .2s;
}
.tag:hover {
  background: rgba(232,93,4,.08);
  border-color: rgba(232,93,4,.3);
  color: var(--accent);
}
.tag-wide { padding: 8px 16px; font-size: .9rem; }

/* ---- HAKKIMIZDA ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text { }
.about-desc {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 500;
}
.feature-icon {
  width: 22px; height: 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.visual-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background .3s;
}
.visual-card:hover { background: rgba(232,93,4,.1); border-color: rgba(232,93,4,.3); }
.vc-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.vc-text {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* ---- İLETİŞİM ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(232,93,4,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }

.ci-label { font-size: .8rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 2px; }
.ci-value  { font-size: 1rem; color: var(--dark); font-weight: 500; }
.ci-value a { color: var(--dark); text-decoration: none; }
.ci-value a:hover { color: var(--accent); }

.contact-form {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.form-status {
  display: none;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: .92rem;
  line-height: 1.6;
}
.form-status.pending,
.form-status.success,
.form-status.error {
  display: block;
}
.form-status.pending {
  background: rgba(200,149,42,.12);
  color: #8a6514;
  border: 1px solid rgba(200,149,42,.24);
}
.form-status.success {
  background: rgba(22,163,74,.08);
  color: #166534;
  border: 1px solid rgba(22,163,74,.18);
}
.form-status.error {
  background: rgba(220,38,38,.08);
  color: #b91c1c;
  border: 1px solid rgba(220,38,38,.18);
}
.hp-field {
  display: none !important;
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,93,4,.12);
}

/* ---- FOOTER ---- */
.footer { background: #111111; }

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 0.8fr 1.2fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Brand col */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.footer-logo-main { color: var(--white); }
.footer-brand-note {
  font-size: .78rem;
  color: rgba(255,255,255,.62);
  font-weight: 600;
  letter-spacing: .4px;
  margin-bottom: 10px;
}
.footer-brand-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  transition: background .2s, border-color .2s, color .2s;
}
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Columns */
.footer-col-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-list a {
  text-decoration: none;
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
  line-height: 1.4;
}
.footer-list a:hover { color: var(--accent); }

/* Contact list */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
}
.footer-contact-list svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-list a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
}
.footer-contact-list a:hover { color: var(--accent); }

/* Bottom bar */
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { color: rgba(255,255,255,.25); font-size: .82rem; }

/* ---- HERO FİYAT KARTI ---- */
.hero-price-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.hpc-header {
  background: var(--accent);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hpc-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: .3px;
}
.hpc-date {
  font-size: .78rem;
  color: rgba(255,255,255,.8);
  font-style: italic;
}

.hpc-table-wrap { overflow-x: auto; }

.hpc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.hpc-table thead tr {
  background: rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hpc-table thead th {
  padding: 10px 14px;
  text-align: left;
  color: rgba(255,255,255,.6);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hpc-table thead th:not(:first-child) { text-align: right; }

.hpc-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s;
}
.hpc-table tbody tr:last-child { border-bottom: none; }
.hpc-table tbody tr:hover { background: rgba(255,255,255,.05); }

.hpc-table tbody td {
  padding: 10px 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
}
.hpc-table tbody td:first-child {
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .3px;
  color: var(--white);
}
.hpc-table tbody td:not(:first-child) {
  text-align: right;
  color: var(--accent2);
  font-weight: 700;
}

.hpc-note {
  padding: 10px 16px;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ---- REFERANS ŞERİDİ ---- */
.logos-section {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  overflow: hidden;
}
.logos-inner {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-item {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  padding: 0 32px;
  transition: color .2s;
}
.logos-track:hover .logo-item:hover { color: var(--accent); }
.logo-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ---- NEDEN BİZ ---- */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
  border-color: rgba(200,149,42,.2);
}
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 52px; height: 52px;
  background: rgba(200,149,42,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.why-icon svg { width: 24px; height: 24px; }
.why-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.why-desc {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, #a87020 100%);
}
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='%23ffffff0a' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.cta-desc {
  color: rgba(255,255,255,.75);
  font-size: .98rem;
}
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.cta-btn-primary {
  background: var(--white);
  color: var(--accent);
  font-weight: 700;
  padding: 14px 32px;
}
.cta-btn-primary:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.cta-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  font-weight: 700;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-btn-outline svg { width: 18px; height: 18px; }
.cta-btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---- ÇALIŞMA SÜRECİ ---- */
.steps-section { background: var(--light); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  text-align: center;
  margin: 0 12px;
  transition: transform .3s, box-shadow .3s;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}
.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(200,149,42,.12);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  letter-spacing: -2px;
}
.step-icon {
  width: 68px; height: 68px;
  background: var(--dark);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.step-icon svg { width: 30px; height: 30px; }
.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-desc {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.65;
}
.step-connector {
  position: absolute;
  top: 50px; right: -36px;
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 2;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -5px; top: -4px;
  width: 10px; height: 10px;
  border-top: 2px solid var(--accent2);
  border-right: 2px solid var(--accent2);
  transform: rotate(45deg);
}

/* ---- SSS ---- */
.sss-section { background: var(--light); }
.sss-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sss-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.sss-item.open {
  border-color: rgba(200,149,42,.35);
  box-shadow: 0 4px 20px rgba(200,149,42,.08);
}
.sss-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
}
.sss-q:hover { background: rgba(200,149,42,.04); }
.sss-q svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .3s;
}
.sss-item.open .sss-q svg { transform: rotate(180deg); }
.sss-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.sss-item.open .sss-a {
  max-height: 200px;
  padding: 0 24px 20px;
}
.sss-a p {
  font-size: .93rem;
  color: var(--gray);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ---- İLETİŞİM (güncellendi) ---- */
.contact-section { background: var(--white); }
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* Harita */
.map-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%);
}
.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 500;
  text-align: center;
  padding: 16px;
  pointer-events: none;
}
.map-overlay svg { width: 28px; height: 28px; color: var(--accent); }
.map-wrap.active .map-overlay { display: none; }
.map-navigate-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  transition: background .2s;
}
.map-navigate-btn:hover { background: #a87820; }
.map-navigate-btn svg { width: 15px; height: 15px; stroke: #fff; }

/* Form select */
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,149,42,.12);
}

/* Gönder butonu ikon */
.btn-full svg {
  width: 18px; height: 18px;
  vertical-align: middle;
  margin-right: 8px;
}

/* ---- FLOATING BUTTONS ---- */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 998;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 16px;
  height: 52px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
}
.float-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.float-label  { color: var(--white); }

.float-phone {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
}
.float-phone svg { stroke: var(--accent); }

.float-whatsapp {
  background: #25D366;
  color: var(--white);
}
.float-whatsapp svg { fill: var(--white); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero-inner      { grid-template-columns: 1fr; }
  .hero-price-card { max-width: 540px; }
  .product-grid    { grid-template-columns: 1fr; }
  .pc-features     { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .steps-grid      { grid-template-columns: 1fr; gap: 16px; }
  .step-card       { margin: 0; }
  .step-connector  { display: none; }
  .cta-inner       { flex-direction: column; text-align: center; }
  .cta-actions     { justify-content: center; }
  .about-grid   { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
  .stats-row   { flex-wrap: wrap; }
  .stat        { flex: 0 0 calc(50% - 1px); padding: 20px 12px; }
  .stat-divider{ display: none; }
  .form-row    { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-top  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero-inner   { padding-top: 90px; }
  .hero-btns    { flex-direction: column; }
  .btn          { text-align: center; }
  .contact-form { padding: 24px; }
  .footer-top   { grid-template-columns: 1fr; gap: 28px; }
}
