﻿:root {
  --navy: #0a192f;
  --navy-2: #112240;
  --cyan: #00d4ff;
  --green: #00c853;
  --white: #ffffff;
  --gray: #f5f7fa;
  --text: #1a1a1a;
  --muted: #5c6673;
  --line: rgba(10, 25, 47, .12);
  --line-dark: rgba(255, 255, 255, .14);
  --shadow: 0 24px 60px rgba(10, 25, 47, .14);
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, .28);
  --radius: 8px;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(0, 212, 255, .72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  color: var(--white);
  background: rgba(10, 25, 47, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 25, 47, .95);
  box-shadow: 0 14px 45px rgba(0, 0, 0, .18);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

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

.brand img,
.footer-brand img {
  width: 210px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, .84);
  font-size: .94rem;
  font-weight: 700;
  transition: color .2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--white);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 212, 255, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 212, 255, .28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  padding-block: calc(var(--header-height) + 42px) 48px;
}

.hero-media,
.showcase-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 25, 47, .98) 0%, rgba(10, 25, 47, .86) 38%, rgba(10, 25, 47, .44) 70%, rgba(10, 25, 47, .68) 100%),
    linear-gradient(180deg, rgba(10, 25, 47, .36), rgba(10, 25, 47, .82));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 38px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: .82rem;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 820px;
  font-size: clamp(2.8rem, 4.8rem, 4.8rem);
  font-weight: 900;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.15rem, 3.15rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 850;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.2rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn span,
.header-cta span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  line-height: 1;
  border-radius: 50%;
}

.btn-primary {
  color: var(--navy);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 18px 40px rgba(0, 212, 255, .24);
}

.btn-primary span {
  color: var(--white);
  background: rgba(10, 25, 47, .92);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
}

.btn-secondary span {
  color: var(--navy);
  background: var(--green);
}

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

.btn-primary:hover {
  background: var(--white);
  box-shadow: 0 22px 52px rgba(0, 212, 255, .28);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .14);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(10, 25, 47, .5);
  backdrop-filter: blur(16px);
}

.hero-metrics div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  color: var(--cyan);
  font-size: 1.4rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: .94rem;
}

.section {
  padding-block: 92px;
}

.section-light {
  background: var(--gray);
}

.section-dark {
  position: relative;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.intro-band {
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.intro-grid p {
  margin: 0;
  max-width: 720px;
  color: #344256;
  font-size: 1.04rem;
  font-weight: 700;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.intro-tags span {
  padding: 8px 12px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 800;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading-dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

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

.service-card,
.portfolio-card,
.testimonial-grid blockquote,
.contact-form,
.map-panel,
.founder-card {
  border-radius: var(--radius);
}

.service-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(10, 25, 47, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, .36);
  box-shadow: var(--shadow);
}

.service-card picture,
.portfolio-card picture {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}

.service-card img,
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.service-card:hover img,
.portfolio-card:hover img {
  transform: scale(1.045);
}

.service-body {
  position: relative;
  padding: 24px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--navy);
  background: #dff8ff;
  border: 1px solid rgba(0, 212, 255, .32);
  border-radius: var(--radius);
  font-weight: 900;
}

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

.service-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-body li {
  padding: 7px 10px;
  color: #344256;
  background: var(--gray);
  border: 1px solid rgba(10, 25, 47, .08);
  border-radius: var(--radius);
  font-size: .86rem;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.differentials-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 16px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-weight: 800;
}

.differentials-grid span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--navy);
  background: var(--green);
  border-radius: 50%;
  font-size: .9rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.filter-btn {
  min-height: 40px;
  padding: 0 14px;
  color: #344256;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 850;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.filter-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 212, 255, .42);
}

.filter-btn.active {
  color: var(--navy);
  background: var(--cyan);
  border-color: var(--cyan);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(10, 25, 47, .07);
  transition: opacity .2s ease, transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 200, 83, .36);
  box-shadow: var(--shadow);
}

