:root {
  --navy: #062b4d;
  --navy-2: #0b3b63;
  --blue: #0f5c91;
  --red: #c9151e;
  --red-dark: #a80f17;
  --white: #ffffff;
  --ink: #102132;
  --muted: #607080;
  --line: #dce4ea;
  --soft: #f3f7fa;
  --shadow: 0 20px 55px rgba(6, 43, 77, .13);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.top-contact-bar {
  background: var(--navy);
  color: rgba(255,255,255,.9);
  border-top: 4px solid var(--red);
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
}
.top-contact-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.top-contact-group,
.top-phones {
  display: flex;
  align-items: center;
  gap: 18px;
}
.top-contact-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease, transform .2s ease;
}
.top-contact-bar a:hover {
  color: #fff;
  transform: translateY(-1px);
}
.top-contact-icon {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}
.top-contact-bar b { color: #fff; }
.top-separator {
  width: 1px;
  height: 18px;
  background: rgba(201,21,30,.75);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6,43,77,.08);
}
.nav-wrap {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img {
  width: 126px;
  height: 78px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: .25s;
}
.main-nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
}

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%, rgba(20,113,167,.28), transparent 35%),
    linear-gradient(120deg, #041f38 0%, #06365d 58%, #0c4d77 100%);
  color: var(--white);
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  right: -250px; top: -190px;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
}
.hero h1, .section h2 {
  font-family: "Oswald", sans-serif;
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.015em;
}
.hero h1 { font-size: clamp(48px, 6vw, 82px); max-width: 760px; }
.hero-text {
  max-width: 680px;
  font-size: 19px;
  color: rgba(255,255,255,.82);
  margin: 26px 0 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .25s;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-light:hover { background: #fff; color: var(--navy); }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-badges span {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 8px 13px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 700;
}

.hero-photo-placeholder,
.photo-placeholder {
  min-height: 360px;
  border: 2px dashed rgba(255,255,255,.4);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.9);
}
.placeholder-icon { font-size: 36px; }
.hero-photo-placeholder span,
.photo-placeholder span { max-width: 390px; opacity: .8; }
.hero-photo-placeholder small, .photo-placeholder small { opacity: .62; }

.section { padding: 105px 0; scroll-margin-top: 84px; }
.section h2 { font-size: clamp(38px, 4.6vw, 62px); color: var(--navy); }
.section p { color: var(--muted); }
.split {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 80px;
  align-items: center;
}
.section-copy p { font-size: 16px; }
.signature-line {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 4px solid var(--red);
  display: flex;
  flex-direction: column;
}
.signature-line strong { color: var(--navy); font-size: 20px; }
.signature-line span { color: var(--muted); font-size: 13px; letter-spacing: .12em; }

.photo-placeholder {
  min-height: 300px;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(6,43,77,.04), rgba(201,21,30,.04));
  border-color: rgba(6,43,77,.28);
}
.photo-placeholder.tall { min-height: 560px; }

.section-dark {
  background: linear-gradient(135deg, #041f38, #07385e);
}
.section-head { max-width: 780px; margin-bottom: 48px; }
.section-head p:last-child { font-size: 17px; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255,255,255,.72); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  color: #fff;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(201,21,30,.16);
  right: -35px; bottom: -35px;
}
.service-no {
  font-family: "Oswald", sans-serif;
  color: var(--red);
  font-size: 24px;
}
.service-card h3 { font-size: 21px; line-height: 1.35; margin: 24px 0 14px; }
.service-card p { color: rgba(255,255,255,.68); font-size: 14px; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.area-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px 20px 54px;
  font-weight: 700;
  position: relative;
  background: #fff;
  box-shadow: 0 8px 30px rgba(6,43,77,.05);
}
.area-item::before {
  content: "✓";
  position: absolute;
  left: 20px;
  color: var(--red);
  font-weight: 900;
}

