:root {
  color-scheme: light;
  --ink: #16201d;
  --muted: #5b6965;
  --line: #d9e3df;
  --paper: #f7faf8;
  --white: #ffffff;
  --teal: #008f8a;
  --teal-dark: #06605e;
  --mint: #dff6ef;
  --amber: #f2b84b;
  --coral: #ee6b5e;
  --shadow: 0 24px 70px rgba(18, 41, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(247, 250, 248, 0.92);
  border-bottom: 1px solid rgba(217, 227, 223, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: var(--teal-dark);
  border-radius: 8px;
}

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

.site-nav a {
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  padding: 10px 12px;
}

.site-nav a:hover {
  background: var(--mint);
  color: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(36px, 7vw, 86px) clamp(18px, 5vw, 76px) 36px;
  gap: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(223, 246, 239, 0.96), rgba(255, 255, 255, 0.72) 45%, rgba(242, 184, 75, 0.18)),
    radial-gradient(circle at 90% 24%, rgba(0, 143, 138, 0.14), transparent 32%);
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.hero-text,
.contact-copy p,
.service-panel p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 12px 18px;
}

.button.primary {
  color: white;
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--teal-dark);
  background: var(--white);
  border-color: var(--line);
}

.button.whatsapp {
  color: white;
  background: #25d366;
}

.button.whatsapp:hover {
  background: #1fb859;
}

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

.hero-stats div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 227, 223, 0.8);
  border-radius: 8px;
}

.hero-stats dt {
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  align-self: stretch;
  display: grid;
  min-height: 420px;
  place-items: center;
}

.hero-visual img {
  width: min(780px, 100%);
  filter: drop-shadow(0 26px 38px rgba(11, 52, 48, 0.18));
}

.section {
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 76px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

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

.product-card,
.deal-card,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(18, 41, 36, 0.08);
}

.product-card {
  padding: 22px;
}

.product-card p {
  min-height: 82px;
  color: var(--muted);
  line-height: 1.55;
}

.product-card strong {
  color: var(--teal-dark);
}

.icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--mint);
  position: relative;
}

.phone-icon::after,
.laptop-icon::after,
.audio-icon::after,
.home-icon::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 3px solid var(--teal-dark);
  border-radius: 6px;
}

.laptop-icon::after {
  inset: 13px 8px 17px;
  border-radius: 4px;
  box-shadow: 0 12px 0 -6px var(--teal-dark);
}

.audio-icon::after {
  border-radius: 50%;
  border-width: 4px;
  border-top-color: transparent;
}

.home-icon::after {
  transform: rotate(45deg);
  border-radius: 4px;
}

.service-section {
  background: #102421;
  color: white;
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.service-panel .eyebrow {
  color: #73dfcf;
}

.service-panel p {
  color: #b9cbc5;
}

.service-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.service-list span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #102421;
  background: var(--amber);
  border-radius: 8px;
  font-weight: 900;
}

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

.deal-card {
  overflow: hidden;
}

.deal-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  background: var(--mint);
}

.deal-card div {
  padding: 20px;
}

.deal-card p {
  color: var(--muted);
  line-height: 1.55;
}

.deal-card a {
  color: var(--teal-dark);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 108px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 76px);
  color: #dce9e5;
  background: #102421;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 980px) {
  .hero,
  .service-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .hero {
    padding-top: 34px;
  }

  .hero-visual {
    min-height: 260px;
  }

  .hero-stats,
  .product-grid,
  .deal-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .site-footer {
    display: block;
  }

  .site-footer div {
    margin-top: 12px;
  }
}
