:root {
  --bg: #edf2f8;
  --surface: #ffffff;
  --surface-soft: #e7edf6;
  --text: #0b1326;
  --muted: #526077;
  --line: rgba(11, 19, 38, 0.1);
  --primary: #1858d8;
  --primary-dark: #103fa2;
  --accent: #12b3a8;
  --shadow: 0 30px 80px rgba(11, 19, 38, 0.12);
  --shadow-soft: 0 12px 32px rgba(11, 19, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    linear-gradient(180deg, #f7f9fc 0%, var(--bg) 42%, #eef3f9 100%);
  color: var(--text);
  overflow-x: hidden;
}

.topbar {
  background: #0a1222;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content,
.topbar-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-content {
  min-height: 44px;
  font-size: 0.88rem;
}

.topbar-content p,
.topbar-links a {
  margin: 0;
}

.topbar-links a {
  color: rgba(255, 255, 255, 0.88);
}

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

h1,
h2,
h3,
p,
a,
span,
small {
  overflow-wrap: anywhere;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 249, 252, 0.86);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.menu-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(11, 19, 38, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.mobile-menu-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.mobile-menu-toggle span {
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle span:first-child {
  transform: translateY(-4px);
}

.mobile-menu-toggle span:last-child {
  transform: translateY(4px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 240px;
  max-width: 240px;
  height: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
}

.menu a {
  padding: 12px 18px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible,
.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--primary);
}

.menu a:hover,
.menu a:focus-visible {
  background: rgba(24, 88, 216, 0.08);
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.nav-cta,
.button.primary {
  color: white;
  background: var(--primary);
}

.nav-cta {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  box-shadow: 0 16px 40px rgba(24, 88, 216, 0.24);
}

.nav-cta-label {
  font-size: 0.95rem;
}

.nav-cta small {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.nav-cta:hover,
.button.primary:hover,
.nav-cta:focus-visible,
.button.primary:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: white;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: end;
  overflow: clip;
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 46, 0.88) 0%, rgba(7, 20, 46, 0.62) 46%, rgba(7, 20, 46, 0.26) 100%),
    linear-gradient(180deg, rgba(7, 20, 46, 0.12) 0%, rgba(7, 20, 46, 0.68) 100%);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 88%);
  opacity: 0.4;
  animation: drift 20s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 130px 0 82px;
  color: white;
  animation: fadeUp 1s ease both;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.hero-copy-block {
  max-width: 760px;
  min-width: 0;
}

.eyebrow,
.section-tag {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  line-height: 1;
  text-wrap: balance;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: pretty;
}

.hero-panel {
  margin-top: 0;
  width: min(360px, 100%);
  min-width: 0;
  justify-self: end;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(4, 10, 24, 0.28);
  animation: floatPanel 5.5s ease-in-out infinite;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-badge,
.panel-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.panel-badge {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-status {
  color: rgba(255, 255, 255, 0.82);
}

.panel-screen {
  height: 96px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(90deg, rgba(24, 88, 216, 0.18), rgba(18, 179, 168, 0.12));
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  animation: scan 4.2s ease-in-out infinite;
}

.panel-display {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 6px;
}

.panel-display span {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.panel-display small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}

.panel-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.panel-controls span {
  min-height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.panel-leds {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.panel-leds i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: block;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.8);
}

.panel-leds i:nth-child(2) {
  background: #fbbf24;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

.panel-leds i:nth-child(3) {
  background: #60a5fa;
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.8);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

.trust-band {
  background: #0d162b;
  color: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-grid article {
  background: #0d162b;
  padding: 28px 22px;
}

.trust-grid strong,
.process-grid h3,
.product-card h3,
.contact-card span {
  display: block;
  font-size: 1.05rem;
}

.trust-grid span,
.section-head p,
.section-copy p,
.product-card p,
.process-grid p,
.contact-copy p,
.contact-item p,
.site-footer p,
.brand-text small {
  line-height: 1.7;
}

.section {
  padding: 92px 0;
}

.corporate-intro {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(231, 237, 246, 0.36) 100%);
}

.corporate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 36px;
  align-items: start;
}

.corporate-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 68ch;
  text-wrap: pretty;
}

.corporate-copy p + p {
  margin-top: 18px;
}

.corporate-copy,
.corporate-metrics,
.section-copy,
.about-visuals,
.contact-copy,
.contact-card,
.footer-grid > div,
.product-card div {
  min-width: 0;
}

.corporate-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.corporate-metrics article,
.industries-grid article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.corporate-metrics strong,
.industries-grid h3 {
  display: block;
  margin-bottom: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 34px;
}

.section-head > div:first-child {
  display: grid;
  gap: 12px;
  max-width: none;
}

.section-head > p:last-child {
  max-width: 52ch;
  text-wrap: pretty;
}

.section-tag {
  color: var(--primary);
}

.section h2 {
  margin: 0;
  max-width: 28ch;
  font-size: clamp(2.15rem, 4vw, 3.2rem);
  line-height: 1.14;
  text-wrap: balance;
}

.corporate-copy h2,
.section-copy h2,
.contact-copy h2 {
  margin: 0 0 18px;
}

.section-head p,
.section-copy p,
.contact-copy p,
.contact-item p,
.product-card p,
.process-grid p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.feature-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.feature-list div,
.process-grid article,
.contact-card,
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-list div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 20px;
}

.feature-list span,
.process-grid span {
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--primary);
  font-weight: 800;
}

.about-visuals {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.about-visuals img {
  width: min(100%, 440px);
  min-height: 210px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-visuals img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 70px rgba(11, 19, 38, 0.16);
}

.showcase {
  padding-top: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 18px;
}

.showcase-grid img {
  width: min(100%, 92%);
  min-height: 220px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
  filter: saturate(0.95) contrast(1.02);
}

.showcase-grid img:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  filter: saturate(1.05) contrast(1.04);
}

.products {
  background: linear-gradient(180deg, rgba(232, 238, 247, 0.55) 0%, rgba(243, 246, 251, 0) 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.product-card img {
  width: calc(100% - 40px);
  margin: 18px auto 0;
  aspect-ratio: 1.05 / 1;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  background: linear-gradient(180deg, #f9fbfe 0%, #eef3f9 100%);
  border-radius: 8px;
  transition: transform 0.8s ease;
}

.product-card div {
  padding: 22px;
}

.product-card h3 {
  margin: 0 0 10px;
  line-height: 1.35;
  text-wrap: balance;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(24, 88, 216, 0.2);
  box-shadow: 0 34px 80px rgba(11, 19, 38, 0.16);
}

.product-card:hover img {
  transform: scale(1.02);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-grid article {
  padding: 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-grid span {
  margin-bottom: 18px;
}

.process-grid h3 {
  margin: 0 0 10px;
}

.process-grid article:hover,
.feature-list div:hover,
.contact-card:hover,
.corporate-metrics article:hover,
.industries-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(11, 19, 38, 0.14);
}

.industries {
  background: linear-gradient(180deg, rgba(232, 238, 247, 0.48) 0%, rgba(255, 255, 255, 0.5) 100%);
}

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

.industries-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  text-wrap: pretty;
}

.section-copy p,
.contact-copy p,
.contact-item p,
.product-card p,
.process-grid p,
.site-footer p {
  text-wrap: pretty;
}

.process-grid h3,
.industries-grid h3,
.corporate-metrics strong {
  line-height: 1.35;
  text-wrap: balance;
}

.corporate-copy h2,
.section-copy h2,
.contact-copy h2 {
  max-width: 24ch;
}

.contact-card {
  padding: 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-item + .contact-item {
  margin-top: 22px;
}

.contact-item span {
  margin-bottom: 8px;
}

.contact-card img {
  margin-top: 28px;
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.map-frame {
  margin-top: 28px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 56px 0 24px;
  background: #0b1326;
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 0.85fr;
  gap: 28px;
}

.footer-brand p,
.footer-grid p,
.footer-grid a {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  box-shadow: 0 20px 45px rgba(20, 90, 48, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.01);
  background: #1fbe5d;
  box-shadow: 0 24px 54px rgba(20, 90, 48, 0.34);
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  flex: 0 0 auto;
}

.whatsapp-icon svg {
  width: 24px;
  height: 24px;
}

.whatsapp-text {
  display: grid;
  line-height: 1.15;
}

.whatsapp-text strong,
.whatsapp-text small {
  color: white;
}

.whatsapp-text small {
  opacity: 0.86;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-54px, 0, 0);
  }
}

@keyframes scan {
  0%,
  16% {
    transform: translateX(-110%);
  }
  48%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1080px) {
  .two-column,
  .contact-layout,
  .product-grid,
  .process-grid,
  .trust-grid,
  .showcase-grid,
  .industries-grid,
  .footer-grid,
  .corporate-grid,
  .corporate-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-panel {
    justify-self: start;
  }

  .section-head > div:first-child,
  .section-head > p:last-child {
    flex: initial;
    max-width: none;
  }

  .section h2,
  .corporate-copy h2,
  .section-copy h2,
  .contact-copy h2 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    min-height: 60px;
    position: relative;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-logo {
  width: 170px;
  max-width: 170px;
}

  .mobile-menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .menu {
    width: 100%;
    display: grid;
    gap: 8px;
  }

  .menu-shell {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    border-radius: 16px;
    padding: 8px;
    justify-content: stretch;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(11, 19, 38, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 54px rgba(11, 19, 38, 0.16);
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
    z-index: 25;
  }

  .menu a {
    padding: 11px 14px;
    white-space: nowrap;
    border-radius: 12px;
  }

  .nav-cta {
    display: none;
  }

  .site-header.menu-open .menu-shell {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    background: #ffffff;
    border-color: rgba(24, 88, 216, 0.12);
    box-shadow: 0 28px 70px rgba(11, 19, 38, 0.2);
  }

  .site-header.menu-open .mobile-menu-toggle span:first-child {
    transform: rotate(45deg);
  }

  .site-header.menu-open .mobile-menu-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 42px 0 44px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 20, 46, 0.9) 0%, rgba(7, 20, 46, 0.72) 56%, rgba(7, 20, 46, 0.82) 100%);
  }

  .hero-grid {
    opacity: 0.18;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
    line-height: 0.96;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero h1,
  .section h2 {
    max-width: none;
  }

  .section h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    line-height: 1.18;
  }

  .section-head {
    gap: 16px;
    margin-bottom: 28px;
  }

  .section-head > div:first-child {
    gap: 14px;
  }

  .section-head > p:last-child {
    line-height: 1.72;
  }

  .hero-copy,
  .corporate-copy p,
  .section-head > p:last-child {
    max-width: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-panel {
    width: min(100%, 360px);
    justify-self: start;
    padding: 16px;
  }

  .panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .trust-grid,
  .two-column,
  .contact-layout,
  .product-grid,
  .process-grid,
  .showcase-grid,
  .industries-grid,
  .footer-grid,
  .corporate-grid,
  .corporate-metrics {
    grid-template-columns: 1fr;
  }

  .topbar-content,
  .topbar-links,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-content {
    padding: 10px 0;
  }

  .topbar-links {
    gap: 8px;
  }

  .section {
    padding: 56px 0;
  }

  .trust-grid article,
  .corporate-metrics article,
  .industries-grid article,
  .process-grid article,
  .product-card div,
  .contact-card,
  .feature-list div {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-points {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-points li {
    width: 100%;
    border-radius: 16px;
  }

  .feature-list div {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .feature-list span,
  .process-grid span {
    width: 42px;
  }

  .showcase-grid img,
  .about-visuals img {
    width: 100%;
    min-height: 180px;
  }

  .product-card img {
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 10px;
  }

  .contact-item p,
  .footer-grid a,
  .footer-grid p {
    line-height: 1.65;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 240px;
    height: 240px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 56px;
    padding-right: 14px;
  }

  .whatsapp-text strong {
    font-size: 0.92rem;
  }

  .whatsapp-text small {
    font-size: 0.75rem;
  }
}
.footer-symbol-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  flex: 0 0 48px;
}

.footer-logo strong {
  line-height: 1.35;
}
/* Mobile footer symbol size */
@media (max-width: 760px) {
  .footer-symbol-logo {
    width: 26px;
    height: 26px;
    flex: 0 0 30px;
  }

  .footer-logo {
    gap: 10px;
  }
}
/* SHOWCASE GÖRSELLERİ - 3 EŞİT KARE */
.showcase-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.showcase-grid > img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  margin: 0 !important;

  object-fit: contain !important;
  object-position: center !important;

  background: #ffffff !important;
  padding: 18px !important;
  border-radius: 8px !important;
  box-shadow: var(--shadow-soft) !important;
}

/* Tablet */
@media (max-width: 1080px) {
  .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* Mobil */
@media (max-width: 760px) {
  .showcase-grid {
    grid-template-columns: 1fr !important;
  }

  .showcase-grid > img {
    aspect-ratio: 1 / 1 !important;
    padding: 14px !important;
  }
}