.equipment-section { background: var(--soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid .photo-placeholder { min-height: 260px; padding: 24px; font-size: 14px; }

.warning-section { background: #fff; }
.warning-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.check-list li {
  padding: 14px 16px 14px 46px;
  border-radius: 12px;
  background: var(--soft);
  position: relative;
  font-size: 14px;
  font-weight: 600;
}
.check-list li::before {
  content: "!";
  position: absolute;
  left: 16px;
  width: 21px; height: 21px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red);
  color: white;
  font-weight: 900;
}
.cta-bar {
  margin-top: 54px;
  padding: 30px 34px;
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}
.cta-bar div { display: flex; flex-direction: column; }
.cta-bar strong { font-size: 20px; }
.cta-bar span { color: rgba(255,255,255,.65); }

.why-section {
  background:
    linear-gradient(rgba(6,43,77,.94), rgba(6,43,77,.94)),
    radial-gradient(circle at 20% 20%, #0f5c91, #062b4d);
  color: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 15px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.why-card b { color: var(--red); font-family: "Oswald", sans-serif; font-size: 24px; }
blockquote {
  margin: 50px 0 0;
  padding: 28px 34px;
  border-left: 5px solid var(--red);
  background: rgba(255,255,255,.07);
  font-size: 20px;
  font-weight: 600;
}

.form-section { background: var(--soft); }
.form-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px;
  align-items: start;
}
.form-intro { position: sticky; top: 120px; }
.contact-mini { display: grid; gap: 12px; margin-top: 30px; }
.contact-mini a {
  padding: 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.contact-mini small { color: var(--muted); }
.contact-mini strong { color: var(--navy); font-size: 18px; }

.service-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 800; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px 14px;
  background: #fbfdff;
  outline: none;
  transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15,92,145,.1);
}
.upload-note {
  padding: 16px;
  background: var(--soft);
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
}
.upload-note strong { color: var(--navy); }
.full-button { grid-column: 1 / -1; border: 0; }
.hidden { display: none; }

.contact-section { background: #041f38; color: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.contact-card {
  padding: 30px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  transition: .25s;
}
.contact-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); }
.contact-card span { font-size: 12px; color: var(--red); font-weight: 800; letter-spacing: .12em; }
.contact-card h3 { margin: 12px 0 6px; }
.contact-card strong { color: rgba(255,255,255,.75); }
.site-footer { background: #021426; color: #fff; padding: 58px 0 18px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 50px;
}
.footer-brand img { width: 150px; background: #fff; border-radius: 10px; }
.footer-brand p { max-width: 390px; color: rgba(255,255,255,.58); }
.site-footer h4 { margin-top: 0; }
.site-footer a { display: block; color: rgba(255,255,255,.64); margin: 8px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 42px;
  padding-top: 18px;
  color: rgba(255,255,255,.45);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  padding: 13px 18px;
  border-radius: 999px;
  background: #20b85a;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 14px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .main-nav a::after { display: none; }
  .hero-grid, .split, .warning-grid, .form-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0; }
  .hero-photo-placeholder { min-height: 420px; }
  .form-intro { position: static; }
  .service-grid, .gallery-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 86px; height: 56px; }
  .main-nav { top: 72px; left: 14px; right: 14px; }
  .section { padding: 76px 0; }
  .hero { min-height: auto; padding: 72px 0; }
  .hero h1 { font-size: 48px; }
  .hero-text { font-size: 16px; }
  .hero-photo-placeholder { min-height: 330px; padding: 22px; }
  .service-grid, .gallery-grid, .areas-grid, .why-grid, .contact-grid, .check-list {
    grid-template-columns: 1fr;
  }
  .service-card { min-height: auto; }
  .warning-grid { gap: 35px; }
  .cta-bar { align-items: stretch; flex-direction: column; }
  .service-form { grid-template-columns: 1fr; padding: 22px; }
  .field.full, .full-button { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}


/* Kırmızı vurgu düzenlemeleri */
.section-head::before {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--red);
}
.service-card {
  border-top: 3px solid rgba(201,21,30,.88);
}
.area-item,
.why-card,
.contact-card {
  overflow: hidden;
}
.area-item::after,
.why-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  opacity: .82;
}
.why-card,
.contact-card { position: relative; }
.area-item {
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.area-item:hover {
  transform: translateY(-3px);
  border-color: rgba(201,21,30,.45);
  box-shadow: 0 14px 34px rgba(6,43,77,.1);
}
.photo-placeholder {
  position: relative;
}
.photo-placeholder::after,
.hero-photo-placeholder::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 38px;
  height: 5px;
  border-radius: 999px;
  background: var(--red);
}
.contact-card span {
  color: #ff4a51;
}

@media (max-width: 1050px) {
  .top-contact-inner {
    padding: 9px 0;
    align-items: flex-start;
  }
  .top-phones {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 14px;
  }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .top-contact-inner,
  .top-contact-group,
  .top-phones {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .top-contact-inner { padding: 10px 0; }
  .top-separator { display: none; }
  .top-contact-bar a { font-size: 11px; }
  .contact-grid { grid-template-columns: 1fr; }
}


/* Telefon, WhatsApp, e-posta ve Instagram ikonları */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.contact-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
}

.contact-icon svg,
.button-icon,
.whatsapp-icon-link svg,
.contact-mini-whatsapp svg,
.contact-card-icon svg,
.contact-whatsapp-link svg,
.footer-contact svg,
.whatsapp-float svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mail-icon {
  color: #fff;
  background: var(--red);
}

.phone-icon {
  color: #fff;
  background: var(--red);
}

.top-contact-link {
  min-width: 0;
}

.top-phone-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.whatsapp-icon-link {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-grid !important;
  place-items: center;
  border-radius: 50%;
  color: #fff !important;
  background: #20b85a;
  box-shadow: 0 5px 14px rgba(32, 184, 90, .28);
}

