:root {
  --six-ink: #07101f;
  --six-blue: #08a8e8;
  --six-blue-dark: #066fa8;
  --six-cyan: #35e2ff;
  --six-red: #ff2a2a;
  --six-violet: #7c3cff;
  --six-muted: #64748b;
  --six-line: rgba(7, 16, 31, 0.10);
  --six-soft: #f4f8fc;
  --six-card: #ffffff;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--six-ink);
  background: #ffffff;
}

.header {
  background: rgba(5, 11, 22, 0.70);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  z-index: 10000;
}

.header .container-xl {
  gap: 12px;
  flex-wrap: nowrap;
}

.header .logo {
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 360px;
  max-width: 50vw;
  height: auto;
  max-height: 50px !important;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.26));
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  margin-left: 18px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.language-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.language-flag:hover,
.language-flag.active {
  transform: translateY(-1px);
  border-color: rgba(53, 226, 255, 0.68);
  background: rgba(53, 226, 255, 0.18);
  box-shadow: 0 8px 18px rgba(8, 168, 232, 0.26);
}

.navmenu a {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 700 !important;
}

.navmenu {
  margin-left: auto;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: #ffffff !important;
}

.mobile-nav-toggle {
  color: #ffffff;
}

.section {
  scroll-margin-top: 82px;
}

.six-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 142px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(53, 226, 255, 0.28), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(255, 42, 42, 0.18), transparent 34%),
    linear-gradient(135deg, #030711 0%, #07152a 42%, #0b2442 100%);
}

.six-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
}

.six-hero::after {
  content: "";
  position: absolute;
  width: 58vw;
  height: 58vw;
  right: -24vw;
  top: 4vw;
  border-radius: 50%;
  border: 1px solid rgba(53, 226, 255, 0.18);
  box-shadow:
    inset 0 0 80px rgba(53, 226, 255, 0.08),
    0 0 90px rgba(53, 226, 255, 0.12);
}

.six-hero .container {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-heading span,
.campaign-box span,
.contact-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--six-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-copy h1 {
  color: #ffffff;
  font-size: clamp(2.45rem, 4.95vw, 5.1rem);
  line-height: 1.02;
  font-weight: 900;
  max-width: 860px;
  margin-bottom: 24px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: 150px;
  height: 5px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--six-red), var(--six-cyan));
}

.hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.7;
  max-width: 760px;
}

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

.btn-solid,
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  transition: 0.25s ease;
}

.btn-solid {
  color: #ffffff;
  background: linear-gradient(135deg, var(--six-blue), var(--six-blue-dark) 58%, var(--six-violet));
  box-shadow: 0 16px 34px rgba(8, 168, 232, 0.25);
}

.btn-solid:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(8, 168, 232, 0.34);
}

.btn-soft {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-soft:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.product-section .btn-soft {
  color: var(--six-ink);
  border-color: var(--six-line);
  background: #ffffff;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  gap: 12px;
  margin-top: 42px;
}

.hero-proof div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(12px);
}

.hero-proof strong {
  display: block;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 900;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.hero-panel {
  position: relative;
  padding: 32px;
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 18%, rgba(53, 226, 255, 0.22), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(255, 42, 42, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

@media (min-width: 1200px) {
  .six-hero .col-lg-7 {
    width: 56%;
  }

  .six-hero .col-lg-5 {
    width: 44%;
  }

  .hero-ai-panel {
    margin-left: auto;
    transform: translateX(26px);
    max-width: 520px;
  }
}

.hero-ai-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(53, 226, 255, 0.14);
  pointer-events: none;
}

.ai-core {
  position: relative;
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  margin: 6px auto 28px;
}

.ai-core strong {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 2.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--six-red), var(--six-blue));
  box-shadow: 0 22px 50px rgba(8, 168, 232, 0.28);
}

.ai-ring,
.ai-ring::before,
.ai-ring::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(53, 226, 255, 0.44);
}

.ai-ring::before,
.ai-ring::after {
  content: "";
  inset: 16px;
  border-color: rgba(255, 255, 255, 0.20);
}

.ai-ring::after {
  inset: 32px;
  border-color: rgba(255, 42, 42, 0.32);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  margin-bottom: 26px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2df28f;
  box-shadow: 0 0 0 8px rgba(45, 242, 143, 0.12);
}

.hero-panel h2 {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 900;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.76);
}

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

