:root {
  --bg: #f5f6fa;
  --bg-soft: #ffffff;
  --card: #ffffff;

  --dark: #0b0e1a;
  --dark-soft: #131729;

  --text: #12131a;
  --text-invert: #f5f6fa;

  --muted: #5b6472;
  --muted-invert: #9aa3b8;

  --border: rgba(15, 17, 25, .1);
  --border-invert: rgba(255, 255, 255, .12);

  --accent: #4f46e5;
  --accent-hover: #4338ca;
  --accent-soft: rgba(79, 70, 229, .09);

  --green: #16a34a;

  --max: 1180px;

  --font: "Inter", sans-serif;
}


/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  background: var(--bg);
  color: var(--text);

  font-family: var(--font);

  line-height: 1.6;

  overflow-x: hidden;
}


body.menu-open {
  overflow: hidden;
}


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


button,
input,
textarea {
  font: inherit;
}


button {
  cursor: pointer;
}


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

  margin-inline: auto;
}


/* =========================
   BACKGROUND
========================= */

.grid {
  position: fixed;

  inset: 0;

  z-index: -3;

  opacity: .5;

  background-image:
    radial-gradient(
      rgba(15, 17, 25, .06) 1px,
      transparent 1px
    );

  background-size: 26px 26px;

  mask-image:
    radial-gradient(
      circle at 20% 0%,
      black,
      transparent 60%
    );
}


/* =========================
   ANNOUNCEMENT BAR
========================= */

.announcement-bar {
  background: var(--dark);

  color: var(--text-invert);
}


.announcement-inner {
  padding: 11px 0;

  display: flex;

  justify-content: center;

  text-align: center;

  font-size: 13px;
}


.announcement-inner strong {
  font-weight: 700;
}


.announcement-inner a {
  margin-left: 8px;

  text-decoration: underline;

  text-underline-offset: 3px;

  white-space: nowrap;
}


/* =========================
   NAVIGATION
========================= */

.site-header {
  position: sticky;

  top: 0;

  z-index: 50;

  background: rgba(245, 246, 250, .82);

  backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--border);
}


.nav {
  height: 78px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}


.logo {
  display: flex;

  align-items: center;
}


.logo img {
  display: block;

  height: 26px;

  width: auto;
}


.nav-links {
  display: flex;

  gap: 30px;

  font-size: 14px;

  font-weight: 500;

  color: var(--muted);
}


.nav-links a {
  transition: color .2s ease;
}


.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}


.nav-lang-mobile {
  display: none;
}


.nav-right {
  display: flex;

  align-items: center;

  gap: 16px;
}


/* =========================
   LANGUAGE SWITCH
========================= */

.lang-switch {
  position: relative;
}


.lang-switch-toggle {
  display: flex;

  align-items: center;

  gap: 6px;

  padding: 8px 12px;

  border-radius: 999px;

  border: 1px solid var(--border);

  background: var(--bg-soft);

  color: var(--text);

  font-size: 13px;

  font-weight: 600;
}


.lang-switch-toggle:hover {
  border-color: var(--text);
}


.lang-switch-toggle svg:last-child {
  flex-shrink: 0;

  transition: transform .2s;
}


.lang-switch.open .lang-switch-toggle svg:last-child {
  transform: rotate(180deg);
}


.lang-switch-menu {
  position: absolute;

  top: calc(100% + 10px);

  right: 0;

  z-index: 60;

  min-width: 150px;

  padding: 8px;

  border-radius: 16px;

  background: var(--bg-soft);

  border: 1px solid var(--border);

  box-shadow: 0 20px 40px rgba(15, 17, 25, .14);

  opacity: 0;

  transform: translateY(-6px);

  pointer-events: none;

  transition:
    opacity .18s ease,
    transform .18s ease;
}


.lang-switch.open .lang-switch-menu {
  opacity: 1;

  transform: translateY(0);

  pointer-events: auto;
}


.lang-switch-menu a {
  display: block;

  padding: 9px 12px;

  border-radius: 10px;

  font-size: 13.5px;

  font-weight: 500;

  color: var(--text);
}


