* {
  box-sizing: border-box;
}

:root {
  --bg-main: #f2f5f9;
  --text-main: #163047;
  --text-soft: #557086;
  --text-strong: #0f2233;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-dark: rgba(237, 246, 251, 0.88);
  --border: rgba(16, 45, 68, 0.1);
  --header-bg: rgba(255, 255, 255, 0.76);
  --header-border: rgba(16, 45, 68, 0.08);
  --nav-text: #20415c;
  --nav-hover: #1fae4b;
  --button-secondary-bg: rgba(14, 39, 58, 0.04);
  --button-secondary-border: rgba(14, 39, 58, 0.12);
  --button-secondary-text: #163047;
  --field-bg: rgba(255, 255, 255, 0.9);
  --field-border: rgba(16, 45, 68, 0.14);
  --footer-bg: rgba(13, 34, 51, 0.06);
  --shadow: 0 18px 40px rgba(15, 42, 66, 0.12);
}

body[data-theme="dark"] {
  --bg-main:
    radial-gradient(circle at top left, rgba(76, 241, 110, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(209, 246, 111, 0.12), transparent 24%),
    linear-gradient(180deg, #04111f 0%, #07192c 55%, #04101c 100%);
  --text-main: #e5eef7;
  --text-soft: #c1cfdb;
  --text-strong: #ffffff;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --surface-dark: rgba(1, 8, 16, 0.34);
  --border: rgba(255, 255, 255, 0.1);
  --header-bg: rgba(4, 17, 31, 0.72);
  --header-border: rgba(255, 255, 255, 0.08);
  --nav-text: #d8e5f0;
  --nav-hover: #b8f26f;
  --button-secondary-bg: rgba(255, 255, 255, 0.06);
  --button-secondary-border: rgba(255, 255, 255, 0.12);
  --button-secondary-text: #eef6fb;
  --field-bg: rgba(255, 255, 255, 0.05);
  --field-border: rgba(255, 255, 255, 0.12);
  --footer-bg: rgba(0, 0, 0, 0.18);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

body[data-theme="dark"]::before {
  background:
    radial-gradient(circle at 15% 54%, rgba(73, 182, 87, 0.12) 0, rgba(73, 182, 87, 0.12) 18px, transparent 18px),
    radial-gradient(circle at 31% 52%, rgba(73, 182, 87, 0.1) 0, rgba(73, 182, 87, 0.1) 96px, transparent 96px),
    radial-gradient(circle at 83% 8%, rgba(190, 240, 114, 0.1) 0, rgba(190, 240, 114, 0.1) 30px, transparent 30px),
    radial-gradient(circle at 19% 96%, rgba(73, 182, 87, 0.08) 0, rgba(73, 182, 87, 0.08) 112px, transparent 112px);
}

body[data-theme="dark"]::after {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='640' viewBox='0 0 640 640'%3E%3Cpath d='M163 77c70-48 204-34 269 42 58 67 63 198-2 265-76 77-235 86-314 10-68-65-86-244 47-317Z' fill='none' stroke='rgba(255,255,255,0.11)' stroke-width='2.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='560' height='560' viewBox='0 0 560 560'%3E%3Cpath d='M119 122c60-49 180-48 245 6 70 58 77 183 21 253-60 76-191 89-264 27-77-66-84-217-2-286Z' fill='none' stroke='rgba(255,255,255,0.09)' stroke-width='2.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='620' height='620' viewBox='0 0 620 620'%3E%3Cpath d='M149 112c63-42 195-41 269 18 73 59 80 186 27 259-59 82-206 101-287 35-78-63-88-239-9-312Z' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='2.1'/%3E%3C/svg%3E");
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  transition: background 0.25s ease, color 0.25s ease;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background:
    radial-gradient(circle at 15% 54%, rgba(103, 221, 118, 0.12) 0, rgba(103, 221, 118, 0.12) 18px, transparent 18px),
    radial-gradient(circle at 31% 52%, rgba(103, 221, 118, 0.13) 0, rgba(103, 221, 118, 0.13) 96px, transparent 96px),
    radial-gradient(circle at 83% 8%, rgba(190, 240, 114, 0.16) 0, rgba(190, 240, 114, 0.16) 30px, transparent 30px),
    radial-gradient(circle at 19% 96%, rgba(103, 221, 118, 0.08) 0, rgba(103, 221, 118, 0.08) 112px, transparent 112px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.05) 100%);
}

body::after {
  z-index: -1;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='640' viewBox='0 0 640 640'%3E%3Cpath d='M163 77c70-48 204-34 269 42 58 67 63 198-2 265-76 77-235 86-314 10-68-65-86-244 47-317Z' fill='none' stroke='rgba(204,234,214,0.9)' stroke-width='2.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='560' height='560' viewBox='0 0 560 560'%3E%3Cpath d='M119 122c60-49 180-48 245 6 70 58 77 183 21 253-60 76-191 89-264 27-77-66-84-217-2-286Z' fill='none' stroke='rgba(206,238,216,0.88)' stroke-width='2.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='620' height='620' viewBox='0 0 620 620'%3E%3Cpath d='M149 112c63-42 195-41 269 18 73 59 80 186 27 259-59 82-206 101-287 35-78-63-88-239-9-312Z' fill='none' stroke='rgba(208,240,219,0.82)' stroke-width='2.1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position:
    right -80px top 20px,
    left 120px top 300px,
    left -120px bottom -120px;
  background-size:
    340px 340px,
    260px 260px,
    360px 360px;
}

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

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

.container {
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(20px, 3vw, 44px);
  margin: 0 auto;
}

.content-shell {
  width: min(1260px, calc(100% - 72px));
  margin: 0 auto;
}

body[data-theme="dark"] .content-shell {
  width: min(1260px, calc(100% - 72px));
}

main,
.hero,
.section,
.site-footer {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
}

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

.brand img {
  width: 220px;
  height: auto;
}

.brand,
.footer-logo-wrap {
  position: relative;
  display: inline-block;
}

.logo-dark {
  display: none;
}

body[data-theme="dark"] .logo-light {
  display: none;
}

body[data-theme="dark"] .logo-dark {
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav-item {
  position: relative;
}

.site-nav a,
.site-nav-link {
  color: var(--nav-text);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav-link:hover {
  color: var(--nav-hover);
  transform: translateY(-1px);
}

.site-subnav {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 20;
}

.site-nav-item.has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.site-nav-item.has-children:hover .site-subnav,
.site-nav-item.has-children:focus-within .site-subnav {
  display: flex;
}

.site-subnav-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--nav-text);
}

.site-subnav-link:hover {
  background: rgba(14, 39, 58, 0.05);
}

.theme-toggle,
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--button-secondary-border);
  border-radius: 12px;
  background: var(--button-secondary-bg);
  padding: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: var(--nav-text);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--nav-text);
  border-radius: 20px;
}

