:root {
  --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #101828;
  --body: #475467;
  --muted: #667085;
  --soft: #98a2b3;
  --paper: #ffffff;
  --surface: #f7f9fc;
  --surface-strong: #eef3f8;
  --line: #e4eaf2;
  --line-strong: #cbd5e1;
  --navy: #081a2f;
  --navy-2: #0e2a47;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --cyan: #0ea5e9;
  --green: #10b981;
  --amber: #f59e0b;
  --radius: 8px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06);
  --shadow-md: 0 12px 30px rgba(16, 24, 40, .09);
  --shadow-lg: 0 24px 70px rgba(8, 26, 47, .2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--body);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: rgba(37, 99, 235, .18);
  color: var(--ink);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--surface-strong);
}
::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--soft);
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}

ul {
  list-style: none;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .24);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), 1220px);
  margin-inline: auto;
}

section {
  padding: 76px 0;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  font-size: .93rem;
  line-height: 1.15;
  padding: .82rem 1.15rem;
  text-align: center;
  white-space: normal;
}

.btn i {
  flex: 0 0 auto;
  font-size: .9em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, .22);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 99, 235, .28);
}

.btn-outline {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.btn-block {
  width: 100%;
}

/* Logo */
.nav-logo {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: .55rem;
}

.logo-icon {
  width: auto;
  height: 34px;
  filter: brightness(0) invert(1);
  transition: filter .4s var(--ease), height .4s var(--ease);
}

.logo-icon-sm {
  height: 30px;
}

.logo-text {
  width: auto;
  height: 21px;
  max-width: 190px;
  filter: brightness(0) invert(1);
  transition: filter .4s var(--ease), height .4s var(--ease);
}

.logo-text-sm {
  height: 17px;
}

.nav.scrolled .logo-icon,
.nav.scrolled .logo-text {
  filter: none;
}

.footer .logo-icon,
.footer .logo-text {
  filter: brightness(0) invert(1);
}

/* Navigation */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  padding: 14px 0;
  background: linear-gradient(180deg, rgba(8, 26, 47, .66), rgba(8, 26, 47, .08));
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.nav.scrolled {
  border-bottom: 1px solid rgba(228, 234, 242, .9);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.nav-menu a {
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
  font-weight: 700;
}

.nav-menu a:hover {
  color: #fff;
}

.nav.scrolled .nav-menu a {
  color: var(--muted);
}

.nav.scrolled .nav-menu a:hover {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy) !important;
  padding: .55rem .9rem;
  box-shadow: 0 10px 24px rgba(8, 26, 47, .14);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(8, 26, 47, .2);
}

.nav.scrolled .nav-cta {
  background: var(--blue);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition: transform .4s var(--ease), opacity .4s var(--ease), background .4s var(--ease);
}

.nav.scrolled .nav-toggle {
  border-color: var(--line);
  background: var(--surface);
}

.nav.scrolled .nav-toggle span {
  background: var(--ink);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 126px 0 72px;
  background: var(--navy) url("hero_bg.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 26, 47, .96) 0%, rgba(8, 26, 47, .78) 48%, rgba(8, 26, 47, .34) 100%),
    linear-gradient(180deg, rgba(8, 26, 47, .12), rgba(8, 26, 47, .7));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  background: linear-gradient(180deg, rgba(247, 249, 252, 0), var(--paper));
}

.hero-overlay {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: 48px;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  width: fit-content;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .88);
  font-size: .82rem;
  font-weight: 800;
  padding: .45rem .78rem;
  backdrop-filter: blur(14px);
}

.hero-content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: rise .75s var(--ease) forwards;
}

.hero h1 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.05;
}

.hero h1 .accent {
  color: #7dd3fc;
}

.hero-sub {
  max-width: 580px;
  margin-bottom: 1.55rem;
  color: rgba(255, 255, 255, .76);
  font-size: 1.04rem;
  line-height: 1.75;
  animation-delay: .08s;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.65rem;
  animation-delay: .16s;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  animation-delay: .24s;
}

.hero-trust-item {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: .45rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .78);
  font-size: .82rem;
  font-weight: 700;
  padding: .4rem .65rem;
  backdrop-filter: blur(12px);
}

.hero-trust-item i {
  color: #67e8f9;
  font-size: .82rem;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 500px);
  opacity: 0;
  transform: translateX(24px);
  animation: slideIn .85s var(--ease) .16s forwards;
}

.hero-visual > img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.hero-stat-card {
  position: absolute;
  right: auto;
  bottom: 18px;
  left: -18px;
  display: flex;
  max-width: 220px;
  align-items: center;
  gap: .8rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  padding: 1rem;
  box-shadow: 0 18px 44px rgba(8, 26, 47, .26);
}

