:root {
  --navy: #062B63;
  --navy-2: #0B4C9C;
  --blue: #0D4FAF;
  --blue-light: #2E7BDF;
  --ink: #0d1b2e;
  --muted: #667085;
  --line: #d9e0e8;
  --soft: #f4f7fb;
  --white: #ffffff;
  --header-height: 92px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 3.5vw;
  color: var(--white);
  background: linear-gradient(100deg, #03162e, #06264c);
  box-shadow: 0 8px 30px rgba(4, 26, 54, .16);
}

.brand img {
  display: block;
  width: min(270px, 100%);
  height: 60px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2.2vw, 36px);
}

.main-nav a {
  position: relative;
  font-size: .95rem;
  white-space: nowrap;
  opacity: .9;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--blue-light);
  transition: right .2s ease;
}

.main-nav a:hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.lang-button {
  border: 0;
  padding: 3px;
  color: rgba(255,255,255,.6);
  background: transparent;
  cursor: pointer;
}

.lang-button.active { color: var(--white); font-weight: 700; }

.icon-link {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-left: 4px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  font-weight: 800;
}

.icon-link.whatsapp { font-size: 1.25rem; }

.disabled {
  opacity: .55;
  cursor: not-allowed;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--white);
  background: transparent;
  font-size: 1.35rem;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: 44% 56%;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 45%, rgba(31, 119, 214, .28), transparent 33%),
    linear-gradient(120deg, #031427 0%, #061c35 44%, #0a2948 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 90px 3vw 90px 7vw;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow { color: #7eb9ff; }

h1, h2, h3 { margin-top: 0; line-height: 1.06; }

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 5.6vw, 6.4rem);
  letter-spacing: -.055em;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.25rem, 3.4vw, 4.2rem);
  letter-spacing: -.045em;
}

h3 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  letter-spacing: -.03em;
}

.partnership {
  margin: 0 0 18px;
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 30px;
}