.lang-switch-menu a:hover {
  background: var(--accent-soft);

  color: var(--accent);
}


.lang-switch-menu a.active {
  color: var(--accent);

  font-weight: 700;
}


.nav-cta {
  padding: 0 20px;
}


.menu-toggle {
  display: none;

  background: none;

  border: 0;

  color: var(--text);

  padding: 5px;
}


.menu-toggle span {
  display: block;

  width: 22px;

  height: 2px;

  border-radius: 2px;

  background: var(--text);

  margin: 5px;
}


/* =========================
   BUTTONS
========================= */

.button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  min-height: 50px;

  padding: 0 24px;

  border-radius: 999px;

  border: 1px solid transparent;

  font-family: var(--font);

  font-size: 14.5px;

  font-weight: 600;

  cursor: pointer;

  transition:
    transform .2s,
    background .2s,
    border-color .2s,
    box-shadow .2s;
}


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


.button-primary {
  background: var(--accent);

  color: #ffffff;

  box-shadow: 0 12px 24px rgba(79, 70, 229, .28);
}


.button-primary:hover {
  background: var(--accent-hover);
}


.button-ghost,
.button-outline {
  border-color: var(--border);

  background: var(--bg-soft);

  color: var(--text);
}


.button-ghost:hover,
.button-outline:hover {
  border-color: var(--text);
}


.button-outline-invert {
  border-color: var(--border-invert);

  background: transparent;

  color: var(--text-invert);
}


.button-outline-invert:hover {
  border-color: rgba(255, 255, 255, .4);

  background: rgba(255, 255, 255, .05);
}


/* =========================
   HERO
========================= */

.hero {
  padding-top: 70px;

  padding-bottom: 100px;
}


.hero-grid {
  display: grid;

  grid-template-columns: 1.05fr .95fr;

  gap: 60px;

  align-items: center;
}


.hero-meta {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 8px 16px;

  border-radius: 999px;

  background: var(--accent-soft);

  color: var(--accent);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: .04em;
}


.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--accent);

  animation: pulse 2s infinite;
}


.hero-title {
  margin-top: 26px;

  max-width: 640px;

  font-size: clamp(38px, 4.6vw, 58px);

  line-height: 1.06;

  letter-spacing: -.03em;

  font-weight: 800;
}


.accent-text {
  display: block;

  color: var(--accent);
}


.hero-copy .muted {
  margin-top: 24px;

  max-width: 520px;

  color: var(--muted);

  font-size: 17px;
}


.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 34px;
}


.trust-row {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;

  margin-top: 30px;

  font-size: 13px;

  color: var(--muted);
}


.trust-row span {
  display: inline-flex;

  align-items: center;

  gap: 7px;
}


.trust-row svg {
  flex-shrink: 0;

  color: var(--green);
}


/* =========================
   MOCKUP STACK
========================= */

.mockup-stack {
  position: relative;

  height: 400px;
}


.mockup-card {
  position: absolute;

  width: 78%;

  border-radius: 14px;

  overflow: hidden;

  background: var(--bg-soft);

  border: 1px solid var(--border);

  box-shadow: 0 30px 60px rgba(15, 17, 25, .16);
}


.mockup-back {
  top: 10px;
  left: 0;

  transform: rotate(-7deg);

  opacity: .85;
}


.mockup-side {
  top: 40px;
  right: 0;

  transform: rotate(6deg);

  opacity: .9;
}


.mockup-front {
  top: 60px;
  left: 11%;

  width: 82%;

  z-index: 2;
}


.mockup-bar {
  height: 30px;

  display: flex;

  align-items: center;

  gap: 6px;

  padding: 0 12px;

  border-bottom: 1px solid var(--border);
}


.mockup-bar span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #e2622e;
}


.mockup-bar span:nth-child(2) {
  background: #e0b029;
}


.mockup-bar span:nth-child(3) {
  background: #33a852;
}


