
:root {
  --navy-950: #03101f;
  --navy-900: #06172b;
  --navy-850: #081d35;
  --navy-800: #0b2747;
  --navy-700: #103a64;
  --blue-600: #087af5;
  --blue-500: #0aa5ff;
  --cyan-400: #65dcff;
  --cyan-300: #93eaff;
  --white: #ffffff;
  --surface: #f4f9fd;
  --surface-2: #e9f3fb;
  --text: #102a43;
  --muted: #627d98;
  --line: #d9e7f2;
  --success: #18b981;
  --shadow-sm: 0 12px 30px rgba(3, 27, 53, .09);
  --shadow-lg: 0 28px 70px rgba(3, 26, 51, .18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 78px;
}

*,
*::before,
*::after { 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;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

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

button { cursor: pointer; }

::selection { background: var(--cyan-400); color: var(--navy-950); }

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

.section { padding: 108px 0; }
.section-sm { padding: 76px 0; }
.section-soft { background: var(--surface); }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(10, 165, 255, .24), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(101, 220, 255, .11), transparent 28%),
    var(--navy-950);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--blue-600);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
}

.section-dark .eyebrow { color: var(--cyan-300); }

.section-title {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-lead {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .section-lead { color: #a9bfd2; }

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, var(--cyan-400), var(--blue-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(115deg, var(--blue-600), var(--blue-500));
  box-shadow: 0 15px 32px rgba(8, 122, 245, .27);
}

.btn-primary:hover { box-shadow: 0 20px 38px rgba(8, 122, 245, .34); }

.btn-outline {
  color: var(--navy-900);
  border-color: #b8d0e3;
  background: rgba(255, 255, 255, .88);
}

.btn-outline:hover { border-color: var(--blue-500); }

.btn-light {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-weight: 800;
}

.btn-link svg { width: 18px; transition: transform .2s ease; }
.btn-link:hover svg { transform: translateX(5px); }

/* Topbar and header */
.topbar {
  color: #bbd0e2;
  background: var(--navy-950);
  font-size: .86rem;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.topbar-list,
.social-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a:hover { color: var(--cyan-400); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(15, 58, 100, .09);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}

.site-header.scrolled { box-shadow: 0 14px 38px rgba(4, 31, 57, .12); }

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.brand img { width: 215px; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 10px;
  color: #25445f;
  font-weight: 750;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.site-nav a:hover,
.site-nav a.active { color: var(--blue-600); }

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

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 4px;
  background: var(--navy-900);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 28%, rgba(0, 164, 255, .25), transparent 27%),
    radial-gradient(circle at 7% 78%, rgba(102, 224, 255, .14), transparent 26%),
    linear-gradient(135deg, #041325 0%, #08294a 58%, #06172c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(102, 218, 255, .32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 218, 255, .32) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 52px;
  padding: 92px 0 98px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  margin-bottom: 22px;
  border: 1px solid rgba(113, 225, 255, .28);
  border-radius: 999px;
  color: var(--cyan-300);
  background: rgba(10, 78, 124, .36);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5cf2b2;
  box-shadow: 0 0 0 7px rgba(92, 242, 178, .12);
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6.2rem);
  line-height: .97;
  letter-spacing: -.065em;
}

.hero p {
  max-width: 650px;
  margin: 26px 0 0;
  color: #b8cce0;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

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

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .06);
}

.hero .btn-outline:hover { border-color: var(--cyan-400); }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
  color: #d5e4f0;
  font-size: .92rem;
  font-weight: 700;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.check {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--cyan-400);
  font-size: .76rem;
  font-weight: 900;
}

.hero-visual { position: relative; }
.hero-visual > img {
  width: 100%;
  filter: drop-shadow(0 35px 45px rgba(0, 10, 24, .42));
  animation: float 6s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 175px;
  padding: 13px 16px;
  border: 1px solid rgba(133, 225, 255, .24);
  border-radius: 16px;
  background: rgba(6, 31, 58, .8);
  box-shadow: 0 18px 38px rgba(0, 12, 27, .28);
  backdrop-filter: blur(13px);
}

.floating-card strong { display: block; font-size: .93rem; }
.floating-card small { display: block; color: #9dbbd2; }
.floating-icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 12px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
  font-weight: 900;
}
.float-one { left: -10px; bottom: 85px; }
.float-two { right: -5px; top: 105px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.trust-item {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child { border-right: 0; }
.trust-icon {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--blue-600);
  background: #e9f6ff;
}
.trust-icon svg { width: 23px; }
.trust-item strong { display: block; }
.trust-item span { color: var(--muted); font-size: .88rem; }

/* Grids/cards */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 42px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.about-media {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.about-media::before {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #e9f7ff;
  filter: blur(1px);
}
.about-media img { position: relative; z-index: 1; width: 100%; }

.about-copy { align-self: center; }
.about-copy h2 { margin: 0; }
.about-copy p { color: var(--muted); }

.feature-list {
  display: grid;
  gap: 15px;
  margin: 28px 0 34px;
}
.feature-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.feature-item .check { margin-top: 3px; flex: 0 0 auto; }

.service-card,
.value-card,
.project-card,
.team-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card:hover,
.project-card:hover,
.team-card:hover,
.value-card:hover {
  transform: translateY(-8px);
  border-color: #99caeb;
  box-shadow: 0 24px 50px rgba(3, 32, 61, .14);
}

.service-card { padding: 30px; }
.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  box-shadow: 0 13px 28px rgba(8, 122, 245, .22);
}
.service-icon svg { width: 29px; height: 29px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.service-card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.service-card p { margin: 0 0 20px; color: var(--muted); }

.process-card {
  position: relative;
  padding: 32px 27px;
  border: 1px solid rgba(120, 197, 241, .18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .055);
}
.process-number {
  color: var(--cyan-400);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  opacity: .8;
}
.process-card h3 { margin: 20px 0 10px; }
.process-card p { margin: 0; color: #a9bfd2; }

.project-card { overflow: hidden; }
.project-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-900);
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover .project-image img { transform: scale(1.045); }
.project-content { padding: 26px; }
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--blue-600);
  background: #e9f6ff;
  font-size: .74rem;
  font-weight: 800;
}
.project-content h3 { margin: 0 0 9px; font-size: 1.35rem; }
.project-content p { margin: 0; color: var(--muted); }

.team-card { overflow: hidden; }
.team-photo {
  position: relative;
  aspect-ratio: 4 / 4.25;
  overflow: hidden;
  background: var(--navy-900);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo::after {
  content: "LEADER";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 16, 31, .74);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .1em;
}
.team-content { padding: 25px; }
.team-content h3 { margin: 0 0 5px; }
.team-role { color: var(--blue-600); font-weight: 800; }
.team-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: var(--muted);
  font-weight: 700;
}

