:root {
  --bg: #ffffff;
  --bg-soft: #f4f8ff;
  --text: #101828;
  --muted: #667085;
  --line: #e6ecf6;
  --brand: #082b86;
  --brand-2: #10aee7;
  --brand-3: #061a4c;
  --accent: #23d18b;
  --card: #ffffff;
  --glass: rgba(255, 255, 255, .72);
  --shadow: 0 24px 70px rgba(8, 43, 134, 0.14);
  --shadow-strong: 0 34px 90px rgba(8, 43, 134, 0.22);
  --radius: 24px;
}

[data-theme="dark"] {
  --bg: #07111f;
  --bg-soft: #0e1b2f;
  --text: #eef6ff;
  --muted: #b7c5d8;
  --line: rgba(255, 255, 255, 0.12);
  --card: #0d1a2d;
  --glass: rgba(13, 26, 45, .68);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 38px 100px rgba(0, 0, 0, 0.46);
}

* {
  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;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--brand);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 99;
}

.skip-link:focus {
  left: 10px;
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(16, 174, 231, .75);
  border-radius: 50%;
  transition: width .18s ease, height .18s ease, border-color .18s ease, opacity .2s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(35, 209, 139, .7);
}

.cursor-ring.cursor-hover {
  width: 58px;
  height: 58px;
  border-color: rgba(35, 209, 139, .8);
}

.cursor-trail {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  border: 1px solid rgba(16, 174, 231, .45);
  animation: trailFade .7s ease forwards;
}

@keyframes trailFade {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.7);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.top-line {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.top-line-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.top-line a {
  color: var(--brand);
  font-weight: 800;
}

[data-theme="dark"] .top-line a {
  color: #9ee8ff;
}

.nav-wrap {
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 0;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav a {
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  position: relative;
  transition: color .2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-2), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--brand-2);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle,
.nav-toggle {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  padding: 10px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--brand), #0a4bd7);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(8, 43, 134, .25);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(8, 43, 134, .32);
  filter: saturate(1.08);
}

.btn-secondary {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--line);
}

.btn-small {
  padding: 11px 16px;
  font-size: 14px;
}

.btn-light {
  background: #fff;
  color: var(--brand);
  box-shadow: none;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #1fbf62, #0b8f43);
}

.section {
  padding: 88px 0;
  position: relative;
}

.section.compact {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 950;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand-2), var(--accent));
}

.eyebrow.light {
  color: #9ee8ff;
}

h1,
h2,
h3 {
  line-height: 1.06;
  margin: 0;
  color: var(--text);
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
  max-width: 850px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero {
  min-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero.section {
  background: transparent;
}

.hero-illustration {
  position: absolute;
  right: 2%;
  top: 110px;
  width: min(48vw, 720px);
  height: min(72vh, 620px);
  background: url("assets/hero-ai.svg") center/contain no-repeat;
  opacity: .28;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 30px 90px rgba(8, 43, 134, .12));
}

[data-theme="dark"] .hero-illustration {
  opacity: .24;
  filter: drop-shadow(0 30px 90px rgba(16, 174, 231, .18));
}

.mesh-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(16, 174, 231, .17), transparent 34%),
    radial-gradient(circle at 88% 26%, rgba(35, 209, 139, .12), transparent 28%),
    linear-gradient(180deg, rgba(244, 248, 255, .9), transparent 78%);
  pointer-events: none;
}

[data-theme="dark"] .mesh-bg {
  background: radial-gradient(circle at 16% 18%, rgba(16, 174, 231, .19), transparent 34%), radial-gradient(circle at 88% 26%, rgba(35, 209, 139, .11), transparent 28%), linear-gradient(180deg, rgba(8, 43, 134, .14), transparent 78%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-text {
  margin: 22px 0 30px;
  max-width: 690px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 84%, transparent);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  gap: 18px;
  align-content: center;
  z-index: 2;
}

.hero-word {
  position: absolute;
  right: -20px;
  top: -52px;
  color: rgba(8, 43, 134, .07);
  font-size: clamp(92px, 12vw, 190px);
  font-weight: 950;
  letter-spacing: -.1em;
  line-height: .8;
}

[data-theme="dark"] .hero-word {
  color: rgba(255, 255, 255, .06);
}

.glass-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, .56);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.logo-panel {
  border-radius: 38px;
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin-top: 72px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.logo-panel::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(16, 174, 231, .22), transparent 68%);
  right: -60px;
  top: -70px;
}