.whatsapp-icon-link:hover {
  background: #159447;
  transform: translateY(-2px) !important;
}

.button-icon {
  width: 19px;
  height: 19px;
  margin-right: 9px;
}

.contact-mini-card {
  padding: 14px 14px 14px 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-left: 4px solid var(--red);
}

.contact-mini-phone {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-mini-phone span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.contact-mini-whatsapp {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #20b85a;
  color: #fff;
  font-size: 22px;
  transition: transform .2s ease, background .2s ease;
}

.contact-mini-whatsapp:hover {
  transform: scale(1.06);
  background: #159447;
}

.contact-card {
  display: block;
}

.contact-card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-size: 28px;
}

.phone-card-icon {
  background: var(--red);
}

.mail-card-icon {
  background: linear-gradient(135deg, #e74335, #b71620);
}

.instagram-card-icon {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 52%, #6228d7);
}

.contact-main-link {
  display: block;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-main-link:hover {
  color: #fff;
}

.contact-whatsapp-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: #20b85a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}

.contact-whatsapp-link svg {
  width: 17px;
  height: 17px;
}

.contact-whatsapp-link:hover {
  background: #159447;
  transform: translateY(-2px);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: #ff4a51;
}

.whatsapp-float {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 1050px) {
  .top-phone-item {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 720px) {
  .top-phone-item {
    justify-content: flex-start;
  }

  .contact-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .top-contact-bar a {
    font-size: 11px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }
}


/* Ana sayfa iletişim butonları */
.hero-actions {
  align-items: center;
}

.hero-call-button {
  background: var(--red);
  color: #fff;
}

.hero-whatsapp-button {
  background: #20b85a;
  color: #fff;
  border-color: #20b85a;
}

.hero-whatsapp-button:hover {
  background: #159447;
  border-color: #159447;
  transform: translateY(-2px);
}

.hero-instagram-button {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 100%);
  box-shadow: 0 12px 26px rgba(238, 42, 123, .28);
  transition: transform .25s ease, box-shadow .25s ease;
}

.hero-instagram-button svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.hero-instagram-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 32px rgba(238, 42, 123, .38);
}

/* Büyük Manyas Sondaj logo alanı */
.brand-showcase {
  position: relative;
  z-index: 2;
  margin-top: 38px;
  padding-bottom: 38px;
}

.brand-showcase-inner {
  min-height: 190px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 34px;
  border-radius: 24px;
  background: #fff;
  border-top: 5px solid var(--red);
  box-shadow: 0 24px 60px rgba(6, 43, 77, .18);
}

.brand-showcase-logo {
  min-height: 140px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #f3f7fa);
  border: 1px solid var(--line);
}

.brand-showcase-logo img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.brand-showcase-copy .section-kicker {
  margin-bottom: 7px;
}

.brand-showcase-copy h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(31px, 3.5vw, 48px);
  line-height: 1.1;
  color: var(--navy);
}

.brand-showcase-copy h2 span {
  color: var(--red);
  margin: 0 .12em;
}

.brand-showcase-copy p:last-child {
  max-width: 600px;
  margin: 10px 0 0;
  color: var(--muted);
}


@media (max-width: 1050px) {
  .brand-showcase-inner {
    grid-template-columns: 150px 1fr;
  }
}

@media (max-width: 720px) {
  .brand img {
    width: 100px;
    height: 62px;
  }

  .brand-showcase {
    margin-top: 24px;
    padding-bottom: 30px;
  }

  .brand-showcase-inner {
    padding: 22px;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .brand-showcase-logo {
    min-height: auto;
  }

  .brand-showcase-logo img {
    width: 170px;
    height: 170px;
  }

  .brand-showcase-copy p:last-child {
    margin-left: auto;
    margin-right: auto;
  }
.hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 52px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero-instagram-button {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}

@media (max-width: 460px) {
.hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 52px;
  }

  .hero-actions .btn {
    padding: 0 10px;
  }

  .hero-actions .button-icon {
    display: none;
  }
}


/* Ana sayfa gerçek kamyon fotoğrafı */
.hero-photo-real {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}

.hero-photo-real::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 24, 42, .78) 0%, rgba(3, 24, 42, .08) 48%, transparent 75%);
  pointer-events: none;
}

.hero-photo-real img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 48% center;
  display: block;
  transition: transform .55s ease;
}

.hero-photo-real:hover img {
  transform: scale(1.025);
}

.hero-photo-caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #fff;
}

.hero-photo-caption strong {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  line-height: 1.2;
}

.hero-photo-caption span {
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

@media (max-width: 1050px) {
  .hero-photo-real {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 720px) {
  .hero-photo-real {
    aspect-ratio: 16 / 9;
  }

  .hero-photo-caption {
    left: 18px;
    right: 18px;
    bottom: 17px;
  }

  .hero-photo-caption strong {
    font-size: 22px;
  }
}
