/* =========================================================
   BAŞKENT LASTİK — Örnek Tasarım
   ========================================================= */

:root {
  --dark: #14161a;
  --dark-2: #1d2026;
  --dark-3: #262a32;
  --light: #f6f7f9;
  --white: #ffffff;
  --muted: #8b93a1;
  --red: #e2352d;
  --red-dark: #b7241d;
  --amber: #f5a623;
  --border: #2c313a;

  --font-body: 'Rubik', sans-serif;
  --font-head: 'Teko', sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 45px -20px rgba(0,0,0,.35);
  --transition: .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 58px;
}

img, svg { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { font-family: inherit; border: none; background: none; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .3px;
  line-height: 1.15;
  color: var(--dark);
}

h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.4rem; }

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

.text-accent { color: var(--red); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 25px -8px rgba(226,53,45,.55);
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn--accent {
  background: var(--amber);
  color: var(--dark);
  box-shadow: 0 10px 25px -8px rgba(245,166,35,.5);
}
.btn--accent:hover { background: #e0951a; transform: translateY(-2px); }

.btn--outline {
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,.12); }

@keyframes btn-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.btn--blink { animation: btn-blink 1.4s ease-in-out infinite; }
.btn--blink:hover { animation-play-state: paused; opacity: 1; }

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 10px 25px -8px rgba(37,211,102,.5);
}
.btn--whatsapp:hover { background: #1fb959; transform: translateY(-2px); }

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(226,53,45,.1);
  color: var(--red);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.tag--center { }
.tag--light { background: rgba(245,166,35,.15); color: var(--amber); }

/* =========================================================
   IMAGE PLACEHOLDERS (görsel eklenene kadar yer tutucu alan)
   ========================================================= */
.img-placeholder {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, #232830 0px, #232830 14px, #2b313b 14px, #2b313b 28px);
  border: 1px dashed #3a4150;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder::before {
  content: "🛞";
  position: absolute;
  font-size: 2.4rem;
  opacity: .18;
}
.img-placeholder::after {
  content: attr(data-label);
  position: relative;
  z-index: 1;
  background: rgba(20,22,26,.75);
  color: #cfd4dc;
  font-size: .78rem;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: .3px;
}
.img-placeholder--hero { position: absolute; inset: 0; border-radius: 0; border: none; }

.img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-placeholder:has(img) { border: none; background: none; }
.img-placeholder:has(img)::before,
.img-placeholder:has(img)::after { display: none; }
.img-placeholder--square { aspect-ratio: 1 / 1; }
.img-placeholder--tall { aspect-ratio: 3 / 4; height: 100%; }
.img-placeholder--brand { aspect-ratio: 5 / 2; }
.img-placeholder--brand:has(img) { background: var(--white); border: 1px solid var(--border); }
.img-placeholder--brand img { object-fit: contain; padding: 14px; background: var(--white); }
.img-placeholder--gallery { aspect-ratio: 1 / 1; }
.img-placeholder--map { aspect-ratio: 16 / 9; margin-top: 18px; }

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  background: var(--dark);
  color: var(--muted);
  font-size: .82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar__info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__item em { color: var(--amber); font-style: normal; }

.topbar__hours--live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(226,53,45,.16);
  border: 1px solid rgba(226,53,45,.4);
  border-radius: 50px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: .3px;
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: live-pulse 1.4s ease-in-out infinite;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(226,53,45,.6); }
  70% { box-shadow: 0 0 0 7px rgba(226,53,45,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,53,45,0); }
}

.hours-live { display: flex; align-items: center; gap: 8px; }
.hours-live strong { color: var(--red); }

.welcome-audio-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
  transition: var(--transition);
}
.welcome-audio-btn:hover { color: var(--white); border-color: rgba(255,255,255,.4); }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20,22,26,.08);
  box-shadow: 0 2px 12px rgba(20,22,26,.05);
  transition: var(--transition);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo__img { height: 76px; width: auto; display: block; }
.logo__icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border-radius: 10px;
  font-size: 1.2rem;
}
.logo__text {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: .5px;
}
.logo__text em { color: var(--amber); font-style: normal; }