.mockup-bar small {
  margin-left: 8px;

  padding: 3px 10px;

  border-radius: 999px;

  background: var(--bg);

  color: var(--muted);

  font-size: 9px;
}


.mockup-body {
  height: 165px;

  padding: 16px;

  display: flex;

  flex-direction: column;

  gap: 8px;
}


.mockup-body i {
  display: block;

  border-radius: 5px;

  background: rgba(255, 255, 255, .55);
}


.mockup-body i:first-child {
  width: 46%;
  height: 12px;
}


.mockup-body i:nth-child(2) {
  width: 70%;
  height: 8px;

  background: rgba(255, 255, 255, .35);
}


.mockup-body i:nth-child(3) {
  margin-top: auto;

  width: 34%;
  height: 24px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .8);
}


.mockup-back .mockup-body {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}


.mockup-front .mockup-body {
  background: linear-gradient(135deg, #4f46e5, #0b0e1a);
}


.mockup-side .mockup-body {
  background: linear-gradient(135deg, #0ea5a4, #0b0e1a);
}

/* =========================
   SECTIONS
========================= */

.section {
  padding-top: 110px;

  padding-bottom: 110px;

  border-top: 1px solid var(--border);
}


.section-content {
  width: 100%;
}


.eyebrow {
  display: inline-block;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: .08em;

  color: var(--accent);
}


.section h2,
.tech-section h2 {
  margin-top: 14px;

  max-width: 700px;

  font-size: clamp(34px, 4.4vw, 50px);

  line-height: 1.08;

  letter-spacing: -.03em;

  font-weight: 800;
}


.section h2 span,
.tech-section h2 span {
  color: var(--muted);
}


.section-intro {
  margin-top: 20px;

  max-width: 600px;

  color: var(--muted);

  font-size: 16px;
}


.large-copy {
  max-width: 720px;

  margin-top: 24px;

  color: var(--muted);

  font-size: clamp(18px, 2.4vw, 22px);

  line-height: 1.5;
}


/* =========================
   STATS
========================= */

.stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 16px;

  margin-top: 50px;
}


.stat {
  padding: 26px;

  border-radius: 16px;

  background: var(--bg-soft);

  border: 1px solid var(--border);
}


.stat strong {
  display: block;

  font-size: 28px;

  font-weight: 800;

  color: var(--accent);
}


.stat span {
  color: var(--muted);

  font-size: 13px;
}


/* =========================
   PROCESS
========================= */

.process-list {
  margin-top: 50px;

  display: grid;

  gap: 16px;
}


.process-step {
  display: grid;

  grid-template-columns: 56px 1fr;

  gap: 24px;

  align-items: flex-start;

  padding: 28px;

  border-radius: 18px;

  background: var(--bg-soft);

  border: 1px solid var(--border);
}


.process-index {
  display: grid;

  place-items: center;

  width: 40px;
  height: 40px;

  border-radius: 50%;

  background: var(--accent-soft);

  color: var(--accent);

  font-weight: 700;

  font-size: 14px;
}


.process-step h3 {
  font-size: 19px;

  letter-spacing: -.01em;
}


.process-step p {
  margin-top: 8px;

  max-width: 560px;

  color: var(--muted);

  font-size: 14.5px;
}


/* =========================
   SERVICES / INCLUDED
========================= */

.service-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 16px;

  margin-top: 50px;
}


.service-card {
  position: relative;

  padding: 28px;

  border-radius: 18px;

  background: var(--bg-soft);

  border: 1px solid var(--border);

  transition:
    transform .25s,
    box-shadow .25s;
}


.service-card:hover {
  transform: translateY(-3px);

  box-shadow: 0 20px 40px rgba(15, 17, 25, .08);
}


.service-number {
  position: absolute;

  top: 24px;
  right: 26px;

  font-size: 11px;

  font-weight: 600;

  color: #c4c9d3;
}


.service-icon {
  width: 46px;
  height: 46px;

  display: grid;

  place-items: center;

  margin-bottom: 22px;

  border-radius: 12px;

  background: var(--accent-soft);

  color: var(--accent);

  font-size: 16px;
}


