* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #061833;
  --navy-2: #0a2a66;
  --blue: #1c63ff;
  --blue-2: #0f48d8;
  --cyan: #22d3ee;
  --aqua: #8af7ff;
  --slate: #475569;
  --muted: #708199;
  --line: #dfe8f5;
  --soft: #f7fbff;
  --soft-2: #eef6ff;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(6, 24, 51, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.5;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px min(34px, 4vw);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 232, 245, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(6, 24, 51, 0.04);
}

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

.brand img {
  width: 108px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #31415b;
  font-size: 14px;
  font-weight: 850;
}

.nav a {
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--blue);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.header-cta {
  padding: 10px 18px;
  color: white;
  background: var(--navy);
  font-size: 14px;
}

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(34, 211, 238, 0.14), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(28, 99, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(to right, #0f172a 1px, transparent 1px),
    linear-gradient(to bottom, #0f172a 1px, transparent 1px);
  background-size: 58px 58px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

.orb-one {
  width: 360px;
  height: 360px;
  right: 5%;
  top: 12%;
  background: rgba(34, 211, 238, 0.25);
}

.orb-two {
  width: 300px;
  height: 300px;
  left: -5%;
  bottom: 10%;
  background: rgba(28, 99, 255, 0.20);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 58px;
  min-height: calc(100vh - 65px);
  padding: 72px 0 82px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 10px 14px;
  border: 1px solid rgba(28, 99, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(28, 99, 255, 0.05);
}

.hero h1 {
  margin-top: 24px;
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(48px, 6.3vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.hero-lead {
  margin-top: 26px;
  max-width: 650px;
  color: var(--slate);
  font-size: 20px;
}

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

.btn {
  padding: 15px 24px;
  font-size: 15px;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 44px rgba(28, 99, 255, 0.22);
}

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

.btn-secondary:hover {
  border-color: rgba(28, 99, 255, 0.35);
  color: var(--blue);
}

.hero-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-stack span {
  padding: 9px 12px;
  border: 1px solid rgba(28, 99, 255, 0.14);
  border-radius: 999px;
  color: #1d4ed8;
  background: white;
  font-size: 12px;
  font-weight: 950;
}

.hero-console {
  overflow: hidden;
  border: 1px solid rgba(223, 232, 245, 0.95);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,251,255,0.92));
  box-shadow: var(--shadow);
}

.console-top {
  display: flex;
  gap: 8px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.console-top span:nth-child(2) {
  background: rgba(28, 99, 255, 0.35);
}

.console-top span:nth-child(3) {
  background: rgba(34, 211, 238, 0.60);
}

.console-logo {
  padding: 34px 34px 22px;
}

.console-logo img {
  width: 100%;
  display: block;
}

.console-panel {
  display: grid;
  gap: 12px;
  padding: 0 24px 24px;
}

.console-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.dot {
  grid-row: span 2;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 0 0 5px rgba(6, 24, 51, 0.06);
}

.dot.cyan {
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.12);
}

.dot.blue {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(28, 99, 255, 0.12);
}

.console-line strong {
  color: var(--navy);
  font-size: 15px;
}

.console-line small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 790px;
}

.section-heading h2,
.intro-main h2,
.core-box h2,
.products-box h2,
.contact-box h2 {
  margin-top: 14px;
  color: var(--navy);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.section-heading p,
.intro-main p,
.core-box p,
.products-box p,
.contact-box p {
  margin-top: 18px;
  max-width: 720px;
  color: var(--slate);
  font-size: 18px;
}

.intro-section {
  background: white;
}

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

.intro-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.035);
}

.intro-main {
  grid-column: span 1;
  background:
    radial-gradient(circle at 95% 10%, rgba(34, 211, 238, 0.13), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.intro-card strong {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.intro-card h3 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 950;
}

.intro-card p {
  margin-top: 12px;
  color: var(--slate);
}

.services-section {
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.035);
  transition: 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 34%);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(28, 99, 255, 0.28);
  box-shadow: 0 24px 64px rgba(28, 99, 255, 0.10);
}

.service-card:hover::before {
  opacity: 1;
}

.service-number {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: white;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--blue), var(--cyan));
  font-weight: 950;
}

.service-card h3,
.service-card p {
  position: relative;
}

.service-card h3 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 950;
}

.service-card p {
  margin-top: 12px;
  color: var(--slate);
}

.core-section {
  background: white;
}

.core-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
  padding: 54px;
  border-radius: 42px;
  color: white;
  background:
    radial-gradient(circle at 88% 12%, rgba(34, 211, 238, 0.23), transparent 25%),
    linear-gradient(135deg, #061833, #0a2a66 70%, #1c63ff);
  box-shadow: 0 24px 80px rgba(28, 99, 255, 0.18);
}

.core-box h2,
.core-box p {
  color: white;
}

.core-box p {
  color: #d8e6f8;
}

.section-kicker.light {
  color: var(--aqua);
}

.core-steps {
  display: grid;
  gap: 14px;
}

.core-steps div {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.core-steps span {
  display: block;
  color: white;
  font-size: 18px;
  font-weight: 950;
}

.core-steps p {
  margin-top: 8px;
  color: #d8e6f8;
}

.ams-section {
  background:
    radial-gradient(circle at 4% 10%, rgba(34, 211, 238, 0.08), transparent 24%),
    #ffffff;
}

.ams-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.ams-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ams-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.035);
}

.ams-list span {
  flex: none;
  display: block;
  width: 11px;
  height: 11px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.12);
}

.products-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
}

.products-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: white;
  box-shadow: var(--shadow);
}

.product-list {
  display: grid;
  gap: 14px;
}

.product-list div {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 96% 10%, rgba(34, 211, 238, 0.12), transparent 28%),
    #ffffff;
}

.product-list strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
}

.product-list small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.contact-section {
  background: white;
}

.contact-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  padding: 50px;
  border-radius: 42px;
  color: white;
  background:
    radial-gradient(circle at 88% 16%, rgba(34, 211, 238, 0.25), transparent 25%),
    linear-gradient(135deg, #061833, #0a2a66 72%, #1c63ff);
  box-shadow: 0 24px 80px rgba(28, 99, 255, 0.18);
}

.contact-box h2,
.contact-box p {
  color: white;
}

.contact-box p {
  color: #d8e6f8;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  outline: none;
  color: white;
  background: rgba(255,255,255,0.10);
  font: inherit;
  backdrop-filter: blur(8px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.72);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-form {
  width: 100%;
  color: var(--navy);
  background: white;
}

footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: white;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner,
.footer-inner div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-inner {
  justify-content: space-between;
}

.footer-inner img {
  width: 82px;
  height: auto;
}

@media (max-width: 1050px) {
  .nav {
    display: none;
  }

  .hero-inner,
  .intro-grid,
  .core-box,
  .ams-grid,
  .products-box,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .intro-grid {
    gap: 14px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 8px 14px;
  }

  .brand img {
    width: 92px;
  }

  .header-cta {
    display: none;
  }

  .hero-inner {
    padding: 54px 0 64px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .section {
    padding: 72px 0;
  }

  .service-grid,
  .ams-list {
    grid-template-columns: 1fr;
  }

  .core-box,
  .products-box,
  .contact-box {
    padding: 24px;
    border-radius: 30px;
  }

  .footer-inner,
  .footer-inner div {
    align-items: flex-start;
    flex-direction: column;
  }
}


.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-actions .btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-whatsapp {
  color: white;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.22);
}

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

.contact-hint {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 680px) {
  .contact-actions {
    grid-template-columns: 1fr;
  }
}
