/* Temel değişkenler */
:root {
  --bg-main: #050505;
  --bg-elevated: #111111;
  --bg-elevated-soft: #151515;
  --bg-elevated-softer: #1a1a1a;
  --accent: #96ec2f;
  --accent-soft: #5fe000;
  --danger: #d72626;
  --text-main: #f5f5f5;
  --text-muted: #b1b1b1;
  --border-soft: #262626;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.75);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background-color: #000;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.15em;
  font-size: 20px;
}

.main-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  color: var(--text-muted);
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease-out;
}

.main-nav a:hover {
  color: #ffffff;
}

.main-nav a:hover::after {
  width: 100%;
}

.lang-switch {
  display: flex;
  align-items: center;
}

.lang-button {
  border-radius: var(--radius-pill);
  background: var(--bg-elevated-soft);
  border: 1px solid var(--border-soft);
  padding: 8px 16px;
  color: var(--text-main);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.lang-button:hover {
  border-color: var(--accent);
}

.lang-chevron {
  font-size: 10px;
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease-out, color 0.2s ease-out,
    border-color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.1s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #ffffff;
  color: #050505;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: var(--border-soft);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero */
.hero {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 0 0,
      rgba(150, 236, 47, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 0,
      rgba(0, 255, 132, 0.15),
      transparent 55%
    );
  opacity: 0.85;
  pointer-events: none;
}

.hero-moment {
  background-color: #000;
  background-image: url("img/slider1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  padding: 140px 0 140px;
  min-height: 720px;
}

.hero-moment::before {
  content: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr);
  align-items: center;
  gap: 56px;
}

.hero-content {
  max-width: 720px;
}

.hero-kicker {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-title {
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 18px;
}

.hero-gradient {
  background: linear-gradient(44.63deg, #e93f4c 0%, #4a60b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 14px;
  color: #ffffff;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-device {
  width: 320px;
  height: 520px;
  border-radius: 40px;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-dots {
  position: relative;
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-slider-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #181818;
  border: 1px solid #3a3a3a;
}

.hero-slider-dots .dot.active {
  background: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(150, 236, 47, 0.6);
}

/* Genel section stilleri */
.section {
  padding: 64px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.section-header p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* Ürün kartları */
.section-products-highlight {
  background: #050505;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card-grid-products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  background: var(--bg-elevated-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
}

.product-card-highlight {
  border-width: 1px;
  border-style: solid;
  border-color: #96ec2f;
  box-shadow: 0 0 28px rgba(150, 236, 47, 0.35);
}

.product-card-dimmed {
  opacity: 0.4;
}

.product-card-horizontal .product-card-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.product-card-body-left h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.product-card-body-left p {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.product-card-figure {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-figure img {
  max-width: 110%;
  max-height: 190px;
  object-fit: contain;
}

/* Analiz bölümü */
.section-analyse {
  background: radial-gradient(circle at top, #111111, #000);
}

.analyse-inner {
  max-width: 1100px;
}

.analyse-layout {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.analyse-item {
  text-align: center;
}

.analyse-media {
  width: 260px;
  height: 180px;
  border-radius: 50% / 60%;
  background: radial-gradient(circle at center, #0b0b0b, #020202);
  margin: 0 auto 16px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.analyse-media-field {
  background-image: url("img/alan-tarama.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.analyse-media-point {
  background-image: url("img/noktasal-tespit.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.analyse-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
}

.analyse-item p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.phone-frame {
  width: 340px;
  margin: 0 auto 16px;
}

.phone-mockup {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(150, 236, 47, 0.45));
}

.phone-caption {
  text-align: center;
}

.phone-caption h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.phone-caption p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: 12px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #050505;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.store-btn-apple::before {
  content: "";
  font-size: 18px;
}

.store-btn-google::before {
  content: "▶";
  font-size: 12px;
}

.store-btn:hover {
  border-color: var(--accent);
}

/* Bayilik CTA */
.section-dealer-cta {
  background: #111;
  border-top: 1px solid #191919;
  border-bottom: 1px solid #191919;
}

.dealer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.dealer-text h2 {
  margin: 0 0 6px;
}

.dealer-text p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.dealer-text {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dealer-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.dealer-actions {
  display: flex;
  gap: 12px;
}

/* Bayilik alanı buton renkleri örneğe göre */
.section-dealer-cta .btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.section-dealer-cta .btn-outline:hover {
  background: #ffffff;
  color: #050505;
}

.section-dealer-cta .btn-primary {
  background: var(--accent);
  color: #050505;
  box-shadow: 0 0 20px rgba(150, 236, 47, 0.6);
}

.section-dealer-cta .btn-primary:hover {
  background: var(--accent-soft);
}

/* Footer */
.site-footer {
  background: #000;
  padding-top: 40px;
  border-top: 1px solid #101010;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
}

.footer-logo {
  margin-bottom: 8px;
  width: 80px;
  height: auto;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-social-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
}

.footer-social-youtube::before {
  content: "▶";
}

.footer-social-instagram::before {
  content: "◎";
  font-size: 11px;
}

.footer-social-x::before {
  content: "X";
}

.footer-social-facebook::before {
  content: "f";
  font-weight: 700;
}

.footer-brand p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  font-size: 13px;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 6px;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #101010;
  padding: 16px 0 20px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

/* İç sayfa ortakları */
.page-inner {
  padding: 48px 0 64px;
}

.page-title-bar {
  background: #000;
  border-bottom: 1px solid #181818;
}

.page-title-inner {
  padding: 24px 0;
}

.page-title-inner h1 {
  margin: 0 0 6px;
  font-size: 24px;
}

.page-title-inner p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* Ürün liste sayfası */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-list-card {
  background: var(--bg-elevated-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
}

.product-list-card.highlight {
  border-color: rgba(150, 236, 47, 0.7);
}

.product-list-card-title {
  font-size: 18px;
  margin: 0 0 4px;
}

.product-list-card-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.product-list-card-media {
  height: 140px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1a1a1a, #050505);
}

/* İletişim formu */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: flex-start;
}

.contact-info h2 {
  margin: 0 0 8px;
}

.contact-info p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-info-list {
  font-size: 14px;
}

.contact-info-list p {
  margin: 0 0 8px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-input,
.form-textarea,
.form-select {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: #101010;
  padding: 10px 12px;
  color: var(--text-main);
  font: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  margin-top: 18px;
}

/* Hakkımızda metin sayfası */
.about-text {
  max-width: 900px;
  font-size: 14px;
  color: var(--text-muted);
}

.about-text p {
  margin: 0 0 12px;
}

/* Bayiler sayfası */
.dealer-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.dealer-card {
  background: #000;
  border-radius: var(--radius-lg);
  border: 1px solid #202020;
  padding: 18px 18px 16px;
}

.dealer-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.dealer-card-title {
  font-size: 16px;
  margin: 0;
}

.dealer-card-company {
  font-size: 13px;
  color: var(--text-muted);
}

.dealer-card-body {
  font-size: 13px;
  color: var(--text-muted);
}

.dealer-card-body p {
  margin: 0 0 4px;
}

.dealer-card-link {
  margin-top: 6px;
}

.dealer-card-link a {
  font-size: 13px;
  color: var(--accent);
}

.dealer-card-link a:hover {
  text-decoration: underline;
}

.dealer-cta-strip {
  margin-top: 8px;
  padding: 24px 28px;
  background: #111;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.dealer-cta-strip-text h2 {
  margin: 0 0 8px;
}

.dealer-cta-strip-text p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.dealer-cta-strip-actions {
  display: flex;
  gap: 12px;
}

/* Ürün detay sayfaları */
.product-hero {
  padding: 64px 0 56px;
  background: radial-gradient(circle at top left, #1a1a1a, #000);
}

.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.product-hero-kicker {
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 8px;
}

.product-hero-title {
  font-size: 30px;
  margin: 0 0 10px;
}

.product-hero-sub {
  font-size: 18px;
  margin: 0 0 18px;
  color: #ffffff;
}

.product-hero-text {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
}

.product-hero-media {
  height: 360px;
  border-radius: 32px;
  background: radial-gradient(circle at center, #1b1b1b, #050505);
}

.product-modes {
  padding: 40px 0 32px;
  background: #050505;
}

.product-modes-header {
  max-width: 720px;
  margin-bottom: 24px;
}

.product-modes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mode-card {
  background: #101010;
  border-radius: var(--radius-md);
  padding: 14px 14px 16px;
}

.mode-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.mode-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.product-specs {
  padding: 48px 0 64px;
  background: #f5f5f5;
  color: #111;
}

.product-specs-inner {
  max-width: 1000px;
}

.product-specs h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  font-size: 13px;
}

.spec-group h3 {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spec-row {
  margin-bottom: 6px;
}

.spec-label {
  font-weight: 600;
}

.spec-value {
  color: #444;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero-inner,
  .product-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media,
  .product-hero-media {
    justify-content: flex-start;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analyse-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .dealer-inner,
  .dealer-cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .products-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    gap: 16px;
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero {
    padding-top: 40px;
  }

  /* Mobilde slider/hero hizalaması */
  .hero-moment {
    padding: 80px 0 72px;
    min-height: 600px;
    background-position: center right;
    background-size: contain;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 24px;
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dealer-actions,
  .dealer-cta-strip-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .dealer-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