.portfolio-card.is-hidden {
  display: none;
}

.portfolio-card div {
  padding: 18px;
}

.portfolio-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-card h3 {
  font-size: 1.05rem;
}

.portfolio-card p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.tech-grid span {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 16px 10px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(10, 25, 47, .05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.tech-grid span::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 212, 255, .12);
}

.tech-grid span:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, .38);
  box-shadow: var(--shadow);
}

.about-section {
  background:
    linear-gradient(180deg, var(--white) 0%, #eef4f8 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: center;
  gap: 60px;
}

.about-copy p:not(.eyebrow) {
  color: #3f4d5f;
  font-size: 1.04rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.about-stats div {
  min-height: 112px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-stats strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 750;
}

.founder-card {
  overflow: hidden;
  margin: 0;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(10, 25, 47, .14);
  box-shadow: var(--shadow);
}

.founder-card picture {
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--navy-2);
  overflow: hidden;
}

.founder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.founder-card figcaption {
  padding: 18px;
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
}

.founder-card strong,
.founder-card span {
  display: block;
}

.founder-card span {
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
}

.showcase-section {
  min-height: 540px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.showcase-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 25, 47, .96), rgba(10, 25, 47, .74), rgba(10, 25, 47, .38));
}

.showcase-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.showcase-content p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 1.1rem;
}

.testimonials-section {
  background: var(--white);
}

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

.testimonial-grid blockquote {
  margin: 0;
  padding: 28px;
  background: var(--gray);
  border: 1px solid var(--line);
}

.testimonial-grid p {
  color: #2f3d4f;
  font-size: 1.02rem;
}

.testimonial-grid footer {
  display: grid;
  gap: 4px;
  margin-top: 24px;
}

.testimonial-grid strong {
  color: var(--navy);
}

.testimonial-grid span {
  color: var(--muted);
  font-size: .9rem;
}

.contact-section {
  color: var(--white);
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 22px;
}

.contact-copy {
  padding-right: 28px;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .74);
  font-size: 1.06rem;
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-actions a,
.contact-actions span {
  color: rgba(255, 255, 255, .82);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-actions a:hover {
  color: var(--cyan);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-strong);
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row-full {
  grid-column: 1 / -1;
}

.form-row label {
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  color: var(--white);
  background: rgba(10, 25, 47, .82);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 11px 12px;
  transition: border-color .2s ease, background .2s ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 132px;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--cyan);
  background: rgba(10, 25, 47, .95);
}

.form-submit {
  grid-column: 1 / -1;
  justify-self: start;
}

.map-panel {
  grid-column: 2;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--navy-2);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  filter: grayscale(.1) contrast(1.08);
}

.site-footer {
  color: rgba(255, 255, 255, .72);
  background: #071221;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: center;
  gap: 24px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer a:hover {
  color: var(--cyan);
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .54);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--navy);
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 200, 83, .34);
  font-size: 1.35rem;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 200, 83, .42);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tech-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    width: 182px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 14px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(10, 25, 47, .98);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-block: calc(var(--header-height) + 34px) 34px;
  }

  h1 {
    font-size: clamp(2.35rem, 3.4rem, 3.4rem);
  }

  h2 {
    font-size: clamp(1.82rem, 2.5rem, 2.5rem);
  }

  .hero-subtitle {
    font-size: 1.04rem;
  }

  .hero-metrics,
  .intro-grid,
  .split-section,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-tags {
    justify-content: flex-start;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .differentials-grid,
  .about-stats,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding-right: 0;
  }

  .map-panel {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 25, 47, .96), rgba(10, 25, 47, .78)),
      linear-gradient(180deg, rgba(10, 25, 47, .3), rgba(10, 25, 47, .86));
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.88rem;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .services-grid,
  .portfolio-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .service-body {
    padding: 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .form-submit {
    justify-self: stretch;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