.logo-panel img {
  width: min(560px, 100%);
  position: relative;
  z-index: 1;
}

.pulse-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 26px;
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 4px;
  z-index: 3;
  justify-self: start;
}

.pulse-card strong {
  color: var(--text);
  display: block;
  font-size: 18px;
}

.pulse-card p {
  margin-top: 4px;
  font-size: 14px;
}

.pulse-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(35, 209, 139, .55);
  animation: pulseGreen 1.7s infinite;
  flex: none;
}

.mini-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  z-index: 3;
  margin-top: 2px;
}

.mini-grid div {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(145deg, #082b86, #10aee7);
  color: #fff;
  box-shadow: 0 18px 50px rgba(8, 43, 134, .22);
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mini-grid strong {
  display: block;
  font-size: 24px;
}

.mini-grid span {
  font-weight: 800;
  color: #e6f7ff;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .35;
  pointer-events: none;
  animation: floatOrb 9s ease-in-out infinite alternate;
}

.orb-one {
  width: 220px;
  height: 220px;
  background: var(--brand-2);
  right: 9%;
  top: 18%;
}

.orb-two {
  width: 160px;
  height: 160px;
  background: var(--brand);
  left: 4%;
  bottom: 12%;
  animation-delay: 1.2s;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  justify-items: center;
  padding-top: 10px;
}

.scroll-cue span {
  width: 5px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand-2);
  animation: scrollDot 1.4s ease-in-out infinite;
}

.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.two-col.reverse {
  grid-template-columns: 1fr .95fr;
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.value-row article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  transition: transform .2s ease, box-shadow .2s ease;
}

.value-row article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-row strong {
  display: block;
  color: var(--brand);
  margin-bottom: 8px;
}

.value-row span {
  color: var(--muted);
  font-size: 14px;
}

.logo-marquee-band {
  padding: 26px 0;
  background: linear-gradient(100deg, #eef5ff 0%, #f6fbff 38%, #ecffff 68%, #eef7ff 100%);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-marquee-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .88), transparent 12%, transparent 88%, rgba(255, 255, 255, .88));
  pointer-events: none;
  z-index: 2;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.logo-track-forward {
  animation: marqueeRight 54s linear infinite;
}

.logo-marquee:hover .logo-track-forward {
  animation-play-state: paused;
}

.logo-card {
  flex: 0 0 auto;
  width: 176px;
  height: 88px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px rgba(8, 43, 134, .10);
  border: 1px solid rgba(8, 43, 134, .08);
  padding: 16px 20px;
}

.logo-card img {
  max-width: 122px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(1.02) contrast(1.02);
}

[data-theme="dark"] .logo-marquee-band {
  background: linear-gradient(100deg, #07162f 0%, #0a2156 38%, #0c306f 68%, #06224e 100%);
  border-color: rgba(255, 255, 255, .08);
}

[data-theme="dark"] .logo-marquee-band::before {
  background: linear-gradient(90deg, rgba(7, 22, 47, .88), transparent 12%, transparent 88%, rgba(7, 22, 47, .88));
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.dark-band {
  background: radial-gradient(circle at 8% 10%, rgba(35, 209, 139, .13), transparent 24%), linear-gradient(135deg, #06111f, #061a4c 48%, #082b86);
  color: #fff;
  overflow: hidden;
}

.dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
  pointer-events: none;
}

.dark-band .container {
  position: relative;
  z-index: 1;
}

.dark-band h2,
.dark-band h3 {
  color: #fff;
}

.dark-band p {
  color: #c7d7f0;
}

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

.section-head.center {
  margin: 0 auto 36px;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0;
}

.filter {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: #d8ebff;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.filter.active,
.filter:hover {
  background: #fff;
  color: var(--brand);
}

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

.service-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  backdrop-filter: blur(14px);
  transition: transform .2s ease, background .2s ease, border .2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -50% 25%;
  height: 90px;
  background: radial-gradient(circle, rgba(16, 174, 231, .32), transparent 65%);
  transition: transform .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .32);
}

.service-card:hover::after {
  transform: translateY(-22px);
}

.service-card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: rgba(16, 174, 231, .16);
  border: 1px solid rgba(16, 174, 231, .3);
  border-radius: 18px;
  color: #9ee8ff;
  font-size: 22px;
  margin-bottom: 18px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  min-height: 82px;
}

.service-card button {
  margin-top: 20px;
  border: 0;
  background: transparent;
  color: #9ee8ff;
  font-weight: 950;
  cursor: pointer;
  padding: 0;
}

.service-card.hide {
  display: none;
}

.planner-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.planner-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.planner-options {
  display: grid;
  gap: 12px;
}

.planner-options label {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}

.planner-options label:hover {
  transform: translateX(3px);
  border-color: var(--brand-2);
}

.planner-options input {
  accent-color: var(--brand);
}

.planner-result {
  border-radius: 26px;
  padding: 26px;
  background: linear-gradient(145deg, var(--brand), #08a8df);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.planner-result span {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 950;
  opacity: .85;
}

.planner-result h3 {
  margin: 12px 0;
  color: #fff;
}

.planner-result p {
  color: #e6f7ff;
}

.planner-result a {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
  font-weight: 950;
}

.soft-bg {
  background: var(--bg-soft);
}

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

.industry-grid article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}

.industry-grid article::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(16, 174, 231, .10);
  right: -28px;
  top: -28px;
}

.industry-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.industry-grid span {
  color: var(--brand-2);
  font-weight: 950;
}

.industry-grid h3 {
  margin: 10px 0;
}

.tech-panel {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--card);
  padding: 24px;
  box-shadow: var(--shadow);
}

.tech-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--bg);
  color: var(--muted);
  font-weight: 850;
  cursor: pointer;
  margin: 5px;
  transition: transform .2s ease;
}

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