.hero-stat-num {
  color: var(--blue);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}

.hero-stat-label {
  color: var(--body);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.35;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Clients */
.clients {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 32px 0;
}

.clients-label {
  margin-bottom: 1rem;
  color: var(--soft);
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.clients-logos {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2.4rem;
  padding-right: 2.4rem;
}

.client-logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
  opacity: .58;
  white-space: nowrap;
}

.client-logo:hover {
  opacity: .9;
}

.client-logo i {
  color: var(--blue);
  font-size: 1rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Stats */
.stats {
  background: var(--surface);
  padding: 46px 0;
}

.stats-inner {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.stat-item {
  position: relative;
  padding: 1.45rem 1rem;
  text-align: center;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: var(--line);
}

.stat-item h3 {
  color: var(--ink);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.stat-item p {
  margin-top: .45rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* Shared section styles */
.section-header {
  max-width: 720px;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: .6rem;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: .7rem;
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.12;
}

.section-sub {
  max-width: 610px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Services */
.services {
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.service-card-img {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  background: var(--surface-strong);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease), filter .55s var(--ease);
}

.service-card:hover .service-card-img img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.service-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(14, 165, 233, .18));
  color: var(--blue);
}

.service-icon i {
  font-size: 1rem;
}

.service-card h3 {
  margin-bottom: .45rem;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.25;
}

.service-card p {
  flex: 1;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .4rem;
  color: var(--blue);
  font-size: .86rem;
  font-weight: 800;
}

.service-link:hover {
  gap: .6rem;
  color: var(--blue-dark);
}

.service-link i {
  font-size: .78rem;
}

/* Process */
.process {
  background: var(--surface);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr;
  align-items: start;
}

.process-step {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.25rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.step-num {
  margin-bottom: .65rem;
  color: var(--blue);
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
}

.process-step h3 {
  margin-bottom: .45rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.process-step p {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.65;
}

.process-connector {
  width: 100%;
  height: 1px;
  margin-top: 3.2rem;
  background: var(--line-strong);
}

/* Why */
.why {
  background: var(--paper);
}

.why-inner,
.about-inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 4rem;
}

.why-visual,
.about-img-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow-md);
}

.why-visual img,
.about-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .55s var(--ease), filter .55s var(--ease);
}

.why-visual:hover img,
.about-img-wrap:hover .about-img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.why-content .section-heading,
.about-content .section-heading {
  margin-bottom: 1rem;
}

.why-content .section-sub {
  margin: 0;
}

.why-list {
  display: grid;
  gap: .6rem;
  margin-top: 1.35rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: .78rem;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}

.why-item:hover {
  border-color: var(--line);
  background: var(--surface);
  transform: translateX(3px);
}

.why-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: var(--radius);
  background: rgba(37, 99, 235, .08);
  color: var(--blue);
}

.why-text h4 {
  color: var(--ink);
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.25;
}

.why-text p {
  margin-top: .12rem;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

/* Testimonials */
.testimonials {
  background: var(--surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: .18rem;
  margin-bottom: .85rem;
  color: var(--amber);
  font-size: .82rem;
}

.testimonial-card > p {
  flex: 1;
  margin-bottom: 1.2rem;
  color: var(--body);
  font-size: .9rem;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.author-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
}

.testimonial-author strong {
  display: block;
  color: var(--ink);
  font-size: .88rem;
  line-height: 1.2;
}

.testimonial-author span {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.4;
}

/* About */
.about {
  background: var(--paper);
}

.about-content p {
  margin-bottom: .85rem;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.75;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.15rem;
}

.about-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: .4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--body);
  font-size: .78rem;
  font-weight: 800;
  padding: .38rem .62rem;
}

.about-badge i {
  color: var(--green);
  font-size: .78rem;
}

/* CTA */
.cta-banner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 26, 47, .97), rgba(14, 42, 71, .92)),
    url("hero_bg.png") center / cover no-repeat;
  padding: 70px 0;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  margin-bottom: .75rem;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
}

.cta-inner p {
  max-width: 560px;
  margin: 0 auto 1.6rem;
  color: rgba(255, 255, 255, .74);
  font-size: 1rem;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}

/* Contact */
.contact {
  background: var(--surface);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 1.25rem;
}

.contact-info {
  display: grid;
  gap: .75rem;
}

.contact-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.contact-ico {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(37, 99, 235, .1);
  color: var(--blue);
}

.contact-item h4 {
  margin-bottom: .12rem;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 800;
}

.contact-item p,
.contact-item a {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.55;
}

.contact-item a:hover {
  color: var(--blue);
}