.nav__list { display: flex; gap: 30px; }
.nav__link {
  color: var(--dark);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--red);
  transition: var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--red); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.header__cta { flex-shrink: 0; }

.header .btn--outline {
  border-color: rgba(20,22,26,.25);
  color: var(--dark);
}
.header .btn--outline:hover { background: rgba(20,22,26,.06); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
}
.hamburger span {
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,18,.3) 0%, rgba(14,15,18,.6) 65%, var(--dark) 100%),
    linear-gradient(100deg, rgba(14,15,18,.65) 20%, rgba(14,15,18,.15) 70%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 720px;
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero__desc {
  color: #e4e6ea;
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 34px;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 30px;
  max-width: 640px;
}
.stat { display: flex; flex-direction: column; }
.stat__value { display: inline-flex; align-items: baseline; }
.stat__num, .stat__plus {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--amber);
  display: inline;
}
.stat__label { color: var(--muted); font-size: .82rem; margin-top: 2px; }

/* =========================================================
   FEATURE STRIP
   ========================================================= */
.strip {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 24px;
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.strip__icon {
  font-size: 1.6rem;
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(226,53,45,.12);
  border-radius: 12px;
}
.strip__item h4 { font-family: var(--font-body); font-size: .98rem; margin-bottom: 2px; color: var(--white); }
.strip__item p { color: var(--muted); font-size: .82rem; }

/* =========================================================
   SECTIONS (genel)
   ========================================================= */
.section { padding: 100px 0; }
.section--alt { background: var(--light); }
.section--dark { background: var(--dark); color: var(--light); }
.section--dark h2, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--muted); }

.section__head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section__desc { color: var(--muted); margin-top: 12px; }

.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* CARDS */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card--featured {
  border-color: var(--dark);
  background: var(--white);
}
.card--featured .card__icon {
  border-color: var(--dark);
  color: var(--dark);
}
.card__icon {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 20px;
}
.card__icon svg { width: 36px; height: 36px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .95rem; }

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about__media { position: relative; }
.about__badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about__badge strong { display: block; font-family: var(--font-head); font-size: 1.8rem; }
.about__badge span { font-size: .75rem; opacity: .9; }

.check-list { margin: 26px 0 30px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--dark-2);
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: .7rem;
}

/* =========================================================
   BRANDS
   ========================================================= */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* =========================================================
   WHY US
   ========================================================= */
.why__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.why__list { margin-top: 30px; display: flex; flex-direction: column; gap: 22px; }
.why__item { display: flex; gap: 18px; align-items: flex-start; }
.why__num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--red);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 54px; height: 54px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.why__item h4 { color: var(--white); margin-bottom: 4px; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.testi-stars { color: var(--amber); letter-spacing: 3px; margin-bottom: 14px; }
.testi-card p { color: var(--dark-2); font-size: .95rem; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--amber));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
}
.testi-author strong { display: block; font-size: .92rem; }
.testi-author span { font-size: .78rem; color: var(--muted); }

.testi-dots { display: none; justify-content: center; gap: 8px; margin-top: 30px; }
.testi-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
}
.testi-dots button.active { background: var(--red); width: 24px; border-radius: 5px; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 56px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 6px; }
.cta-banner p { opacity: .9; }
.cta-banner .btn--accent { flex-shrink: 0; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
}
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.info-card:first-child { padding-top: 0; }
.info-card__icon {
  font-size: 1.3rem;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(226,53,45,.1);
  border-radius: 10px;
  flex-shrink: 0;
}
.info-card__icon svg { width: 20px; height: 20px; }
.info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.info-card p { color: var(--muted); font-size: .92rem; }
.info-card em { color: var(--red); font-style: normal; }

.contact-form {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .92rem;
  background: var(--white);
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226,53,45,.12);
}
.form-note { margin-top: 14px; font-size: .88rem; text-align: center; min-height: 1.2em; color: var(--red); }
.form-note.success { color: #1a9e5a; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
}
.form-consent input {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
}
.form-consent a { color: var(--red); }