.panel-grid span {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.ai-grid span {
  background: rgba(53, 226, 255, 0.10);
  border: 1px solid rgba(53, 226, 255, 0.13);
}

.panel-link {
  color: #ffffff;
  font-weight: 900;
}

.section-heading {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 54px;
  padding: 0 18px;
}

.section-heading h2 {
  position: relative;
  color: var(--six-ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 5px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--six-red), var(--six-blue), var(--six-cyan));
  box-shadow: 0 10px 28px rgba(8, 168, 232, 0.26);
}

.section-heading p {
  color: var(--six-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-heading.text-start h2::after {
  margin-left: 0;
}

.section-heading span {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--six-blue-dark);
  background: rgba(8, 168, 232, 0.10);
  border: 1px solid rgba(8, 168, 232, 0.16);
  box-shadow: 0 12px 30px rgba(8, 168, 232, 0.07);
}

.expertise-section,
.services-section,
.references-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.expertise-section::before,
.services-section::before,
.references-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(8, 168, 232, 0.07), transparent 26%),
    radial-gradient(circle at 92% 82%, rgba(255, 42, 42, 0.055), transparent 30%);
  pointer-events: none;
}

.expertise-section .container,
.services-section .container,
.references-section .container,
.contact-section .container {
  position: relative;
  z-index: 1;
}

.ai-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.ai-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(8, 168, 232, 0.12), transparent 26%),
    radial-gradient(circle at 88% 78%, rgba(255, 42, 42, 0.10), transparent 30%);
  pointer-events: none;
}

.ai-section .container {
  position: relative;
  z-index: 1;
}

.value-card,
.service-card,
.ai-card,
.contact-form,
.contact-card {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: var(--six-card);
  border: 1px solid var(--six-line);
  box-shadow: 0 24px 60px rgba(7, 16, 31, 0.06);
}

.value-card,
.service-card,
.ai-card,
.key-card,
.domain-grid div {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.value-card:hover,
.service-card:hover,
.ai-card:hover,
.key-card:hover,
.domain-grid div:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 168, 232, 0.25);
  box-shadow: 0 30px 80px rgba(7, 16, 31, 0.10);
}

.value-card i,
.service-card i,
.ai-card i {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--six-blue);
  background: rgba(8, 168, 232, 0.10);
  font-size: 1.6rem;
}

.value-card h3,
.service-card h3,
.ai-card h3 {
  color: var(--six-ink);
  font-size: 1.16rem;
  font-weight: 900;
}

.value-card p,
.service-card p,
.ai-card p {
  color: var(--six-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.ai-card {
  position: relative;
  overflow: hidden;
}

.ai-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(8, 168, 232, 0.08);
}

.featured-ai-card {
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(53, 226, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #07101f, #082a4d);
  border-color: rgba(53, 226, 255, 0.18);
}

.featured-ai-card h3 {
  color: #ffffff;
}

.featured-ai-card p {
  color: rgba(255, 255, 255, 0.74);
}

.featured-ai-card i {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.product-section,
.domains-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
}

.product-section::before,
.domains-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(8, 168, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 168, 232, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), transparent 92%);
}

.product-section .container,
.domains-section .container {
  position: relative;
  z-index: 1;
}

.product-visual {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff, #eaf6ff);
  border: 1px solid rgba(8, 168, 232, 0.12);
  box-shadow: 0 30px 80px rgba(7, 16, 31, 0.08);
}

.product-visual img {
  width: 100%;
}

.solumedicale-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(8, 168, 232, 0.20), transparent 32%),
    radial-gradient(circle at 86% 74%, rgba(137, 245, 151, 0.22), transparent 30%),
    linear-gradient(135deg, #07101f, #0b1b31);
}

.solumedicale-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.solumedicale-logo-card {
  position: relative;
  z-index: 2;
  width: min(98%, 560px);
  padding: 4px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.solumedicale-logo-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.solumedicale-wordmark {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.16em;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.55rem, 4.8vw, 4.25rem);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  white-space: nowrap;
  filter:
    drop-shadow(0 14px 26px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 18px rgba(8, 168, 232, 0.16));
}

.solu-part {
  color: #16aee6;
}

.medicale-part {
  color: #91f29b;
}

.product-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.product-badge i {
  color: var(--six-cyan);
}

.product-badge-ai {
  top: 28px;
  left: 28px;
}

.product-badge-data {
  right: 28px;
  top: 96px;
}

.floating-stat {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--six-ink);
  color: #ffffff;
  box-shadow: 0 22px 40px rgba(7, 16, 31, 0.22);
}

.floating-stat strong,
.floating-stat span {
  display: block;
}