.service-card h3 {
  font-size: 20px;

  letter-spacing: -.01em;
}


.service-card p {
  margin-top: 10px;

  max-width: 470px;

  color: var(--muted);

  font-size: 14.5px;
}


/* =========================
   PRICING
========================= */

.pricing-badge {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-top: 24px;

  padding: 8px 16px;

  border-radius: 999px;

  background: var(--accent-soft);

  color: var(--accent);

  font-size: 12.5px;

  font-weight: 700;

  letter-spacing: .03em;
}


.pricing-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  margin-top: 50px;

  align-items: stretch;
}


.pricing-card {
  position: relative;

  display: flex;

  flex-direction: column;

  padding: 36px 30px;

  border-radius: 22px;

  background: var(--bg-soft);

  border: 1px solid var(--border);

  box-shadow: 0 1px 2px rgba(15, 17, 25, .04);

  transition:
    transform .25s,
    box-shadow .25s,
    border-color .25s;
}


.pricing-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 24px 48px rgba(15, 17, 25, .1);
}


.pricing-card.featured {
  border-color: var(--accent);

  background: linear-gradient(180deg, var(--accent-soft), var(--bg-soft) 45%);

  box-shadow: 0 20px 44px rgba(79, 70, 229, .16);
}


.pricing-card.featured:hover {
  transform: translateY(-8px);

  box-shadow: 0 28px 56px rgba(79, 70, 229, .22);
}


.pricing-popular {
  position: absolute;

  top: -14px;

  left: 50%;

  transform: translateX(-50%);

  padding: 7px 18px;

  border-radius: 999px;

  background: var(--accent);

  color: #ffffff;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .06em;

  white-space: nowrap;

  box-shadow: 0 10px 20px rgba(79, 70, 229, .35);
}


.pricing-highlight {
  position: absolute;

  top: -14px;

  left: 50%;

  transform: translateX(-50%);

  padding: 7px 18px;

  border-radius: 999px;

  color: #ffffff;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .06em;

  white-space: nowrap;
}