/* =========================================================
   YASAL SAYFALAR (Gizlilik, KVKK, Çerez, Kullanım Şartları)
   ========================================================= */
.legal-back { padding: 10px 20px; font-size: .85rem; }
.legal-container { max-width: 780px; margin: 0 auto; }
.legal-container h1 { font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 8px; }
.legal-updated { color: var(--muted); margin-bottom: 34px; font-size: .9rem; }
.legal-updated em { font-style: normal; }
.legal-container h2 { font-size: 1.35rem; margin: 34px 0 12px; }
.legal-container p { color: var(--dark-2); margin-bottom: 14px; }
.legal-container ul { margin: 0 0 18px 20px; }
.legal-container ul li { list-style: disc; color: var(--dark-2); margin-bottom: 8px; padding-left: 4px; }
.legal-container a { color: var(--red); text-decoration: underline; }
.legal-container em { color: var(--red); font-style: normal; }
.legal-note {
  margin-top: 40px;
  padding: 16px 20px;
  background: var(--light);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  color: var(--muted);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--dark); color: var(--muted); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr 1fr;
  gap: 40px;
  padding: 70px 24px 50px;
}
.footer .logo--footer { margin-bottom: 16px; }
.footer__col p { font-size: .9rem; line-height: 1.7; }
.footer__col h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 18px; }
.footer__col ul li { margin-bottom: 10px; font-size: .9rem; }
.footer__col ul li a:hover { color: var(--white); }
.footer__contact em { font-style: normal; color: var(--amber); }
.footer__contact-item { display: flex; align-items: center; gap: 8px; }
.footer__contact-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--red); }

.social { display: flex; gap: 10px; margin-top: 20px; }
.social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark-3);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.social a:hover { background: var(--red); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal-links a:hover { color: var(--white); }

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 20px; bottom: 78px;
  width: 46px; height: 46px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 90;
  box-shadow: var(--shadow);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ===== Alt sabit çubuk: Hemen Ara + WhatsApp (tüm sitede, her zaman görünür) ===== */
.quickbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  z-index: 200;
  box-shadow: 0 -8px 24px rgba(0,0,0,.18);
}
.quickbar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 10px;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
}
.quickbar__icon { font-size: 1.15rem; }
.quickbar__icon svg { width: 19px; height: 19px; display: block; }
.quickbar__btn--call { background: var(--red); }
.quickbar__btn--call:hover { background: var(--red-dark); }
.quickbar__btn--whatsapp { background: #25d366; }
.quickbar__btn--whatsapp:hover { background: #1fb959; }

/* ===== Çerez onay çubuğu ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 58px;
  z-index: 199;
  background: var(--dark);
  color: var(--light);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 24px rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.08);
  transition: transform .35s ease, opacity .35s ease;
}
.cookie-banner p { margin: 0; font-size: .85rem; max-width: 640px; color: var(--muted); }
.cookie-banner a { color: var(--amber); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__actions .btn { padding: 10px 20px; font-size: .85rem; }
.cookie-banner--hide { transform: translateY(20px); opacity: 0; pointer-events: none; }

@media (max-width: 600px) {
  .cookie-banner { bottom: 58px; padding: 14px 18px; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .why__grid, .contact__grid { grid-template-columns: 1fr; }
  .why__media { order: -1; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav { position: fixed; inset: 0 0 0 30%; top: 0; background: var(--dark); padding: 100px 30px 30px; transform: translateX(100%); transition: transform .35s ease; z-index: 99; }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 8px; }
  .nav__link { display: block; padding: 12px 0; font-size: 1.1rem; color: #d5d9e0; }
  .nav__link:hover, .nav__link.active { color: var(--white); }
  .hamburger { display: flex; }
  .header__cta { display: none; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .testi-track { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .logo__img { height: 54px; }
  .section { padding: 70px 0; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; padding-top: 50px; }
  .topbar__inner { justify-content: center; text-align: center; }
  .cta-banner__inner { text-align: center; justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__content { text-align: left; }
}
