:root {
  --bg: #050608;
  --bg-card: rgba(18, 18, 22, 0.96);
  --bg-card-soft: rgba(20, 20, 24, 0.9);
  --gold: #f4c14e;
  --gold-soft: #f6d57c;
  --text: #f5f5f5;
  --text-soft: #cfd3db;
  --accent: #01c851;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #15161c 0, #050608 55%, #020205 100%);
  color: var(--text);
  line-height: 1.5;
}

body.rtl {
  text-align: right;
}

body.rtl .nav-bar,
body.rtl .nav-left,
body.rtl .nav-actions,
body.rtl .mgmt-header,
body.rtl .footer-inner {
  direction: rtl;
}

body.rtl .hero-tags,
body.rtl .hero-cta,
body.rtl .lang-switch {
  justify-content: flex-end;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER / NAV */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.98), rgba(5, 6, 8, 0.9));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 132px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(244, 193, 78, 0.24));
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 2px;
}

.logo-text span:first-child {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.logo-text span:last-child {
  font-size: 13px;
  line-height: 1.35;
  color: var(--text-soft);
  max-width: 340px;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 16px;
  font-size: 13px;
}

.nav-menu a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-menu a:hover {
  border-bottom-color: var(--gold);
  color: var(--gold-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lang-switch {
  display: flex;
  gap: 4px;
}

.lang-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-soft);
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.active {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--gold-soft);
}

.btn-wa-top {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 14px rgba(1, 200, 81, 0.5);
}

/* HERO */

.hero {
  padding: 40px 0 32px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: center;
}

.hero-badge {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(245, 193, 78, 0.1);
  border: 1px solid rgba(245, 193, 78, 0.4);
  margin-bottom: 10px;
}

.hero-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 14px;
  color: var(--text-soft);
  max-width: 650px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  font-size: 12px;
}

.hero-tags span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost {
  border-radius: 999px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-soft);
  font-size: 13px;
  cursor: pointer;
}

.hero-right {
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(244, 193, 78, 0.2), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0, 200, 81, 0.15), transparent 55%),
    var(--bg-card);
  padding: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.65);
}

.hero-right img {
  border-radius: 12px;
  margin-bottom: 10px;
}

.hero-right small {
  font-size: 11px;
  color: var(--text-soft);
}

.hero-focus {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-focus-label {
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(1, 200, 81, 0.12);
  border: 1px solid rgba(1, 200, 81, 0.35);
  color: #8df0b7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-focus h2 {
  font-size: 24px;
  color: var(--gold-soft);
}

.hero-focus p {
  font-size: 14px;
  color: var(--text-soft);
}

.hero-focus-list {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

.hero-focus-list li {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-disclaimer {
  display: block;
  padding-top: 4px;
}

/* SECTIONS */

.section {
  padding: 40px 0 32px;
}

.section-dark {
  background: radial-gradient(circle at top, #11121a 0, #050608 55%, #020205 100%);
}

.section-title {
  text-align: center;
  font-size: 21px;
  margin-bottom: 6px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
  max-width: 720px;
  margin: 0 auto 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
  font-size: 14px;
}

.card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.card p {
  font-size: 13px;
  color: var(--text-soft);
}

.card-highlight {
  border: 1px solid rgba(244, 193, 78, 0.22);
  background:
    radial-gradient(circle at top right, rgba(244, 193, 78, 0.12), transparent 35%),
    var(--bg-card);
}

.card ul {
  list-style: none;
  font-size: 13px;
  color: var(--text-soft);
}

.card ul li {
  margin-bottom: 4px;
  padding-left: 14px;
  position: relative;
}

.card ul li::before {
  content: "•";
  position: absolute;
  left: 2px;
  color: var(--gold-soft);
}

body.rtl .card ul li {
  padding-left: 0;
  padding-right: 14px;
}

body.rtl .card ul li::before {
  left: auto;
  right: 2px;
}

/* SETS */

.sets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.set-card {
  background: var(--bg-card-soft);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
  font-size: 14px;
}

.set-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--gold-soft);
}

.set-tagline {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.set-card ul li::before {
  content: "–";
  color: var(--gold-soft);
}

.set-note {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 8px;
}

.set-image-placeholder {
  height: 120px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 0 0, rgba(244, 193, 78, 0.25), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.05), transparent 55%),
    #191922;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 10px;
  text-align: center;
  padding: 0 10px;
}

.set-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  margin-bottom: 10px;
  background: #14141b;
}

/* REFERANSLAR */

.ref-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.ref-column h3 {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--gold-soft);
}

