﻿:root {
  --bg: #eef4fa;
  --card: rgba(255, 255, 255, 0.9);
  --text: #172636;
  --muted: #475c70;
  --brand-blue: #35a8e0;
  --brand-blue-2: #2b8ec0;
  --brand-green: #8cc63f;
  --line: rgba(37, 67, 101, 0.16);
  --shadow: 0 26px 68px rgba(24, 47, 74, 0.12);
  --shadow-soft: 0 10px 30px rgba(27, 53, 82, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 560px at 92% -8%, rgba(53, 168, 224, 0.22), transparent 62%),
    radial-gradient(940px 520px at -8% 98%, rgba(140, 198, 63, 0.14), transparent 56%),
    linear-gradient(170deg, #f6f9fd 0%, var(--bg) 58%, #e6edf4 100%);
  position: relative;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(to right, rgba(62, 104, 145, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(62, 104, 145, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black 18%, transparent 82%);
  pointer-events: none;
  z-index: 0;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(35px);
  opacity: 0.42;
  z-index: 0;
}

.bg-shape--one {
  width: 320px;
  height: 320px;
  background: linear-gradient(140deg, #35a8e0, #91d3ef);
  top: -90px;
  right: -100px;
}

.bg-shape--two {
  width: 280px;
  height: 280px;
  background: linear-gradient(140deg, #8cc63f, #bfe588);
  bottom: -90px;
  left: -90px;
}

.wrap {
  width: min(1040px, 92vw);
  margin: 0 auto;
  padding: clamp(10px, 2.8vw, 26px) 0 40px;
  position: relative;
  z-index: 1;
}

.card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.hero {
  text-align: center;
  padding: clamp(16px, 3.6vw, 30px) clamp(20px, 4vw, 40px) clamp(28px, 4.2vw, 36px);
  position: relative;
  overflow: hidden;
  animation: rise 780ms ease both;
}

.hero-glow {
  position: absolute;
  width: min(720px, 80vw);
  height: 190px;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(53, 168, 224, 0.2), rgba(53, 168, 224, 0) 70%);
  pointer-events: none;
}

.logo-stage {
  width: min(640px, 90vw);
  margin: 0 auto 18px;
  height: auto;
  overflow: visible;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.logo {
  width: min(640px, 90vw);
  height: auto;
  display: block;
  margin: 0 auto;
  transform: none;
  filter: drop-shadow(0 10px 22px rgba(40, 73, 109, 0.12));
}

.eyebrow {
  margin: 2px 0 12px;
  color: var(--brand-blue-2);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 850px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.lead {
  margin: 16px auto 0;
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 240ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn-whatsapp {
  background: linear-gradient(135deg, #24bf61 0%, #1ea652 48%, #1c8e47 100%);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-color: rgba(24, 118, 60, 0.3);
  box-shadow: 0 12px 26px rgba(30, 166, 83, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-whatsapp:hover {
  box-shadow: 0 16px 30px rgba(30, 166, 83, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: #2b658a;
  border-color: rgba(43, 101, 138, 0.25);
  padding-inline: 22px;
}

.btn-secondary:hover {
  background: #f7fcff;
}

.social {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social a {
  color: #2a5f84;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid rgba(53, 168, 224, 0.28);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}

.social a:hover {
  color: #1a4663;
  border-color: #1a4663;
}

.trust-strip {
  margin-top: 14px;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid rgba(53, 116, 160, 0.14);
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.88), rgba(245, 251, 255, 0.96));
  box-shadow: var(--shadow-soft);
}

.trust-strip p {
  margin: 0;
  text-align: center;
  font-size: clamp(0.98rem, 2vw, 1.06rem);
  line-height: 1.55;
  color: #2f4f6a;
  font-weight: 600;
}

.services {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tile {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
  animation: rise 780ms ease both;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(27, 53, 82, 0.12);
  border-color: rgba(43, 120, 170, 0.3);
}

.tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: linear-gradient(145deg, rgba(53, 168, 224, 0.16), rgba(140, 198, 63, 0.12));
  border: 1px solid rgba(45, 120, 168, 0.2);
}

.tile-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #2f78aa;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile h2 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
  color: #1f3952;
  letter-spacing: -0.01em;
}

.tile p {
  margin: 10px 0 0;
  color: #4a5f74;
  line-height: 1.62;
  font-size: 0.98rem;
}

.values-block {
  margin-top: 18px;
  padding: 24px;
  text-align: left;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 255, 0.88));
}

.values-block h2 {
  margin: 0;
  font-size: 1.35rem;
  color: #1d3b56;
  letter-spacing: -0.01em;
}

.values-lead {
  margin: 10px 0 0;
  color: #4a6075;
  line-height: 1.6;
  font-size: 0.99rem;
}

.values-grid {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.values-grid li {
  border: 1px solid rgba(41, 87, 127, 0.18);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 12px;
  padding: 11px 12px;
  color: #2f506b;
  font-weight: 600;
  font-size: 0.92rem;
}

@keyframes rise {
  from {
    transform: translateY(18px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: 94vw;
    padding-top: 6px;
  }

  .card {
    border-radius: 16px;
  }

  .hero {
    padding: 14px 12px 22px;
  }

  .logo-stage {
    margin: 0 auto 14px;
    height: auto;
  }

  .logo {
    width: min(560px, 92vw);
    transform: none;
  }

  h1 {
    font-size: clamp(1.7rem, 7.4vw, 2.15rem);
    line-height: 1.13;
  }

  .lead {
    font-size: 1rem;
  }

  .btn-whatsapp {
    width: 100%;
    max-width: 360px;
    min-height: 50px;
    text-align: center;
  }

  .btn-secondary {
    width: 100%;
    max-width: 360px;
    min-height: 46px;
    text-align: center;
  }

  .tile {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .values-block {
    padding: 18px 14px;
  }

  .values-grid li {
    font-size: 0.88rem;
  }
}

@media (max-width: 430px) {
  .wrap {
    width: 95vw;
    padding-bottom: 34px;
  }

  .hero {
    padding: 12px 10px 20px;
  }

  .logo-stage {
    width: 100%;
    margin: 0 auto 14px;
    height: auto;
  }

  .logo {
    width: min(520px, 95vw);
    transform: none;
  }

  h1 {
    font-size: clamp(1.58rem, 8.2vw, 1.95rem);
    line-height: 1.16;
  }

  .lead {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .trust-strip {
    padding: 14px 12px;
  }

  .trust-strip p {
    font-size: 0.95rem;
  }

  .tile {
    padding: 16px 14px;
  }
}

@media (max-width: 390px) {
  .logo-stage {
    height: auto;
    margin: 0 auto 14px;
  }

  h1 {
    font-size: clamp(1.5rem, 8.6vw, 1.8rem);
  }
}
