:root {
  --color-ink: #172033;
  --color-muted: #5e6a7d;
  --color-line: #dde4ee;
  --color-surface: #ffffff;
  --color-soft: #f4f7fb;
  --color-navy: #0a2f4d;
  --color-navy-deep: #061f35;
  --color-orange: #fd4f13;
  --color-orange-dark: #cf3f0d;
  --color-purple: #3c2a8f;
  --color-green: #0f9b68;
  --shadow-soft: 0 18px 42px rgba(21, 31, 47, 0.12);
  --shadow-tight: 0 10px 24px rgba(21, 31, 47, 0.1);
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--color-surface);
  color: var(--color-ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.drawer-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(221, 228, 238, 0.72);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

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

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 1.9vw, 1.5rem);
}

.main-nav a,
.drawer-nav a,
.site-footer a {
  text-decoration: none;
}

.main-nav a {
  position: relative;
  color: #222936;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--color-orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.drawer-nav a:hover,
.drawer-nav a.active {
  color: var(--color-orange);
}

.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.drawer-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-cta,
.drawer-cta,
.secondary-button {
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  padding: 0.6rem 1rem;
}

.header-cta:hover,
.drawer-cta:hover,
.secondary-button:hover {
  background: var(--color-orange);
  color: #fff;
}

.primary-button {
  border: 1px solid var(--color-orange);
  background: var(--color-orange);
  color: #fff;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 12px 24px rgba(253, 79, 19, 0.22);
}

.primary-button:hover {
  border-color: var(--color-orange-dark);
  background: var(--color-orange-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  color: var(--color-orange);
  cursor: pointer;
  flex-direction: column;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: min(84vw, 320px);
  height: 100svh;
  padding: 1rem 1.25rem 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform: translateX(-105%);
  transition: transform 0.24s ease;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-line);
}

.drawer-header img {
  width: 132px;
  height: auto;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--color-soft);
  color: var(--color-orange);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.drawer-nav {
  display: grid;
  gap: 0.3rem;
  margin: 1.5rem 0;
}

.drawer-nav a {
  border-radius: 8px;
  color: var(--color-navy);
  font-weight: 700;
  padding: 0.8rem 0.2rem;
}

.drawer-cta {
  width: 100%;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1190;
  background: rgba(6, 20, 34, 0.46);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.drawer-backdrop.is-visible {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(6, 20, 34, 0.88), rgba(6, 20, 34, 0.7)), url("../img/index-bg.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100% - 2rem, var(--container));
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.hero-logo {
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.28));
}

html.js .hero-logo {
  opacity: 0;
  transform: scale(0.86) translateY(14px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.page-loaded .hero-logo {
  opacity: 1;
  transform: scale(1) translateY(0);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--color-orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.content-panel h2,
.mission-panel h2,
.excellence-block h2,
.advantages-copy h2,
.technology-copy h2,
.plans-section h2,
.contact-copy h2,
.reviews-heading h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  font-size: 4.8rem;
}

.hero-lead {
  margin: 1.2rem 0 0;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-support {
  max-width: 560px;
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.section-dark .section-kicker {
  color: #ff9b78;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 990;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  font-weight: 800;
  padding: 0.7rem 1rem;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.28);
}

.about-section,
.services-section,
.advantages-section,
.technology-section,
.plans-section,
.contact-section,
.reviews-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.split-layout,
.mission-layout,
.excellence-grid,
.advantages-layout,
.technology-layout,
.contact-layout,
.footer-grid {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.split-layout,
.mission-layout,
.advantages-layout,
.technology-layout,
.contact-layout {
  display: grid;
  align-items: stretch;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.split-layout {
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1fr);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.mission-layout {
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.75fr) minmax(300px, 1fr);
}

.media-panel,
.advantages-media,
.technology-media {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-soft);
}

.media-panel img,
.advantages-media img,
.technology-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.content-panel,
.mission-panel,
.technology-copy,
.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-panel {
  padding: clamp(1.5rem, 4vw, 4rem);
}

.content-panel h2,
.mission-panel h2,
.section-heading h2,
.advantages-copy h2,
.technology-copy h2,
.contact-copy h2,
.reviews-heading h2 {
  color: var(--color-navy);
  font-size: 2.7rem;
}

.content-panel p,
.mission-panel p,
.advantages-copy li,
.technology-copy p,
.contact-copy p,
.reviews-heading p {
  color: var(--color-muted);
}

.accent-line {
  width: 180px;
  height: 3px;
  margin: 1.1rem 0 1.3rem;
  background: var(--color-orange);
}

.mission-panel {
  border-radius: 8px;
  background: var(--color-navy);
  color: #fff;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.mission-panel h2,
.mission-panel p {
  color: #fff;
}

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

.rocket-img {
  width: min(280px, 80%);
  margin: 1rem auto 0;
}

.section-heading,
.reviews-heading {
  width: min(100% - 2rem, 900px);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.services-section,
.plans-section,
.reviews-section {
  background: var(--color-soft);
}

.services-grid,
.plans-grid,
.stats-grid {
  display: grid;
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  gap: 1rem;
}

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

.service-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
  min-height: 184px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  padding: 1.35rem;
  box-shadow: var(--shadow-tight);
}

.service-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 8px;
  color: var(--color-navy);
  font-weight: 900;
}

.service-card--purple .service-icon {
  background: rgba(60, 42, 143, 0.11);
}

.service-card--green .service-icon {
  background: rgba(15, 155, 104, 0.12);
}

.service-icon span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(21, 31, 47, 0.08);
  font-size: 1.4rem;
}

.service-card h3,
.plan-card h3,
.excellence-block h3 {
  margin: 0 0 0.55rem;
  color: var(--color-navy);
  line-height: 1.2;
}

.service-card p,
.service-card ul,
.plan-card p {
  margin: 0;
  color: var(--color-muted);
}

.service-card ul {
  padding-left: 1.15rem;
}

.excellence-section {
  background: var(--color-navy);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.excellence-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 1.5rem;
}

.excellence-block {
  border-radius: 8px;
  padding: clamp(1.6rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.08);
}

.excellence-block h2,
.excellence-block p {
  color: #fff;
}

.excellence-block--light {
  background: #fff;
}

.excellence-block--light h3 {
  color: var(--color-navy);
}

.excellence-block--light p {
  color: var(--color-muted);
}

.advantages-layout,
.technology-layout,
.contact-layout {
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
}

.advantages-copy,
.technology-copy,
.contact-copy {
  padding: clamp(1rem, 3vw, 2.2rem);
}

.advantages-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.advantages-columns ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advantages-columns li {
  position: relative;
  padding-left: 1.2rem;
}

.advantages-columns li::before {
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-orange);
  content: "";
}

.advantages-columns strong {
  color: var(--color-purple);
}

.technology-section {
  background: #fff;
}

.technology-layout {
  align-items: center;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(54px, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.tech-badge {
  display: grid;
  min-height: 64px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  color: var(--color-navy);
  font-weight: 800;
  padding: 0.8rem 0.65rem;
  text-align: center;
  box-shadow: 0 8px 18px rgba(21, 31, 47, 0.06);
}

.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  padding: 1.4rem;
  box-shadow: var(--shadow-tight);
}

.plan-card--popular {
  border-color: rgba(253, 79, 19, 0.44);
  box-shadow: 0 18px 42px rgba(253, 79, 19, 0.15);
}

.plan-badge {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(253, 79, 19, 0.1);
  color: var(--color-orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.65rem;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-top: 1rem;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 1.4rem 0 0.8rem;
  color: var(--color-navy);
}

.plan-price strong {
  font-size: 3.1rem;
  line-height: 1;
}

.plan-detail {
  flex: 1;
}

.plan-card .primary-button {
  width: 100%;
  margin-top: 1.2rem;
}

.comparison-wrap {
  width: min(100% - 2rem, var(--container));
  margin: 1.5rem auto 0;
  overflow-x: auto;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-tight);
}

.plan-comparison {
  min-width: 720px;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(120px, 0.7fr));
  border-top: 1px solid var(--color-line);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row > div {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 0.85rem 1rem;
}

.comparison-head {
  background: var(--color-navy);
  color: #fff;
  font-weight: 800;
}

.feature-name {
  color: var(--color-ink);
  font-weight: 700;
}

.feature-value {
  justify-content: center;
  border-left: 1px solid var(--color-line);
}

.feature-ok,
.feature-no {
  display: inline-flex;
  min-width: 58px;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
}

.feature-ok {
  background: rgba(15, 155, 104, 0.12);
  color: var(--color-green);
}

.feature-no {
  background: rgba(94, 106, 125, 0.12);
  color: var(--color-muted);
}

.contact-section {
  background: #fff;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 2rem;
}

.stat-item {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-soft);
  padding: 1rem;
}

.stat-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--color-orange);
  font-size: 1.45rem;
  box-shadow: 0 8px 18px rgba(21, 31, 47, 0.07);
}

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