.ref-column ul {
  list-style: none;
  font-size: 13px;
  color: var(--text-soft);
}

.ref-column ul li {
  margin-bottom: 4px;
}

/* YÖNETİM */

.mgmt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.mgmt-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 16px 14px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
  font-size: 13px;
}

#yonetim .mgmt-photo {
  display: block;
  width: 118px;
  height: 118px;
  margin: 0 auto 14px;
  object-fit: cover;
  object-position: center top;
  border-radius: 999px;
  border: 3px solid rgba(255, 199, 87, 0.88);
  box-shadow: 0 0 0 4px rgba(255, 199, 87, 0.14), 0 12px 24px rgba(0, 0, 0, 0.28);
  background: #111;
  padding: 0;
}

.mgmt-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.mgmt-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #fff 0, #f4c14e 25%, #4a3412 70%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.mgmt-header h3 {
  font-size: 14px;
  margin-bottom: 2px;
}

.mgmt-header span {
  font-size: 11px;
  color: var(--gold-soft);
}

.mgmt-card p {
  font-size: 12px;
  color: var(--text-soft);
  max-height: 128px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 193, 78, 0.5) rgba(255, 255, 255, 0.06);
}

.mgmt-card:hover p,
.mgmt-card:focus-within p {
  scrollbar-color: rgba(244, 193, 78, 0.9) rgba(255, 255, 255, 0.08);
}

.mgmt-card p::-webkit-scrollbar {
  width: 6px;
}

.mgmt-card p::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.mgmt-card p::-webkit-scrollbar-thumb {
  background: rgba(244, 193, 78, 0.5);
  border-radius: 999px;
}

.mgmt-card:hover p::-webkit-scrollbar-thumb,
.mgmt-card:focus-within p::-webkit-scrollbar-thumb {
  background: rgba(244, 193, 78, 0.9);
}

/* PROJE GALERİSİ */

.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  background: var(--bg-card-soft);
  border-radius: 18px;
  padding: 16px 14px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.45);
  font-size: 13px;
}

.project-card h3 {
  font-size: 15px;
  margin: 8px 0 6px;
  color: var(--gold-soft);
}

.project-card p {
  font-size: 12px;
  color: var(--text-soft);
}

.project-thumb {
  border-radius: 14px;
  max-height: 220px;
  width: 100%;
  object-fit: cover;
}

.group-companies-panel {
  margin-top: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
  gap: 18px;
  align-items: start;
}

.contact-left {
  display: grid;
  gap: 18px;
}

.contact-combined-card h3 {
  margin-bottom: 14px;
}

.contact-combined-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-combined-grid h4 {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-size: 18px;
}

.group-companies-panel h3 {
  margin-bottom: 18px;
}

.group-company-list {
  display: grid;
  gap: 14px;
}

.group-company-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 199, 87, 0.12);
}

.group-company-item:last-child {
  border-bottom: 0;
}

.group-company-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
}

.group-company-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 800;
}

.group-company-item span {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.45;
}

.group-company-item small {
  display: block;
  margin-top: 6px;
  color: var(--gold-soft);
  font-size: 12px;
  line-height: 1.4;
  word-break: break-word;
}

.group-company-note {
  margin: 16px 0 8px;
  color: var(--text-soft);
}

.group-company-inline-link {
  display: inline-block;
  color: var(--gold-soft);
  font-weight: 700;
}

.supply-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, 250px);
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}

.supply-hero-copy {
  max-width: 760px;
}

.supply-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 199, 87, 0.24);
  background: rgba(255, 199, 87, 0.08);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.supply-title {
  margin-bottom: 10px;
  text-align: left;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
}

.supply-subtitle {
  margin: 0;
  text-align: left;
  max-width: 720px;
}

.supply-header-visual {
  display: flex;
  justify-content: center;
}

.supply-header-visual img {
  width: 100%;
  max-width: 235px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 199, 87, 0.18);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

/* ADRESLER & MAP */

.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.address-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 16px 14px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
  font-size: 13px;
}

.address-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--gold-soft);
}

.address-card p {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.map-wrapper {
  position: relative;
  padding-bottom: 64%;
  height: 0;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 8px;
}

.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* FORM */

#quote-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

#quote-form label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12px;
  color: var(--text-soft);
}

#quote-form input,
#quote-form select,
#quote-form textarea {
  background: rgba(7, 7, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 7px 9px;
  font-size: 13px;
  color: var(--text);
}

#quote-form textarea {
  resize: vertical;
}

#quote-form button.btn-primary {
  margin-top: 4px;
  justify-content: center;
}

.form-note {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 6px;
}