.partner-logo-card {
  min-width: 210px;
  padding: 14px 18px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.partner-logo-card img {
  width: 190px;
  height: 48px;
  object-fit: contain;
}

.partner-logo-card span {
  display: block;
  margin-top: 4px;
  color: #24334a;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(13,103,216,.27);
}

.button.primary:hover { background: #0b5fc8; }

.button.secondary {
  border-color: rgba(255,255,255,.7);
  color: var(--white);
  background: rgba(255,255,255,.04);
}

.hero-visual {
  position: relative;
  min-height: 600px;
  align-self: stretch;
}

.instrument {
  position: absolute;
  top: 23%;
  right: 8%;
  width: min(650px, 80%);
  padding: 30px 34px 40px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: linear-gradient(145deg, #33465a, #13273a 55%, #081a2b);
  box-shadow: 0 35px 80px rgba(0,0,0,.5);
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
}

.instrument-screen {
  padding: 12px;
  border-radius: 15px;
  background: #071321;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.08);
}

.instrument-screen svg { display: block; width: 100%; }

.instrument-controls {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.instrument-controls span {
  aspect-ratio: 1.2;
  border-radius: 6px;
  background: linear-gradient(#536476, #203244);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.25), 0 2px 4px rgba(0,0,0,.4);
}

.rf-cable {
  position: absolute;
  width: 48%;
  height: 200px;
  border: 9px solid var(--blue);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 8px 8px rgba(0,0,0,.3));
}

.cable-a { right: 1%; bottom: 3%; transform: rotate(12deg); }
.cable-b { right: 19%; bottom: -7%; transform: rotate(-12deg); }

.connector {
  position: absolute;
  width: 90px;
  height: 42px;
  border-radius: 7px;
  background: linear-gradient(90deg, #b5bec7, #4f6274 35%, #d8dee4 67%, #394d60);
  box-shadow: 0 12px 25px rgba(0,0,0,.35);
}

.connector::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -28px;
  width: 34px;
  height: 26px;
  border-radius: 3px;
  background: repeating-linear-gradient(90deg, #cdd5dc 0 4px, #647586 4px 7px);
}

.connector-a { right: 10%; bottom: 9%; transform: rotate(10deg); }
.connector-b { right: 41%; bottom: 4%; transform: rotate(-16deg); }

.signal-grid {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.section {
  padding: 120px 7vw;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 56px;
}

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

.solution-card {
  position: relative;
  min-height: 390px;
  padding: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(155deg, #fff, #f5f8fc);
  box-shadow: 0 20px 55px rgba(15,35,65,.08);
}

.solution-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  border: 28px solid rgba(13,103,216,.06);
  border-radius: 50%;
}

.solution-number {
  margin-bottom: 70px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.solution-card p {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.05rem;
}

.powered-by {
  margin-top: 28px;
  color: var(--ink) !important;
  font-weight: 800;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 800;
}

.why { background: var(--soft); }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.benefit:last-child { border-right: 0; }
.benefit strong { font-size: 1.05rem; }
.benefit span { color: var(--muted); }

.application-panel,
.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
  padding: 70px;
  border-radius: 22px;
}

.application-panel {
  color: var(--white);
  background: linear-gradient(125deg, var(--navy), var(--navy-2));
}

.application-panel .eyebrow { color: #7eb9ff; }
.application-panel p { color: rgba(255,255,255,.76); }

.disabled-button {
  justify-self: end;
  opacity: .65;
  cursor: not-allowed;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: start;
}

.about-grid > p {
  margin-top: 42px;
  color: var(--muted);
  font-size: 1.15rem;
}

.contact { background: var(--soft); }

.contact-panel {
  align-items: start;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15,35,65,.08);
}

.contact-panel > div > p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: .85rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd7e2;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(13,103,216,.18);
  border-color: var(--blue);
}

.full-width { grid-column: 1 / -1; }

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #20c96b;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  font-size: 1.8rem;
}

footer {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 45px 7vw;
  color: rgba(255,255,255,.75);
  background: var(--navy);
}

footer div { display: flex; flex-direction: column; gap: 6px; }
footer strong { color: var(--white); font-size: 1.15rem; }

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(190px, 240px) 1fr auto;
    gap: 14px;
    padding-inline: 2vw;
  }
  .main-nav { gap: 15px; }
  .main-nav a { font-size: .82rem; }
  .icon-link { display: none; }
  .hero { grid-template-columns: 50% 50%; }
  .instrument { width: 90%; right: 2%; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
  :root { --header-height: 76px; }
  .site-header {
    grid-template-columns: 1fr auto auto;
    min-height: var(--header-height);
  }
  .brand img { height: 48px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 7vw 28px;
    background: var(--navy);
    box-shadow: 0 20px 35px rgba(0,0,0,.25);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 8px 0; font-size: 1rem; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .hero-content { padding: 80px 7vw 30px; }
  .hero-visual { min-height: 500px; }
  .instrument { top: 10%; right: 5%; width: 90%; }
  .solution-grid,
  .application-panel,
  .about-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .disabled-button { justify-self: start; }
  .application-panel,
  .contact-panel { padding: 45px; }
  .about-grid { gap: 20px; }
  .about-grid > p { margin-top: 0; }
}

@media (max-width: 620px) {
  .site-header { padding-inline: 16px; }
  .brand img { width: 190px; }
  .header-actions span,
  .header-actions .icon-link { display: none; }
  .hero-content { padding-top: 58px; }
  h1 { font-size: 3.2rem; }
  .partner-logo-card { width: 100%; }
  .partner-logo-card img { width: 175px; }
  .hero-visual { min-height: 360px; }
  .instrument { padding: 18px; border-radius: 16px; }
  .rf-cable { border-width: 6px; }
  .connector { transform: scale(.7); }
  .section { padding: 80px 20px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; padding: 30px; }
  .solution-number { margin-bottom: 42px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit,
  .benefit:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit:last-child { border-bottom: 0; }
  .application-panel,
  .contact-panel { padding: 30px 24px; }
  .contact-form { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
}


/* V2 — real manufacturer product imagery */
.hero {
  grid-template-columns: 46% 54%;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  padding: 60px 5vw 60px 20px;
}

.hero-product-frame {
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 34px 80px rgba(0,0,0,.42);
}

.hero-product-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.image-card {
  padding: 0;
  display: grid;
  grid-template-rows: 240px 1fr;
}

.solution-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
}

.solution-content {
  padding: 36px 40px 42px;
}

.image-card .solution-number {
  margin-bottom: 38px;
}

.image-card::after {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 0 7vw 60px;
  }

  .hero-product-frame {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .hero-visual {
    padding: 0 20px 40px;
  }

  .image-card {
    grid-template-rows: 180px 1fr;
  }

  .solution-image {
    height: 180px;
  }

  .solution-content {
    padding: 28px 24px 34px;
  }
}


/* V3 — header and hero redesigned to match approved direction */
.site-header {
  min-height: 88px;
  grid-template-columns: 330px 1fr auto;
  padding: 10px 3vw;
}

.brand {
  display: flex;
  align-items: center;
  height: 68px;
}

.brand img {
  width: 305px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.hero-v3 {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: 40% 60%;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, #031427 0%, #061d37 40%, #0b2f56 100%);
}

.hero-v3 .hero-content {
  position: relative;
  z-index: 4;
  align-self: center;
  padding: 70px 20px 70px 5.5vw;
}

.hero-v3 h1 {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 5.2vw, 6rem);
  letter-spacing: -.055em;
}

.hero-v3 .partnership {
  margin-bottom: 20px;
  font-size: 1.35rem;
}

.hero-partners {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 0 28px;
}

.hero-partner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-partner img {
  display: block;
  width: 220px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  padding: 6px 10px;
}

.hero-partner span {
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.partner-divider {
  width: 1px;
  height: 84px;
  background: rgba(255,255,255,.45);
}

.hero-products {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.harogic-shot {
  position: absolute;
  inset: 0 0 0 0;
}

.harogic-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #061d37 0%, rgba(6,29,55,.25) 22%, rgba(6,29,55,0) 58%),
    linear-gradient(0deg, rgba(3,20,39,.25), rgba(3,20,39,0) 35%);
}

.harogic-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.rflogy-shot {
  position: absolute;
  right: 2.5%;
  bottom: 4%;
  width: 39%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.18);
}

.rflogy-shot img {
  width: 100%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3,20,39,.25), rgba(3,20,39,0) 48%);
}

.hero-v3 .hero-buttons {
  gap: 16px;
}

.hero-v3 .button {
  min-width: 160px;
  min-height: 56px;
  font-size: 1rem;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 270px 1fr auto;
  }

  .brand img {
    width: 250px;
  }

  .hero-v3 {
    grid-template-columns: 44% 56%;
  }

  .hero-partner img {
    width: 175px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .brand img {
    width: 235px;
    height: 54px;
  }

  .hero-v3 {
    grid-template-columns: 1fr;
  }

  .hero-v3 .hero-content {
    padding: 70px 7vw 40px;
  }

  .hero-products {
    min-height: 470px;
  }

  .rflogy-shot {
    width: 42%;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 190px;
  }

  .hero-v3 h1 {
    font-size: 3.35rem;
  }

  .hero-partners {
    align-items: flex-start;
    gap: 14px;
  }

  .hero-partner img {
    width: 138px;
    height: 48px;
  }

  .hero-partner span {
    max-width: 138px;
    font-size: .62rem;
  }

  .partner-divider {
    height: 72px;
  }

  .hero-products {
    min-height: 340px;
  }

  .rflogy-shot {
    width: 46%;
    right: 3%;
    bottom: 5%;
  }
}


/* V4 refinements */
.site-header {
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 5px 24px rgba(3, 20, 39, .10);
}

.brand img {
  filter: none;
}

.main-nav a {
  color: #15253a;
}

.main-nav a::after {
  background: var(--blue);
}

.lang-button {
  color: #7b8796;
}

.lang-button.active {
  color: var(--ink);
}

.icon-link {
  color: #16304e;
  border-color: #cbd5e1;
}

.menu-toggle {
  color: var(--ink);
  border-color: #cbd5e1;
}

.hero-v3 {
  min-height: 620px;
  grid-template-columns: 40% 60%;
}

.hero-products {
  min-height: 620px;
}

.rflogy-shot {
  display: none !important;
}

.image-card .solution-number,
.solution-number {
  display: none !important;
}

.solution-content {
  padding-top: 38px;
}

.benefit {
  align-items: center;
  text-align: center;
  padding: 34px 24px;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  object-fit: contain;
}

.benefit strong {
  font-size: 1.02rem;
}

.benefit span {
  max-width: 240px;
  font-size: .95rem;
}

@media (max-width: 900px) {
  .main-nav {
    background: #ffffff;
  }

  .main-nav a {
    color: var(--ink);
  }
}


/* V5 — approved image-led value section */
.benefit-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  border: 0;
}

.benefit-image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 35, 65, .08);
}