.stat-item strong {
  display: block;
  color: var(--color-navy);
  font-size: 1.15rem;
  line-height: 1.2;
}

.contact-layout {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0.5rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-form {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-soft);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow-tight);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--color-navy);
  font-weight: 700;
}

.contact-form span {
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd8e5;
  border-radius: 8px;
  background: #fff;
  color: var(--color-ink);
  padding: 0.78rem 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(253, 79, 19, 0.14);
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.reviews-heading p {
  margin-bottom: 1.5rem;
}

.review-seals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.review-seals span {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.review-seals img {
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.review-seals strong {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-navy);
  font-size: 1.2rem;
}

.review-seals strong::before {
  color: #f5b301;
  content: "★★★★★";
  font-size: 0.96rem;
}

.carousel-wrapper {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.review-card {
  display: flex;
  width: 360px;
  min-width: 360px;
  gap: 0.85rem;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-tight);
}

.review-avatar {
  display: block;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(60, 42, 143, 0.16);
  box-shadow: 0 10px 24px rgba(10, 47, 77, 0.14);
}

.review-card strong {
  color: var(--color-navy);
}

.review-card p {
  margin: 0.15rem 0 0.55rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.review-card q {
  color: var(--color-ink);
}

.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

.site-footer h2 {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: 1rem;
}

.site-footer p {
  margin: 0 0 0.55rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.site-footer a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.social-links a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.social-links img {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  width: min(100% - 2rem, var(--container));
  margin: 2rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1rem;
  text-align: center;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-content,
  .mission-layout,
  .advantages-layout,
  .technology-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero-logo {
    width: min(420px, 80%);
    margin: 0 auto;
  }

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

  .mission-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-layout .media-panel {
    grid-column: 1 / -1;
  }

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

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

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

  .main-nav,
  .header-cta {
    display: none;
  }

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

  .site-header {
    min-height: var(--header-height);
  }

  .brand img {
    width: 140px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero-lead {
    font-size: 1.25rem;
  }

  .split-layout,
  .mission-layout,
  .services-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .content-panel {
    padding: 1rem 0.25rem;
  }

  .media-panel,
  .advantages-media,
  .technology-media {
    min-height: 320px;
  }

  .service-card {
    min-height: auto;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    padding-inline: 1rem;
  }

  .hero-content,
  .split-layout,
  .mission-layout,
  .excellence-grid,
  .advantages-layout,
  .technology-layout,
  .contact-layout,
  .services-grid,
  .plans-grid,
  .stats-grid,
  .footer-grid {
    width: min(100% - 1rem, var(--container));
  }

  .hero-content {
    padding: 3rem 0;
  }

  .hero-logo {
    width: min(270px, 80%);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .about-section,
  .services-section,
  .advantages-section,
  .technology-section,
  .plans-section,
  .contact-section,
  .reviews-section {
    padding: 3rem 0;
  }

  .content-panel h2,
  .mission-panel h2,
  .section-heading h2,
  .advantages-copy h2,
  .technology-copy h2,
  .contact-copy h2,
  .reviews-heading h2 {
    font-size: 2.1rem;
  }

  .mission-panel,
  .excellence-block,
  .plan-card,
  .contact-form {
    padding: 1.2rem;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-icon {
    width: 64px;
    height: 64px;
  }

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

  .form-row,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    width: min(86vw, 340px);
    min-width: min(86vw, 340px);
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    min-height: 42px;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