.floating-stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--six-ink);
  font-weight: 700;
  margin-bottom: 13px;
}

.check-list i {
  color: var(--six-blue);
}

.marketing-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 42, 42, 0.18), transparent 28%),
    radial-gradient(circle at 85% 85%, rgba(53, 226, 255, 0.20), transparent 26%),
    linear-gradient(135deg, rgba(7, 16, 31, 0.96), rgba(6, 111, 168, 0.90)),
    #07101f;
  color: #ffffff;
}

.marketing-section::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  border: 1px solid rgba(53, 226, 255, 0.16);
  box-shadow: inset 0 0 70px rgba(53, 226, 255, 0.08);
  pointer-events: none;
}

.campaign-box,
.campaign-steps {
  position: relative;
  z-index: 1;
}

.campaign-box,
.campaign-steps {
  height: 100%;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.campaign-box h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.campaign-box p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

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

.step-item strong {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #ffffff;
  background: var(--six-red);
}

.step-item h3 {
  color: #ffffff;
  font-weight: 900;
}

.step-item p {
  color: rgba(255, 255, 255, 0.70);
  margin: 0;
}

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

.domain-grid div,
.key-card {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, #ffffff, #f8fbff);
  border: 1px solid var(--six-line);
  color: var(--six-ink);
  font-weight: 900;
  box-shadow: 0 18px 46px rgba(7, 16, 31, 0.05);
}

.domain-grid div {
  position: relative;
  overflow: hidden;
}

.domain-grid div::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -38px;
  top: -38px;
  border-radius: 50%;
  background: rgba(8, 168, 232, 0.08);
}

.domain-grid i {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  color: var(--six-blue);
  background: rgba(8, 168, 232, 0.10);
  font-size: 2rem;
  margin-bottom: 8px;
}

.domain-grid span {
  display: block;
}

.key-card {
  position: relative;
  overflow: hidden;
  min-height: 86px;
  background:
    linear-gradient(135deg, #ffffff, #f7fbff);
}

.key-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--six-red), var(--six-blue));
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.contact-card h2 {
  color: var(--six-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.contact-card p,
.contact-line {
  color: var(--six-muted);
}

.contact-line {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  font-weight: 700;
}

.contact-line i {
  color: var(--six-blue);
}

.contact-form input,
.contact-form textarea {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid var(--six-line);
  padding: 13px 16px;
  box-shadow: none;
}

.contact-form textarea {
  min-height: 150px;
}

.footer {
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--six-ink);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-brand:hover,
.footer-links a:hover {
  color: var(--six-blue);
}

.footer-logo {
  display: block;
  width: 330px;
  max-width: min(100%, 62vw);
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.32));
}

.footer p {
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 1199px) {
  body.mobile-nav-active .header {
    z-index: 2147483000 !important;
  }

  body.mobile-nav-active .main,
  body.mobile-nav-active .footer,
  body.mobile-nav-active .scroll-top {
    position: relative;
    z-index: 1 !important;
  }

  .navmenu {
    margin-left: 0;
    flex: 0 0 auto;
    z-index: 2147482000;
  }

  .mobile-nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border-radius: 14px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    position: relative;
    z-index: 2147483002;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    font-size: 1.55rem;
    line-height: 1;
  }

  .navmenu ul {
    background: #ffffff;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--six-ink) !important;
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    font-weight: 800 !important;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    color: var(--six-ink) !important;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    z-index: 2147483002 !important;
  }

  .mobile-nav-active .navmenu {
    position: fixed !important;
    inset: 0 !important;
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 82px 16px 24px;
    background: rgba(3, 7, 17, 0.82);
    backdrop-filter: blur(10px);
    z-index: 2147483000 !important;
  }

  .mobile-nav-active .navmenu > ul {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    position: relative !important;
    inset: auto !important;
    width: min(420px, calc(100vw - 32px));
    max-height: calc(100vh - 112px);
    padding: 16px;
    margin: 0;
    border-radius: 22px;
    background: #ffffff !important;
    border: 1px solid rgba(7, 16, 31, 0.08);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    list-style: none;
    z-index: 2147483001 !important;
  }

  .mobile-nav-active .navmenu > ul > li {
    display: block;
    width: 100%;
  }

  .mobile-nav-active .navmenu > ul > li > a,
  .mobile-nav-active .navmenu > ul > li > a:focus {
    display: flex !important;
    align-items: center;
    width: 100%;
    min-height: 46px;
    padding: 12px 14px !important;
    margin: 0 !important;
    color: var(--six-ink) !important;
    background: transparent;
    border-radius: 14px;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    white-space: normal !important;
    transform: none !important;
  }

  .mobile-nav-active .navmenu > ul > li > a::before,
  .mobile-nav-active .navmenu > ul > li > a::after {
    display: none !important;
    content: none !important;
  }

  .mobile-nav-active .navmenu a:hover,
  .mobile-nav-active .navmenu .active,
  .mobile-nav-active .navmenu .active:focus {
    color: var(--six-blue-dark) !important;
    background: rgba(8, 168, 232, 0.10);
  }
}