.tech-pill.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.tech-result {
  margin-top: 24px;
  padding: 28px;
  border-radius: 26px;
  background: var(--bg-soft);
}

.tech-result h3 {
  color: var(--brand);
  margin-bottom: 10px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--card);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  padding: 18px 28px;
  color: var(--brand);
  font-weight: 950;
  white-space: nowrap;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline article {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 26px;
  background: rgba(255, 255, 255, .08);
  transition: transform .2s ease;
}

.timeline article:hover {
  transform: translateY(-5px);
}

.timeline span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  color: var(--brand);
  font-weight: 950;
  margin-bottom: 22px;
}

.careers-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 42px;
  background: linear-gradient(135deg, var(--bg-soft), var(--card));
  box-shadow: var(--shadow);
}

.careers-card p {
  margin-top: 16px;
  max-width: 760px;
}

.faq-list {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item strong {
  color: var(--brand-2);
  font-size: 24px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  border-bottom: 1px solid var(--line);
}

.faq-content p {
  padding: 0 22px 22px;
}

.faq-item.open+.faq-content {
  max-height: 200px;
}

.contact-section {
  background: radial-gradient(circle at 80% 10%, rgba(16, 174, 231, .35), transparent 28%), radial-gradient(circle at 12% 90%, rgba(35, 209, 139, .18), transparent 26%), linear-gradient(135deg, #061a4c, #082b86);
  color: #fff;
}

.contact-section h2 {
  color: #fff;
}

.contact-section p {
  color: #d5e8ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: stretch;
}

.contact-grid > .section-head {
  display: flex;
  flex-direction: column;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.contact-cards article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
}

.contact-cards span {
  display: block;
  color: #9ee8ff;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  margin-bottom: 8px;
}

.contact-cards strong {
  font-size: 14px;
  overflow-wrap: anywhere;
  color: #fff;
}

.quick-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 28px;
  background: #fff;
  color: #101828;
  box-shadow: var(--shadow-strong);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7deea;
  border-radius: 16px;
  padding: 13px 14px;
  outline: none;
  color: #101828;
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(16, 174, 231, .13);
}

.form-note {
  color: #667085 !important;
  font-size: 13px;
}

.qr-card {
  display: grid;
  grid-template-columns: 1fr 205px;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(14px);
}

.qr-card span {
  color: #9ee8ff;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.qr-card h3 {
  color: #fff;
  margin: 6px 0 10px;
}

.qr-card img {
  width: 205px;
  border-radius: 20px;
  background: #fff;
  padding: 9px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .16);
}