body.menu-open {
  overflow: hidden;
}

/* FOOTER */

.footer {
  border-top: 1px solid var(--border);
  padding: 14px 0 18px;
  font-size: 11px;
  color: var(--text-soft);
}

.patent-strip {
  padding: 20px 0 8px;
}

.patent-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(244, 193, 78, 0.14), transparent 36%),
    var(--bg-card);
  border: 1px solid rgba(244, 193, 78, 0.18);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}

.patent-preview {
  width: 88px;
  height: 112px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

.patent-preview embed {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.patent-card strong {
  display: block;
  font-size: 14px;
  color: var(--gold-soft);
  margin-bottom: 2px;
}

.patent-card small {
  color: var(--text-soft);
  font-size: 12px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* WHATSAPP FAB */

.whatsapp-fab {
  position: fixed;
  right: 16px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 18px rgba(1, 200, 81, 0.55);
  z-index: 150;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .nav-menu ul {
    gap: 10px;
    font-size: 12px;
  }

  .container {
    padding: 0 14px;
  }

  .hero-right {
    padding: 14px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-combined-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .header {
    position: sticky;
  }

  .nav-bar {
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .hero {
    padding: 26px 0 24px;
  }

  .logo-text span:last-child {
    max-width: 220px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
    margin-left: auto;
  }

  .nav-actions {
    order: 2;
    margin-left: auto;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 4;
  }

  .nav-menu.open {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(10, 12, 16, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu a {
    display: block;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-menu li:last-child a {
    border-bottom: 0;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 13px;
  }

  .hero-tags {
    gap: 6px;
    margin: 14px 0;
  }

  .hero-tags span {
    width: 100%;
    text-align: center;
    padding: 8px 10px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost,
  .btn-wa-top {
    justify-content: center;
    width: 100%;
    min-height: 46px;
  }

  .hero-focus h2 {
    font-size: 22px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-subtitle {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .card,
  .set-card,
  .project-card,
  .address-card,
  .mgmt-card {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .project-thumb {
    max-height: 190px;
  }

  #yonetim .mgmt-photo {
    width: 108px;
    height: 108px;
  }

  .mgmt-card p {
    max-height: 140px;
  }

  #quote-form input,
  #quote-form select,
  #quote-form textarea {
    min-height: 44px;
  }

  #quote-form textarea {
    min-height: 120px;
  }
}

@media (max-width: 480px) {
  .nav-bar {
    padding: 8px 0;
  }

  .nav-left {
    min-width: 0;
  }

  .logo-mark {
    width: 104px;
  }

  .logo-mark img {
    width: 100%;
  }

  .logo-text span:first-child {
    font-size: 13px;
  }

  .logo-text span:last-child {
    font-size: 11px;
    line-height: 1.35;
    max-width: 210px;
  }

  .lang-switch {
    width: 100%;
    justify-content: flex-end;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-badge {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero-focus {
    gap: 10px;
  }

  .hero-focus h2 {
    font-size: 20px;
  }

  .hero-focus-list li {
    padding: 9px 10px;
    font-size: 12px;
  }

  .section {
    padding: 32px 0 26px;
  }

  .card-grid,
  .sets-grid,
  .ref-columns,
  .mgmt-grid,
  .project-gallery,
  .address-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card h3,
  .set-card h3,
  .project-card h3,
  .address-card h3 {
    font-size: 14px;
  }

  .patent-card {
    align-items: flex-start;
  }

  .patent-preview {
    width: 74px;
    height: 96px;
  }

  #yonetim .mgmt-photo {
    width: 96px;
    height: 96px;
  }

  .card p,
  .card ul,
  .set-tagline,
  .project-card p,
  .address-card p {
    font-size: 12px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .mgmt-card p {
    font-size: 12px;
  }

  .set-image {
    height: 180px;
  }

  .contact-layout,
  .contact-left,
  .contact-combined-grid {
    gap: 14px;
  }

  .supply-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 22px;
  }

  .supply-title,
  .supply-subtitle {
    text-align: center;
  }

  .supply-header-visual img {
    max-width: min(240px, 70vw);
    max-height: 260px;
  }

  .mgmt-card p {
    max-height: 120px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .group-company-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .group-company-item img {
    width: 40px;
    height: 40px;
  }

  .group-company-item strong {
    font-size: 14px;
    line-height: 1.3;
  }

  .group-company-item span,
  .group-company-item small {
    font-size: 12px;
    line-height: 1.45;
  }

  .contact-combined-grid h4 {
    font-size: 15px;
  }
  .whatsapp-fab {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}