/* CTA */
.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
  padding: 55px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 25%, rgba(103, 224, 255, .28), transparent 30%),
    linear-gradient(120deg, #062347, #0879f4);
  box-shadow: var(--shadow-lg);
}
.cta-box::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 310px;
  height: 310px;
  border: 45px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.08; }
.cta-box p { max-width: 650px; margin: 15px 0 0; color: #d6e8f8; }

/* Inner page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 98px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 25%, rgba(12, 168, 255, .25), transparent 27%),
    linear-gradient(130deg, #041326, #092d52);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(101, 220, 255, .34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 220, 255, .34) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 780px; margin: 0; font-size: clamp(3rem, 7vw, 5.7rem); line-height: 1; letter-spacing: -.055em; }
.page-hero p { max-width: 680px; margin: 22px 0 0; color: #b9cee1; font-size: 1.13rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  color: var(--cyan-300);
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.breadcrumb span { color: #88a8c2; }

/* About page */
.profile-wrap {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: center;
}
.profile-flyer {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.profile-flyer img { border-radius: 20px; }
.profile-copy p { color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 30px; }
.value-card .service-icon { margin-bottom: 20px; }
.value-card h3 { margin: 0 0 10px; }
.value-card p { margin: 0; color: var(--muted); }

.statement-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.statement-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--navy-900);
}
.statement-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(105, 224, 255, .1);
  border-radius: 50%;
}
.statement-card h3 { margin: 0 0 13px; font-size: 1.65rem; }
.statement-card p { margin: 0; color: #b2c8dc; }

/* Service details */
.service-detail {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 23px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.service-detail .service-icon { margin: 0; }
.service-detail h3 { margin: 0 0 8px; }
.service-detail p { margin: 0; color: var(--muted); }
.service-points { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.service-points li { display: flex; gap: 9px; color: #36546d; }
.service-points li::before { content: "✓"; color: var(--success); font-weight: 900; }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 38px;
}
.contact-panel {
  padding: 36px;
  border-radius: var(--radius-md);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 5%, rgba(101, 220, 255, .27), transparent 27%),
    var(--navy-900);
}
.contact-panel h2 { margin-top: 0; }
.contact-panel > p { color: #aec4d7; }
.contact-list { display: grid; gap: 18px; margin-top: 30px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item .service-icon { width: 48px; height: 48px; margin: 0; flex: 0 0 auto; border-radius: 14px; }
.contact-item strong { display: block; }
.contact-item span, .contact-item a { color: #b9cedf; }
.contact-item a:hover { color: var(--cyan-400); }

.contact-form {
  padding: 37px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 800; color: #24435e; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid #cbddea;
  border-radius: 13px;
  outline: none;
  background: #fbfdff;
  padding: 14px 15px;
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 145px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(10, 165, 255, .12);
}
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .86rem; }
.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #0b6b4e;
  background: #e5fff5;
  font-weight: 700;
}
.form-status.show { display: block; }

.map-placeholder {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(45deg, transparent 48%, rgba(8, 122, 245, .11) 49%, rgba(8, 122, 245, .11) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(8, 122, 245, .09) 49%, rgba(8, 122, 245, .09) 51%, transparent 52%),
    #edf7fe;
  background-size: 78px 78px;
}
.map-pin {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  box-shadow: var(--shadow-lg);
}
.map-pin svg { width: 36px; transform: rotate(45deg); }
.map-label {
  position: absolute;
  bottom: 28px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--navy-900);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-weight: 850;
}

/* Footer */
.site-footer {
  color: #abc1d3;
  background: #020d19;
}
.footer-main { padding: 78px 0 55px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .75fr .9fr 1fr;
  gap: 45px;
}
.footer-brand img { width: 225px; }
.footer-brand p { max-width: 430px; margin: 19px 0 24px; }
.footer-title { margin: 0 0 18px; color: var(--white); font-size: 1rem; }
.footer-links { display: grid; gap: 11px; }
.footer-links a:hover { color: var(--cyan-400); transform: translateX(3px); }
.footer-links a { transition: color .2s ease, transform .2s ease; }
.footer-contact { display: grid; gap: 12px; }
.footer-contact a:hover { color: var(--cyan-400); }
.footer-bottom {
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: .88rem;
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  right: 22px;
  z-index: 900;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 15px 32px rgba(2, 25, 48, .27);
}
.whatsapp-float {
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: #20bd6c;
}
.whatsapp-float svg { width: 29px; }
.back-to-top {
  bottom: 94px;
  width: 45px;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  background: var(--blue-600);
  transition: .2s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Accessibility */
.skip-link {
  position: fixed;
  left: 14px;
  top: -100px;
  z-index: 2000;
  padding: 11px 15px;
  border-radius: 9px;
  color: var(--white);
  background: var(--blue-600);
}
.skip-link:focus { top: 14px; }

@media (max-width: 1060px) {
  .site-nav {
    position: fixed;
    inset: calc(42px + var(--header-height)) 0 auto 0;
    display: grid;
    gap: 3px;
    padding: 24px 20px 30px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-140%);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: 13px 15px; }
  .site-nav a::after { display: none; }
  .menu-toggle { display: block; }
  .nav-actions .btn { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero h1, .hero p { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { max-width: 730px; margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .profile-wrap { grid-template-columns: 1fr; }
  .profile-flyer { max-width: 620px; margin-inline: auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --header-height: 69px; }
  .container { width: min(100% - 28px, var(--container)); }
  .topbar { display: none; }
  .site-nav { inset: var(--header-height) 0 auto; }
  .brand img { width: 183px; }
  .section { padding: 82px 0; }
  .section-sm { padding: 58px 0; }
  .hero { min-height: auto; }
  .hero-inner { padding: 76px 0 92px; gap: 20px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.25rem); }
  .hero-visual { margin-top: 15px; }
  .floating-card { display: none; }
  .trust-strip { margin-top: -28px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .heading-row { align-items: flex-start; flex-direction: column; margin-bottom: 37px; }
  .grid-2, .grid-3, .grid-4, .values-grid, .statement-grid { grid-template-columns: 1fr; }
  .about-media { min-height: 350px; }
  .cta-box { grid-template-columns: 1fr; padding: 38px 28px; }
  .page-hero { padding: 82px 0 76px; }
  .profile-wrap { gap: 34px; }
  .service-detail { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .contact-form, .contact-panel { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .hero-actions .btn { width: 100%; }
  .hero-points { align-items: flex-start; flex-direction: column; }
  .trust-item { padding: 20px; }
  .service-card, .project-content, .value-card { padding: 24px; }
  .team-content { padding: 22px; }
  .whatsapp-float { right: 16px; bottom: 18px; }
  .back-to-top { right: 16px; bottom: 85px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