.footer {
  background: #06111f;
  color: #fff;
  padding: 56px 0 24px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 12%, rgba(16, 174, 231, .16), transparent 28%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.28fr .76fr .76fr 1.05fr;
  gap: 34px;
}

.footer img.footer-logo {
  width: 250px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 18px;
}

.footer h3 {
  font-size: 17px;
  margin-bottom: 14px;
  color: #fff;
}

.footer a {
  display: block;
  color: #b7c5d8;
  margin: 8px 0;
}

.footer p {
  color: #b7c5d8;
}

.footer-contact-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 11px 0;
}

.footer-contact-line a {
  margin: 0;
  display: inline;
  overflow-wrap: anywhere;
}

.contact-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #9ee8ff;
  background: rgba(16, 174, 231, .12);
  border: 1px solid rgba(16, 174, 231, .2);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  color: #fff;
  margin: 0;
  transition: transform .2s ease, background .2s ease;
}

.social-row a:hover {
  transform: translateY(-3px);
  background: rgba(16, 174, 231, .24);
}

.social-row svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #b7c5d8;
}

.footer-bottom a {
  color: #9ee8ff;
}

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  z-index: 60;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .32);
  border: 8px solid rgba(255, 255, 255, .75);
  animation: whatsappPulse 2.3s infinite;
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: #06111f;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 60;
  opacity: 0;
  transform: translateY(12px);
  transition: .2s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
}

.back-to-top.show {
  opacity: 1;
  transform: none;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(6, 17, 31, .68);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 20px;
}

.modal.show {
  display: grid;
}

.modal-card {
  width: min(560px, 100%);
  background: var(--card);
  color: var(--text);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.modal-card p {
  margin: 16px 0 24px;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes pulseGreen {
  70% {
    box-shadow: 0 0 0 16px rgba(35, 209, 139, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(35, 209, 139, 0);
  }
}

@keyframes floatOrb {
  to {
    transform: translate3d(20px, -24px, 0) scale(1.04);
  }
}

@keyframes scrollDot {

  0%,
  100% {
    transform: translateY(0);
    opacity: .45;
  }

  50% {
    transform: translateY(16px);
    opacity: 1;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 18px 40px rgba(37, 211, 102, .32), 0 0 0 0 rgba(37, 211, 102, .35);
  }

  70% {
    box-shadow: 0 18px 40px rgba(37, 211, 102, .32), 0 0 0 16px rgba(37, 211, 102, 0);
  }
}

@media (hover: none),
(pointer: coarse) {

  .cursor-ring,
  .cursor-dot,
  .cursor-trail {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1020px) {

  .hero-grid,
  .two-col,
  .two-col.reverse,
  .planner-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

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

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

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

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

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

  .nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 112px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .header-actions .btn {
    display: none;
  }
}

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

  .section {
    padding: 64px 0;
  }

  .top-line {
    display: none;
  }

  .nav-wrap {
    height: 72px;
  }

  .nav {
    top: 82px;
  }

  .brand img {
    width: 214px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    gap: 14px;
  }

  .hero-illustration {
    width: min(86vw, 560px);
    right: -14%;
    top: 120px;
    opacity: .18;
  }

  .logo-panel {
    min-height: 220px;
    border-radius: 28px;
  }

  .pulse-card {
    width: 100%;
  }

  .mini-grid,
  .value-row,
  .planner-card,
  .contact-cards,
  .service-grid,
  .industry-grid,
  .timeline,
  .footer-grid,
  .qr-card {
    grid-template-columns: 1fr;
  }

  .qr-card img {
    width: 100%;
    max-width: 240px;
  }

  .careers-card,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .careers-card {
    padding: 28px;
  }

  h1 {
    font-size: 42px;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    left: 16px;
    bottom: 16px;
    border-width: 6px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}