.pricing-highlight.gold {
  background: linear-gradient(135deg, #f0c14b, #b8860b);

  box-shadow: 0 10px 20px rgba(184, 134, 11, .35);
}


.pricing-highlight.grey {
  background: #6b7280;

  box-shadow: 0 10px 20px rgba(107, 114, 128, .3);
}


.pricing-card.gold-frame {
  border-color: #d4af37;

  box-shadow: 0 20px 44px rgba(212, 175, 55, .2);
}


.pricing-card.gold-frame:hover {
  box-shadow: 0 28px 56px rgba(212, 175, 55, .28);
}


.pricing-card.grey-frame {
  border-color: #9ca3af;

  box-shadow: 0 12px 28px rgba(107, 114, 128, .14);
}


.pricing-name {
  font-size: 13px;

  font-weight: 700;

  letter-spacing: .06em;

  color: var(--accent);
}


.pricing-tagline {
  margin-top: 6px;

  color: var(--muted);

  font-size: 14.5px;
}


.pricing-price {
  display: flex;

  align-items: baseline;

  gap: 6px;

  margin-top: 22px;

  font-size: 44px;

  font-weight: 800;

  letter-spacing: -.03em;

  color: var(--text);
}


.pricing-price span {
  font-size: 15px;

  font-weight: 500;

  color: var(--muted);
}


.pricing-features {
  display: flex;

  flex-direction: column;

  gap: 13px;

  margin-top: 28px;

  padding-top: 28px;

  border-top: 1px solid var(--border);

  list-style: none;

  flex-grow: 1;
}


.pricing-features li {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  font-size: 14.5px;

  color: var(--text);
}


.pricing-features svg {
  flex-shrink: 0;

  margin-top: 3px;

  color: var(--green);
}


.pricing-card .button {
  margin-top: 30px;

  width: 100%;
}


.pricing-note {
  margin-top: 40px;

  text-align: center;

  color: var(--muted);

  font-size: 14.5px;
}


/* =========================
   TECH / REASSURANCE BAR
========================= */

.tech-section {
  padding: 90px 0;

  border-top: 1px solid var(--border);

  border-bottom: 1px solid var(--border);

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


.tech-inner {
  text-align: center;
}


.tech-section h2 {
  margin-inline: auto;
}


.tech-cloud {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 10px;

  max-width: 800px;

  margin: 45px auto 0;
}


.tech-cloud span {
  padding: 10px 18px;

  border-radius: 999px;

  background: var(--bg);

  border: 1px solid var(--border);

  color: var(--text);

  font-size: 12.5px;

  font-weight: 600;
}


/* =========================
   FAQ
========================= */

.faq {
  margin-top: 50px;

  display: grid;

  gap: 14px;
}


.faq-item {
  border-radius: 16px;

  background: var(--bg-soft);

  border: 1px solid var(--border);

  padding: 4px 26px;

  transition: border-color .2s;
}


.faq-item.active {
  border-color: var(--accent);
}


.faq-question {
  width: 100%;

  padding: 22px 0;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  background: none;

  border: 0;

  color: var(--text);

  text-align: left;

  cursor: pointer;

  font-size: 16px;

  font-weight: 600;
}


.faq-question span:last-child {
  flex-shrink: 0;

  display: grid;

  place-items: center;

  width: 26px;
  height: 26px;

  border-radius: 50%;

  background: var(--accent-soft);

  color: var(--accent);

  font-size: 16px;

  transition: transform .2s;
}


.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: max-height .35s ease;
}


.faq-answer p {
  padding-bottom: 24px;

  max-width: 640px;

  color: var(--muted);

  font-size: 14.5px;
}


.faq-item.active .faq-question span:last-child {
  transform: rotate(45deg);
}


/* =========================
   CONTACT / CTA
========================= */

.contact-section {
  padding: 130px 0 90px;

  background: var(--dark);

  color: var(--text-invert);
}


.contact-inner {
  display: grid;

  grid-template-columns: 1.1fr .9fr;

  gap: 60px;

  align-items: center;
}


.contact-content {
  max-width: 620px;
}


.contact-content .eyebrow {
  color: #8b85f7;
}


.contact-content h2 {
  margin-top: 14px;

  font-size: clamp(36px, 4.6vw, 52px);

  line-height: 1.08;

  letter-spacing: -.03em;

  font-weight: 800;
}


.contact-content p {
  margin-top: 18px;

  max-width: 480px;

  color: var(--muted-invert);

  font-size: 16.5px;
}


.contact-content .hero-actions {
  margin-top: 34px;
}


.form-note {
  margin-top: 20px;

  font-size: 13px;

  color: var(--muted-invert);
}


.form-note a {
  color: var(--text-invert);

  text-decoration: underline;

  text-underline-offset: 3px;
}


.contact-visual .mockup-stack {
  height: 340px;
}


/* =========================
   FOOTER
========================= */

.footer {
  background: var(--dark);

  color: var(--text-invert);

  border-top: 1px solid var(--border-invert);
}


.footer-grid {
  padding: 70px 0 40px;

  display: grid;

  grid-template-columns: 1.2fr repeat(4, 1fr);

  gap: 40px;
}


.footer-description {
  margin-top: 18px;

  max-width: 320px;

  color: var(--muted-invert);

  font-size: 13px;
}


.footer-grid > div:not(:first-child) {
  display: flex;

  flex-direction: column;

  gap: 14px;

  font-size: 14px;

  color: var(--muted-invert);
}


.footer-label {
  font-size: 11px;

  font-weight: 700;

  letter-spacing: .08em;

  color: #6b7280;
}


.footer-grid a:not(.logo) {
  transition: color .2s;
}


.footer-grid a:hover {
  color: var(--text-invert);
}


.footer-grid a.active {
  color: var(--text-invert);

  font-weight: 700;
}


.footer-bottom {
  padding-top: 24px;

  padding-bottom: 30px;

  border-top: 1px solid var(--border-invert);

  display: flex;

  justify-content: space-between;

  align-items: center;

  font-size: 12.5px;

  color: var(--muted-invert);
}


.footer-bottom a {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  transition: color .2s;
}


.footer-bottom a:hover {
  color: var(--text-invert);
}


/* =========================
   WHATSAPP FLOATING BUTTON
========================= */

.whatsapp-float {
  position: fixed;

  right: 24px;
  bottom: 24px;

  z-index: 40;

  width: 56px;
  height: 56px;

  display: grid;

  place-items: center;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, .22),
    0 0 0 rgba(37, 211, 102, .5);

  border-radius: 12px;

  transition:
    transform .2s,
    box-shadow .2s;

  animation: whatsapp-pulse 2.4s infinite;
}


