:root {
  --navy: #061b33;
  --navy2: #09284b;
  --blue: #115bb5;
  --blue2: #1f73d1;
  --ice: #f7fbff;
  --white: #ffffff;
  --text: #102236;
  --muted: #5d6b7b;
  --line: rgba(6, 27, 51, 0.12);
  --shadow: 0 24px 80px rgba(6, 27, 51, 0.09);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1240px;
  margin: auto;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-cta {
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 2rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 26px 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(17, 91, 181, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.hero-background {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -220px;
  top: 120px;
  border-radius: 50%;
  background: rgba(17, 91, 181, 0.10);
  filter: blur(20px);
}

.hero-inner {
  position: relative;
  max-width: 1240px;
  margin: auto;
  min-height: calc(100vh - 220px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 900;
}

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

h1 {
  max-width: 860px;
  color: var(--navy);
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  letter-spacing: -0.075em;
}

h2 {
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  letter-spacing: -0.055em;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-copy p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.22rem;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 900;
  cursor: pointer;
}

.primary {
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.secondary {
  color: var(--navy);
  background: white;
  border-color: var(--line);
}

.full {
  width: 100%;
}

.hero-logo-panel {
  padding: 36px;
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-logo-panel img {
  width: 100%;
  display: block;
  border-radius: 28px;
}

.panel-caption {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.panel-caption strong {
  display: block;
  color: var(--navy);
  font-size: 1.3rem;
}

.panel-caption span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.section {
  max-width: 1240px;
  margin: auto;
  padding: 110px 26px;
}

.intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
}

.text-block {
  color: var(--muted);
  font-size: 1.1rem;
}

.solutions {
  max-width: none;
  background: var(--ice);
  padding-left: max(26px, calc((100vw - 1240px) / 2));
  padding-right: max(26px, calc((100vw - 1240px) / 2));
}

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

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.solution-grid article {
  min-height: 285px;
  padding: 34px;
  border-radius: 34px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(6, 27, 51, 0.05);
  transition: 0.24s ease;
}

.solution-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 90px rgba(6, 27, 51, 0.11);
}

.solution-grid span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--blue);
  font-weight: 900;
}

.solution-grid p {
  color: var(--muted);
}

.services {
  max-width: none;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  color: white;
  background:
    radial-gradient(circle at 82% 12%, rgba(31, 115, 209, 0.5), transparent 32%),
    linear-gradient(135deg, #061b33, #09284b 55%, #0d3770);
  padding-left: max(26px, calc((100vw - 1240px) / 2));
  padding-right: max(26px, calc((100vw - 1240px) / 2));
}

.services h2 {
  color: white;
}

.services p {
  color: rgba(255, 255, 255, 0.76);
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-list div {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
}

.identity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.identity-card {
  padding: 34px;
  border-radius: 42px;
  background: var(--ice);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.identity-card img {
  width: 100%;
  display: block;
  border-radius: 26px;
}

.identity p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

.statement {
  padding: 95px 26px;
  text-align: center;
  background: var(--navy);
}

.statement p {
  max-width: 1100px;
  margin: auto;
  color: white;
  font-size: clamp(2.1rem, 5vw, 5.2rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.contact p {
  color: var(--muted);
}

.contact-info {
  margin-top: 34px;
  padding: 28px;
  border-radius: 30px;
  background: var(--ice);
}

.form {
  display: grid;
  gap: 15px;
  padding: 34px;
  border-radius: 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: white;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
}

.footer {
  padding: 38px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  background: white;
}

.footer img {
  height: 42px;
  width: auto;
  display: block;
}

.footer p {
  color: var(--muted);
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  padding: 14px 18px;
  border-radius: 999px;
  color: white;
  background: #25D366;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(0,0,0,0.24);
}

@media (max-width: 920px) {
  .menu-toggle { display: block; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 78px;
    left: 22px;
    right: 22px;
    flex-direction: column;
    padding: 24px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .hero-inner,
  .intro,
  .services,
  .identity,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .footer {
    flex-direction: column;
    text-align: center;
  }
}