.mobile-menu-overlay {
  display: none;
}

@media (max-width: 1199px) {
  .navmenu > ul {
    display: none !important;
  }

  body.mobile-nav-active .navmenu {
    position: static !important;
    inset: auto !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin-left: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    overflow: visible !important;
    z-index: 2147483002 !important;
  }

  body.mobile-nav-active .navmenu > ul {
    display: none !important;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    padding: 92px 16px 24px;
    background:
      radial-gradient(circle at 18% 12%, rgba(8, 168, 232, 0.24), transparent 28%),
      radial-gradient(circle at 90% 78%, rgba(255, 42, 42, 0.16), transparent 30%),
      rgba(3, 7, 17, 0.92);
    backdrop-filter: blur(16px);
    z-index: 2147482000;
    overflow-y: auto;
  }

  body.mobile-nav-active .mobile-menu-overlay {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .mobile-menu-panel {
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: min(430px, calc(100vw - 32px));
    padding: 18px;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 255, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  }

  .mobile-menu-panel::before {
    content: "6SOLUTIONS";
    display: block;
    padding: 6px 4px 12px;
    color: var(--six-blue-dark);
    font-size: 0.78rem;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(7, 16, 31, 0.08);
    margin-bottom: 4px;
  }

  .mobile-menu-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 13px 15px;
    border-radius: 15px;
    color: var(--six-ink) !important;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 850;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(7, 16, 31, 0.06);
    box-shadow: 0 8px 20px rgba(7, 16, 31, 0.04);
  }

  .mobile-menu-panel a::after {
    content: "›";
    color: var(--six-blue);
    font-size: 1.25rem;
    font-weight: 900;
  }

  .mobile-menu-panel a:hover,
  .mobile-menu-panel a.active {
    color: var(--six-blue-dark) !important;
    background:
      linear-gradient(135deg, rgba(8, 168, 232, 0.14), rgba(137, 245, 151, 0.13));
    border-color: rgba(8, 168, 232, 0.18);
  }
}

@media (max-width: 991px) {
  .hero-copy h1 {
    font-size: clamp(2.35rem, 8vw, 4.4rem);
    max-width: 100%;
    text-wrap: wrap;
  }

  .brand-logo {
    width: 260px;
    max-width: calc(100vw - 180px);
    max-height: 58px !important;
  }

  .language-switcher {
    margin-left: 4px;
  }

  .six-hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-proof,
  .domain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .hero-copy h1 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
    line-height: 1.05;
  }

  .header .container-xl {
    gap: 6px;
  }

  .brand-logo {
    width: 155px;
    max-width: calc(100vw - 150px);
    max-height: 42px !important;
  }

  .language-switcher {
    gap: 3px;
    margin-left: 0;
    padding: 3px;
    box-shadow: none;
  }

  .language-flag {
    width: 24px;
    height: 24px;
    font-size: 0.82rem;
  }

  .hero-proof,
  .panel-grid,
  .domain-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .campaign-box,
  .campaign-steps,
  .contact-card,
  .contact-form {
    padding: 24px;
    border-radius: 22px;
  }

  .step-item {
    grid-template-columns: 1fr;
  }

  .btn-solid,
  .btn-soft {
    width: 100%;
  }

  .footer-logo {
    width: 270px;
    max-width: 100%;
  }

  .solumedicale-visual {
    min-height: auto;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .solumedicale-logo-card {
    width: 100%;
    padding: 18px 10px;
    border-radius: 20px;
  }

  .solumedicale-wordmark {
    font-size: clamp(2.05rem, 10vw, 3.3rem);
    letter-spacing: -0.035em;
    gap: 0.12em;
    white-space: nowrap;
  }

  .product-badge {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    justify-self: start;
    margin: 6px 0;
  }

  .floating-stat {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 6px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .floating-stat strong {
    font-size: 1rem;
  }

  .floating-stat span {
    font-size: 0.92rem;
    line-height: 1.35;
  }
}