.whatsapp-float img {
  display: block;

  width: 100%;

  height: 100%;
}


.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
}


@keyframes whatsapp-pulse {

  0%, 100% {

    box-shadow:
      0 12px 30px rgba(0, 0, 0, .22),
      0 0 0 rgba(37, 211, 102, .45);

  }

  50% {

    box-shadow:
      0 12px 30px rgba(0, 0, 0, .22),
      0 0 0 12px rgba(37, 211, 102, 0);

  }

}


/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity .8s ease,
    transform .8s ease;
}


.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


/* =========================
   ANIMATIONS
========================= */

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

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


  .announcement-inner {
    font-size: 12px;

    padding: 10px 16px;
  }


  .nav {
    height: 68px;

    gap: 12px;
  }


  .logo img {
    height: 22px;
  }


  .nav-links {
    display: none;
  }


  .nav-right {
    gap: 8px;
  }


  .nav-cta {
    padding: 0 14px;

    min-height: 42px;

    font-size: 12.5px;

    white-space: nowrap;
  }


  .lang-switch {
    display: none;
  }


  .menu-toggle {
    display: block;
  }


  .nav.mobile-open .nav-links {
    position: fixed;

    display: flex;

    flex-direction: column;

    gap: 6px;

    top: 82px;

    left: 16px;
    right: 16px;

    padding: 14px;

    border-radius: 24px;

    background: var(--bg-soft);

    border: 1px solid var(--border);

    box-shadow: 0 24px 48px rgba(15, 17, 25, .18);
  }


  .nav.mobile-open .nav-links a {
    padding: 14px 18px;

    border-radius: 999px;

    background: var(--bg);

    text-align: center;
  }


  .nav.mobile-open .nav-links a:hover,
  .nav.mobile-open .nav-links a.active {
    background: var(--accent-soft);

    color: var(--accent);
  }


  .nav-lang-mobile {
    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-top: 8px;

    padding-top: 14px;

    border-top: 1px solid var(--border);
  }


  .nav-lang-mobile .footer-label {
    padding: 0 18px;

    text-align: center;

    color: var(--muted);
  }


  .hero {
    padding-top: 50px;

    padding-bottom: 70px;
  }


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

    gap: 50px;
  }


  .hero-title {
    max-width: none;
  }


  .hero-visual {
    order: 2;
  }


  .mockup-stack {
    height: 300px;
  }


  .mockup-card {
    width: 84%;
  }


  .section {
    padding-top: 80px;

    padding-bottom: 80px;
  }


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


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


  .pricing-card.featured {
    order: -1;
  }


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


  .process-step {
    grid-template-columns: 46px 1fr;

    padding: 22px;
  }


  .tech-section,
  .contact-section {
    padding: 70px 0;
  }


  .contact-inner {
    grid-template-columns: 1fr;

    gap: 40px;
  }


  .contact-visual {
    order: 2;
  }


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

    gap: 36px;

    text-align: center;
  }


  .footer-grid > div {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;
  }


  .footer-bottom {
    flex-direction: column;

    gap: 12px;

    text-align: center;
  }

}


@media (max-width: 560px) {

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

}


/* =========================
   REDUCED MOTION
========================= */

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

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;
  }

}