.benefit-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 980px) {
  .benefit-image-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .benefit-image-card img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 620px) {
  .benefit-image-grid {
    gap: 16px;
  }

  .benefit-image-card {
    border-radius: 12px;
  }
}


/* SynchroWaves Website v1 — rebrand */
.site-header{background:#fff;color:var(--ink);box-shadow:0 5px 24px rgba(3,20,39,.10)}
.brand{height:72px;display:flex;align-items:center}
.brand img{width:250px;height:62px;object-fit:contain;object-position:left center;filter:none!important}
.main-nav a{color:#15253a}
.lang-button{color:#7b8796}.lang-button.active{color:#0b2240}
.icon-link{color:#0b2240;border-color:#cbd5e1}
.hero-v3{background:linear-gradient(90deg,#061a38 0%,#092a58 42%,#0D4FAF 145%)}
.hero-v3 .button.primary{background:var(--blue)}
.hero-v3 .button.primary:hover{background:#0a4498}
.why{background:#f5f8fc}
@media(max-width:900px){.brand img{width:210px;height:54px}}


/* RC1 launch refinements */
.product-family-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  margin: 22px 0 8px;
  padding: 0;
  list-style: none;
  color: #24364c;
  font-size: .96rem;
  font-weight: 650;
}

.product-family-list li {
  position: relative;
  padding-left: 15px;
}

.product-family-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.contact-copy > p:last-of-type {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-height: 86px;
  justify-content: center;
  padding: 15px 17px;
  border: 1px solid #d8e0eb;
  border-radius: 10px;
  background: #f8fafc;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.contact-channel:hover {
  transform: translateY(-2px);
  border-color: #9fb9dc;
  box-shadow: 0 10px 28px rgba(15, 35, 65, .08);
}

.contact-channel-kicker {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-channel strong {
  color: #0b2240;
  font-size: .94rem;
  overflow-wrap: anywhere;
}

.footer-contact {
  align-items: flex-end;
}

.footer-contact a {
  color: rgba(255,255,255,.78);
}

.footer-contact a:hover {
  color: #fff;
}

.floating-whatsapp {
  display: none !important;
}

@media (max-width: 620px) {
  .product-family-list,
  .contact-channels {
    grid-template-columns: 1fr;
  }
  .footer-contact {
    align-items: flex-start;
  }
}


/* ===== SynchroWaves v1.0 Launch polish ===== */
:root {
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 14px 36px rgba(9,35,72,.08);
  --shadow-medium: 0 24px 60px rgba(7,29,61,.14);
}
body { letter-spacing: -.01em; }
.site-header { border-bottom: 1px solid rgba(6,43,99,.08); }
.brand img { width: 265px; }
.main-nav { gap: clamp(10px, 1.05vw, 20px); }
.main-nav a { font-size: .82rem; font-weight: 650; }
.main-nav a:hover { color: var(--blue); }
.icon-link svg { width: 18px; height: 18px; }
.whatsapp-header { color: #25D366; }
.linkedin-header { color: #0A66C2; }
.email-header { color: #0D4FAF; }
.hero-v3 {
  min-height: 640px;
  grid-template-columns: 42% 58%;
  background: radial-gradient(circle at 78% 45%, rgba(46,123,223,.22), transparent 28%), linear-gradient(90deg,#06172f 0%,#08264b 43%,#0D4FAF 130%);
}
.hero-v3 .hero-content { padding-left: 6vw; padding-right: 32px; }
.hero-v3 h1 { max-width: 660px; font-size: clamp(3.7rem,5.35vw,6.2rem); letter-spacing: -.062em; margin-bottom: 22px; }
.hero-v3 .partnership { font-size: 1.05rem; margin-bottom: 16px; color: rgba(255,255,255,.72); }
.hero-partners { gap: 20px; }
.hero-partner img { width: 205px; height: 54px; border-radius: 8px; box-shadow: 0 10px 22px rgba(0,0,0,.12); }
.hero-partner span { font-size: .7rem; letter-spacing: .07em; }
.partner-divider { height: 72px; opacity: .5; }
.hero-products { min-height: 640px; }
.harogic-shot img { object-position: center 52%; filter: saturate(.96) contrast(1.02); }
.harogic-shot::after { background: linear-gradient(90deg,#08264b 0%,rgba(8,38,75,.72) 8%,rgba(8,38,75,.18) 26%,rgba(8,38,75,0) 55%), linear-gradient(0deg,rgba(6,23,47,.24),rgba(6,23,47,0) 38%); }
.section { padding-top: 108px; padding-bottom: 108px; }
.section-heading { margin-bottom: 44px; }
.section-heading h2 { max-width: 760px; }
.solution-grid { gap: 28px; }
.solution-card { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); transition: transform .22s ease, box-shadow .22s ease; }
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.solution-image { height: 260px; }
.solution-content { padding: 38px 40px 42px; }
.solution-card h3 { font-size: clamp(1.72rem,1.9vw,2.25rem); }
.product-family-list { margin: 18px 0 0; padding-left: 1.1rem; color: #46566b; }
.product-family-list li { margin: 5px 0; }
.text-link { margin-top: 18px; }
.why { background: #f7f9fc; }
.benefit-image-grid { gap: 24px; }
.benefit-image-card { border-radius: var(--radius-md); box-shadow: var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease; }
.benefit-image-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }
.application-panel { border-radius: var(--radius-lg); box-shadow: var(--shadow-medium); }
.about-grid { align-items: center; }
.contact-panel { grid-template-columns: .92fr 1.08fr; gap: 58px; border-radius: var(--radius-lg); }
.contact-channels { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:26px; }
.contact-channel { position:relative; display:flex; flex-direction:column; gap:3px; min-height:92px; padding:16px 16px 16px 56px; border:1px solid #d9e1eb; border-radius:var(--radius-sm); background:#fff; transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease; }
.contact-channel:hover { transform:translateY(-2px); border-color:rgba(13,79,175,.28); box-shadow:0 10px 28px rgba(13,79,175,.08); }
.contact-channel-icon { position:absolute; left:16px; top:18px; width:27px; height:27px; color:var(--blue); }
.contact-channel-icon svg { width:100%; height:100%; }
.whatsapp-contact-icon { color:#25D366; }
.linkedin-contact-icon { color:#0A66C2; }
.contact-channel-kicker { font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); font-weight:800; }
.contact-channel strong { font-size:.86rem; line-height:1.25; overflow-wrap:anywhere; }
.site-footer { display:grid; grid-template-columns:1.1fr .8fr 1fr auto; gap:34px; align-items:center; min-height:170px; padding:42px 7vw; color:rgba(255,255,255,.76); background:#061a38; }
.footer-brand,.footer-partners,.footer-links { display:flex; flex-direction:column; gap:7px; }
.footer-brand img { width:220px; height:50px; object-fit:contain; object-position:left center; filter:brightness(0) invert(1); }
.footer-brand span,.footer-partners span { font-size:.82rem; }
.footer-partners strong { color:#fff; font-size:.95rem; }
.footer-links a { color:#fff; font-size:.9rem; }
.footer-copy { justify-self:end; align-self:end; font-size:.82rem; white-space:nowrap; }
.floating-whatsapp { display:none !important; }
@media (max-width:1120px) { .site-header { grid-template-columns:240px 1fr auto; } .brand img { width:225px; } .main-nav a { font-size:.76rem; } .site-footer { grid-template-columns:1fr 1fr; } .footer-copy { justify-self:start; align-self:auto; } }
@media (max-width:900px) { .hero-v3 { grid-template-columns:1fr; } .hero-v3 .hero-content { padding:68px 7vw 40px; } .hero-products { min-height:440px; } .contact-panel { grid-template-columns:1fr; } .contact-channels { grid-template-columns:1fr 1fr; } .site-footer { grid-template-columns:1fr 1fr; } }
@media (max-width:620px) { .brand img { width:205px; } .hero-v3 h1 { font-size:3.2rem; } .hero-partners { flex-wrap:wrap; } .partner-divider { display:none; } .hero-products { min-height:310px; } .solution-image { height:190px; } .contact-channels { grid-template-columns:1fr; } .site-footer { grid-template-columns:1fr; gap:22px; } .footer-copy { justify-self:start; } }