.contact-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  width: 100%;
  height: 210px;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.45rem;
  box-shadow: var(--shadow-md);
}

.form-card h3 {
  margin-bottom: .25rem;
  color: var(--ink);
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.25;
}

.form-card > p {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: .9rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.form-group {
  margin-bottom: .85rem;
}

.form-group label {
  display: block;
  margin-bottom: .32rem;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: .92rem;
  padding: .72rem .85rem;
  transition: background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.form-group textarea {
  min-height: 122px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23667085' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  background-size: .9rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(37, 99, 235, .68);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .1);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--soft);
}

.form-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10000;
  width: min(calc(100% - 2rem), 420px);
  border-radius: var(--radius);
  color: #fff;
  box-shadow: 0 16px 44px rgba(16, 24, 40, .2);
  font-size: .9rem;
  line-height: 1.5;
  padding: .95rem 1.1rem;
}

/* Footer */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 54px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.6fr) minmax(150px, .8fr) minmax(170px, .9fr) minmax(240px, 1.1fr);
  gap: 2rem;
  padding-bottom: 44px;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 310px;
  color: rgba(255, 255, 255, .68);
  font-size: .88rem;
  line-height: 1.7;
}

.footer h4 {
  margin-bottom: .8rem;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-col ul li {
  margin-bottom: .45rem;
}

.footer-col a,
.footer-contact li {
  color: rgba(255, 255, 255, .66);
  font-size: .86rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  line-height: 1.55;
}

.footer-contact i {
  margin-top: .26rem;
  color: #67e8f9;
  font-size: .78rem;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1rem 0;
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bar p,
.footer-legal a {
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a:hover {
  color: #fff;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

.rd1 {
  transition-delay: .12s;
}

.rd2 {
  transition-delay: .24s;
}

.rd3 {
  transition-delay: .36s;
}

/* Responsive */
@media (min-width: 1500px) {
  .container {
    width: min(calc(100% - 96px), 1320px);
  }

  .hero {
    min-height: 820px;
  }
}

@media (max-width: 1120px) {
  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(310px, .8fr);
    gap: 34px;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .process-connector {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  section {
    padding: 64px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: .2rem;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .97);
    padding: .6rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(.98);
    transform-origin: top right;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-menu a,
  .nav.scrolled .nav-menu a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--ink);
    font-size: .98rem;
  }

  .nav-menu a:hover {
    background: var(--surface);
    color: var(--blue);
  }

  .nav-cta,
  .nav.scrolled .nav-cta {
    margin-top: .2rem;
    background: var(--blue);
    color: #fff !important;
    box-shadow: none;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 58px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 26, 47, .96), rgba(8, 26, 47, .76)),
      linear-gradient(90deg, rgba(8, 26, 47, .8), rgba(8, 26, 47, .45));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-visual {
    justify-self: stretch;
    width: 100%;
    max-width: 680px;
  }

  .hero-visual > img {
    min-height: 290px;
    max-height: 360px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .why-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .why-visual {
    order: -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), 1220px);
  }

  section {
    padding: 54px 0;
  }

  .logo-icon {
    height: 31px;
  }

  .logo-text {
    height: 18px;
    max-width: 150px;
  }

  .hero {
    padding: 106px 0 48px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-sub {
    font-size: .98rem;
  }

  .hero-btns,
  .cta-btns {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .clients-logos {
    gap: 1.3rem;
    padding-right: 1.3rem;
  }

  .section-header {
    margin-bottom: 2rem;
    text-align: left;
  }

  .section-sub {
    margin: 0;
  }

  .section-heading,
  .cta-inner h2 {
    font-size: 1.75rem;
  }

  .services-grid,
  .testimonials-grid,
  .process-steps,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-item h3 {
    font-size: 1.85rem;
  }

  .testimonial-card,
  .process-step,
  .service-card-content,
  .form-card {
    padding: 1.1rem;
  }

  .footer-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 440px) {
  .container {
    width: min(calc(100% - 26px), 1220px);
  }

  .nav-menu {
    right: 13px;
    left: 13px;
  }

  .logo-text {
    max-width: 130px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-badge,
  .hero-trust-item,
  .about-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-bottom: 1px solid var(--line);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .stat-item::after {
    display: none;
  }

  .contact-item {
    padding: .9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .clients-track {
    animation: none;
  }

  .reveal,
  .hero-content > *,
  .hero-visual {
    opacity: 1;
    transform: none;
  }
}

/* Floating Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
  z-index: 1000;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: pulse 2s infinite;
}

.floating-call-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.5);
  color: #fff;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

@media (max-width: 768px) {
  .floating-call-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