.hero {
  padding: 78px 0 42px;
}

.hero-bleed {
  width: 100%;
  margin-bottom: 34px;
}

.hero-carousel {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}

.carousel-track {
  position: relative;
  min-height: 430px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center;
}

.carousel-bg-video {
  position: absolute;
  inset: 18px 0;
  width: 100%;
  height: calc(100% - 36px);
  object-fit: cover;
  z-index: 0;
}

.carousel-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.38) 100%);
}

.carousel-overlay {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 46px 42px;
  color: var(--slide-text-color, #ffffff);
  font-family: var(--slide-font, "Inter", sans-serif);
}

.carousel-overlay.text-left {
  justify-content: flex-start;
  text-align: left;
}

.carousel-overlay.text-center {
  justify-content: center;
  text-align: center;
}

.carousel-overlay.text-right {
  justify-content: flex-end;
  text-align: right;
}

.carousel-copy {
  max-width: 760px;
}

.carousel-overlay.text-left .carousel-copy {
  margin-right: auto;
}

.carousel-overlay.text-center .carousel-copy {
  margin-inline: auto;
}

.carousel-overlay.text-right .carousel-copy {
  margin-left: auto;
}

.carousel-overlay.has-overlay.media-left,
.carousel-overlay.has-overlay.media-right {
  justify-content: space-between;
}

.carousel-overlay.has-overlay.media-left .carousel-copy,
.carousel-overlay.has-overlay.media-right .carousel-copy {
  max-width: 54%;
}

.carousel-overlay.has-overlay.media-center {
  flex-direction: column;
}

.carousel-media {
  width: min(360px, 34vw);
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.carousel-media.centered {
  width: min(320px, 40vw);
}

.carousel-media img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.carousel-media video {
  width: 100%;
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  margin: 12px 0;
}

@media (min-width: 992px) {
  .carousel-overlay.has-overlay.media-left .carousel-copy,
  .carousel-overlay.has-overlay.media-right .carousel-copy {
    max-width: 46%;
  }

  .carousel-media {
    width: min(560px, 46vw);
  }

  .carousel-media.centered {
    width: min(520px, 44vw);
  }

  .carousel-media video {
    width: 100%;
    max-height: 390px;
    margin: 16px 0;
  }
}

.carousel-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: clamp(0.75rem, 1vw, var(--slide-kicker-size, 12px));
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-word {
  display: block;
  font-size: clamp(2.8rem, 9vw, var(--slide-title-size, 96px));
  line-height: 0.9;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: var(--slide-text-color, #ffffff);
  text-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
}

.carousel-caption {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--slide-text-color, #ffffff);
  font-size: clamp(1rem, 2.2vw, var(--slide-caption-size, 32px));
  line-height: 1.35;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.42);
}

.carousel-arrow.prev {
  left: 18px;
}

.carousel-arrow.next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
  background: #d0f76d;
  transform: scale(1.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(184, 242, 111, 0.16);
  color: #4d8d1d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-theme="dark"] .eyebrow,
body[data-theme="dark"] .hero-card-label {
  color: #c7f57b;
}

.hero h1,
.section h2 {
  margin: 18px 0 16px;
  color: var(--text-strong);
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  max-width: 12ch;
}

.hero p,
.section p,
.info-card p,
.solution-box p,
.differential-card p,
.contact-card,
.about-card li {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #062112;
  background: linear-gradient(135deg, #7dff7a 0%, #d0f76d 100%);
  box-shadow: 0 14px 30px rgba(125, 255, 122, 0.22);
}

.btn-secondary {
  color: var(--button-secondary-text);
  background: var(--button-secondary-bg);
  border: 1px solid var(--button-secondary-border);
}

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

.metric-card,
.hero-card,
.info-card,
.solution-box,
.about-card,
.differential-card,
.cta-card,
.contact-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 20px 18px;
}

.metric-card strong {
  display: block;
  color: var(--text-strong);
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.metric-card span {
  color: var(--text-soft);
  font-size: 14px;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.glass {
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(125, 255, 122, 0.26), transparent 68%);
  pointer-events: none;
}

.hero-card {
  position: relative;
  max-width: 470px;
  padding: 32px;
}

.hero-card-label {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5da61a;
  font-weight: 800;
}

.hero-card h2 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.hero-card ul,
.about-card ul {
  margin: 0;
  padding-left: 18px;
}

.section {
  padding: 68px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.card-grid,
.solution-grid,
.differential-grid {
  display: grid;
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.differential-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.solution-box,
.differential-card {
  padding: 24px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22d962, #cbf66d);
  color: #04111f;
  font-weight: 800;
  margin-bottom: 16px;
}

.dark-section {
  background: var(--surface-dark);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.about-card,
.contact-card {
  padding: 26px;
}

.cta-section {
  padding-top: 18px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
}

.field-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.field-row label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-strong);
}

.field-row input,
.field-row textarea {
  width: 100%;
  border: 1px solid var(--field-border);
  background: var(--field-bg);
  color: var(--text-strong);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.field-row input::placeholder,
.field-row textarea::placeholder {
  color: #89a0b1;
}

.field-row input:focus,
.field-row textarea:focus {
  border-color: #b8f26f;
  box-shadow: 0 0 0 4px rgba(184, 242, 111, 0.1);
}

.site-footer {
  margin-top: 22px;
  padding: 34px 0 26px;
  color: #d9e2ea;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, #2a2f35 0%, #3b3838 40%, #353a43 100%);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 120;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.floating-btn svg {
  width: 25px;
  height: 25px;
  fill: #ffffff;
}

.whatsapp-btn {
  background: #20c45a;
}

.top-btn {
  background: #0f7d5c;
}

.footer-wrap {
  padding: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.8fr) minmax(220px, 0.9fr);
  gap: 40px;
  align-items: start;
  padding: 44px 0 34px;
}

.footer-brand-block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  justify-self: stretch;
  padding-left: 39px;
}

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

.footer-links-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-map-title {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

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

.footer-column h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-column .footer-map-heading-link {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.footer-column .footer-map-heading-link a {
  color: #ffffff;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.footer-column .footer-map-heading-link a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.footer-cta-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 20px;
  padding-right: 39px;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6f96, #e04e7b);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 16px 26px rgba(224, 78, 123, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-contact-btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(224, 78, 123, 0.3);
}

.footer-bar {
  background: rgba(0, 0, 0, 0.18);
}

.footer-bar-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-copy p,
.footer-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.footer-copy p {
  margin: 0 0 4px;
  font-weight: 700;
}

.footer-copy span {
  display: block;
}

.footer-logo {
  width: min(190px, 100%);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .card-grid,
  .solution-grid,
  .differential-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .carousel-track,
  .carousel-overlay {
    min-height: 390px;
  }

  .content-shell {
    width: min(100% - 44px, 1260px);
  }
}

@media (max-width: 820px) {
  .nav-wrap {
    gap: 14px;
  }

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

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: var(--surface-strong);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav-item {
    width: 100%;
  }

  .site-subnav {
    position: static;
    display: flex;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 6px 0 0 12px;
  }

  .site-subnav-link {
    width: 100%;
    padding-left: 10px;
  }

  .hero {
    padding-top: 42px;
  }

  .carousel-word {
    font-size: clamp(3.2rem, 16vw, 6rem);
  }

  .carousel-caption {
    font-size: 1.1rem;
  }

  .carousel-overlay,
  .carousel-overlay.has-overlay.media-left,
  .carousel-overlay.has-overlay.media-right,
  .carousel-overlay.has-overlay.media-center {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
  }

  .carousel-overlay.has-overlay.media-left .carousel-copy,
  .carousel-overlay.has-overlay.media-right .carousel-copy,
  .carousel-overlay .carousel-copy {
    max-width: 100%;
    margin: 0 auto;
  }

  .carousel-media,
  .carousel-media.centered {
    width: min(280px, 70vw);
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0 28px;
  }

  .footer-brand-block {
    justify-content: flex-start;
    padding-left: 0;
  }

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

  .footer-cta-side {
    align-items: flex-start;
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 176px;
  }

  .section {
    padding: 46px 0;
  }

  .hero-carousel {
    border-radius: 0;
  }

  .content-shell {
    width: calc(100% - 24px);
  }

  .hero-card,
  .info-card,
  .solution-box,
  .about-card,
  .differential-card,
  .contact-card,
  .cta-card {
    padding: 20px;
  }

  .carousel-track,
  .carousel-overlay {
    min-height: 320px;
  }

  .carousel-overlay {
    padding: 30px 20px 48px;
  }

  .carousel-kicker {
    margin-bottom: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-main {
    gap: 24px;
  }

  .footer-contact-btn {
    width: 100%;
    max-width: 220px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }
}
