:root {
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --purple-dark: #7c3aed;
  --grey: #292929;
  --white: #f8f8f8;
  --black: #0a0a0a;
  --off-black: #141414;
  --dark: #1a1a1a;
  --card: #1f1f1f;
  --card-border: rgba(255, 255, 255, 0.08);
  --grey-500: #666666;
  --grey-300: #888888;
  --grey-200: #aaaaaa;
  --accent: #8b5cf6;
  --t: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.22, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(64px + env(safe-area-inset-top, 0px));
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100%;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  padding-top: env(safe-area-inset-top, 0);
  min-height: calc(64px + env(safe-area-inset-top, 0));
  height: auto;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    background 0.5s var(--ease-out-expo),
    backdrop-filter 0.5s var(--ease-out-expo),
    border-color 0.35s ease,
    box-shadow 0.5s var(--ease-out-expo);
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.42);
  backdrop-filter: blur(40px) saturate(1.25);
  -webkit-backdrop-filter: blur(40px) saturate(1.25);
  border-bottom-color: rgba(139, 92, 246, 0.28);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  margin-right: 0.5rem;
  display: block;
  transition: height 0.5s var(--ease-out-expo);
}

nav.scrolled .nav-logo-img {
  height: 32px;
}

.nav-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.nav-text {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
}

.nav-sub {
  font-size: 0.6rem;
  color: var(--grey-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.4rem 0.9rem;
  color: var(--grey-300);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  background: var(--purple);
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--purple-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-toggle {
  background: none;
  border: none;
  color: var(--grey-300);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  min-height: 44px;
  min-width: 44px;
  transition: color 0.2s;
  letter-spacing: 0.05em;
}

.lang-toggle:hover {
  color: var(--white);
}
.nav-linkedin {
  display: flex;
  align-items: center;
  line-height: 0;
  margin-top: 0px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-linkedin:hover {
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--grey-300);
  border-radius: 2px;
  transition: var(--t);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mob-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 199;
  padding-top: calc(64px + env(safe-area-inset-top, 0));
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(36px) saturate(1.2);
  -webkit-backdrop-filter: blur(36px) saturate(1.2);
  flex-direction: column;
  padding-left: max(2rem, env(safe-area-inset-left));
  padding-right: max(2rem, env(safe-area-inset-right));
  padding-bottom: env(safe-area-inset-bottom, 0);
  gap: 0.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mob-menu.open {
  display: flex;
}

.mob-menu a {
  color: var(--grey-200);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mob-menu a.cta-link {
  color: var(--accent);
}

/* HERO */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8rem 2.5rem 5rem;
  padding-top: max(8rem, calc(5rem + env(safe-area-inset-top)));
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
      ellipse 80% 55% at 65% 25%,
      rgba(139, 92, 246, 0.2) 0%,
      transparent 60%
    ),
    radial-gradient(ellipse 50% 40% at 10% 85%, rgba(139, 92, 246, 0.07) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.35);
  animation: floatUp linear infinite;
  pointer-events: none;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--accent);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.95s var(--ease-out-expo) 0.12s forwards;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.22s forwards;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero h1 .it {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--grey-300);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.34s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.46s forwards;
}

.btn-pri {
  background: var(--purple);
  color: #fff;
  padding: 0.875rem 1.75rem;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--t);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  justify-content: center;
}

.btn-pri:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(139, 92, 246, 0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--grey-200);
  padding: 0.875rem 1.75rem;
  border-radius: 9px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--t);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  justify-content: center;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.scroll-ind {
  position: absolute;
  bottom: max(2rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1.1s forwards;
  z-index: 1;
  cursor: pointer;
}

.scroll-ind span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    top: 5px;
    opacity: 1;
  }
  80% {
    top: 16px;
    opacity: 0;
  }
}

/* STATS */
.stats-bar {
  background: var(--off-black);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 3rem 2.5rem;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  overflow: hidden;
}

.stat-item {
  background: var(--off-black);
  padding: 2rem;
  text-align: center;
  transition: background 0.3s;
}

.stat-item:hover {
  background: var(--dark);
}

.stat-num {
  font-family: "Exo 2", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.35rem;
}

.stat-lbl {
  font-size: 0.73rem;
  color: var(--grey-300);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-sub {
  font-size: 0.68rem;
  color: var(--grey-500);
  margin-top: 0.2rem;
}

/* SHARED */
section {
  padding: 6.5rem 2.5rem;
}

.si {
  max-width: 1100px;
  margin: 0 auto;
}

.sec-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sec-title {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  color: #fff;
  word-wrap: break-word;
}

.sec-desc {
  color: var(--grey-300);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.988);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.992);
  transition:
    opacity 0.95s var(--ease-out-expo),
    transform 0.95s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* ABOUT */
#about {
  background: var(--off-black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pillar {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar:hover::before {
  opacity: 1;
}

.pillar:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.pillar-title {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.pillar-text {
  font-size: 0.8rem;
  color: var(--grey-300);
  line-height: 1.6;
}

/* SERVICES */
#services {
  background: var(--black);
}

.tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-top: 2.5rem;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 0;
}

.tab {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.65rem 1rem;
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-500);
  letter-spacing: 0.03em;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.25s, border-color 0.25s;
  min-height: 44px;
}

.tab:hover {
  color: var(--grey-200);
}

.tab.on {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.svc-panel {
  display: none;
}

.svc-panel.on {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 5rem;
  animation: fadeUp 0.4s ease forwards;
}

.svc-code {
  display: inline-block;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.svc-name {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.svc-desc {
  color: var(--grey-300);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.svc-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.svc-feats li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--grey-200);
  line-height: 1.5;
}

.svc-feats li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-visual {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.svc-visual::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent 70%);
  pointer-events: none;
}

.svc-vis-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.svc-vis-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 0.8rem;
}

.svc-vis-text {
  font-size: 0.85rem;
  color: var(--grey-300);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.svc-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.svc-stat-val {
  font-family: "Exo 2", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
}

.svc-stat-lbl {
  font-size: 0.72rem;
  color: var(--grey-500);
  margin-top: 0.1rem;
}

/* WHY LATAM */
#why-leonco {
  background: var(--off-black);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3.5rem;
}

.why-col-lbl {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--grey-300);
  line-height: 1.55;
}

.why-chk {
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 1px;
  font-weight: 700;
}

/* METHODOLOGY */
#methodology {
  background: var(--black);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 3.5rem;
}

.method-step {
  background: var(--off-black);
  padding: 2.5rem 1.75rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.method-step:hover {
  background: var(--dark);
}

.method-step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--purple);
  opacity: 0;
  transition: opacity 0.3s;
}

.method-step:hover::after {
  opacity: 1;
}

.step-num {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 4rem;
  color: rgba(139, 92, 246, 0.1);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.83rem;
  color: var(--grey-300);
  line-height: 1.65;
}

/* CTA */
#contact {
  position: relative;
  overflow: hidden;
  padding: 7rem 2.5rem;
  padding-bottom: max(7rem, calc(5rem + env(safe-area-inset-bottom)));
  background: linear-gradient(135deg, #1a0d3d 0%, var(--purple) 60%, #6b3fa0 100%);
}

#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner .sec-label {
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
}

.cta-inner .sec-label::before {
  display: none;
}

.cta-inner .sec-title {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.75);
  margin: 1.25rem 0 2.5rem;
  font-size: 1.02rem;
}

.btn-white {
  background: #fff;
  color: var(--purple-dark);
  padding: 1rem 2.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: var(--t);
  min-height: 44px;
  line-height: 1.3;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.contact-links {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.contact-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  word-break: break-all;
}

.contact-links a:hover {
  color: #fff;
}

.contact-mail {
  gap: 0.55rem;
}

.contact-mail-icon {
  flex-shrink: 0;
  opacity: 0.88;
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out-expo);
}

.contact-mail:hover .contact-mail-icon {
  opacity: 1;
  transform: translateY(-1px);
}

.contact-mail span {
  word-break: break-all;
}

/* FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-brand-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-img {
  height: 25px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--grey-500);
  text-decoration: none;
  transition: color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
}

/* MODAL */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
}

.overlay.open {
  display: flex;
}

.modal {
  background: var(--card);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: fadeUp 0.35s ease forwards;
  position: relative;
}

.modal-x {
  position: sticky;
  top: 0;
  float: right;
  background: none;
  border: none;
  color: var(--grey-500);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 1.5rem 1.5rem 0;
  transition: color 0.2s;
  z-index: 1;
  min-width: 44px;
  min-height: 44px;
}

.modal-x:hover {
  color: #fff;
}

.modal-body {
  padding: 1.5rem 2rem 2rem;
  clear: both;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  html {
    scroll-padding-top: calc(60px + env(safe-area-inset-top, 0px));
  }

  nav {
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    min-height: calc(60px + env(safe-area-inset-top, 0));
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .hamburger {
    display: flex;
    padding: 8px 4px 8px 10px;
  }

  .mob-menu {
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    padding-top: calc(60px + env(safe-area-inset-top, 0));
  }

  .nav-mark {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .nav-text {
    font-size: 1rem;
  }

  .nav-cta {
    padding: 0.45rem 1rem;
    font-size: 0.75rem;
  }

  .hero {
    padding: 6rem 1.25rem 4rem;
    min-height: 85vh;
    min-height: 85dvh;
  }

  .hero h1 {
    margin-bottom: 1.2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .btn-pri,
  .btn-ghost {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

  section {
    padding: 4.5rem 1.25rem;
  }

  .sec-title {
    margin-bottom: 0.9rem;
  }

  .sec-desc {
    font-size: 0.95rem;
  }

  .stats-bar {
    padding: 2.5rem 1.25rem;
  }

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

  .stat-num {
    font-size: 2.2rem;
  }

  .stat-lbl {
    font-size: 0.68rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .svc-panel.on {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .svc-name {
    font-size: 1.6rem;
  }

  .svc-code {
    font-size: 0.62rem;
  }

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

  .why-list li {
    font-size: 0.82rem;
  }

  .method-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .method-step {
    padding: 2rem 1.5rem;
  }

  .step-num {
    font-size: 3rem;
  }

  .step-title {
    font-size: 0.75rem;
  }

  .step-desc {
    font-size: 0.78rem;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .contact-links {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: calc(56px + env(safe-area-inset-top, 0px));
  }

  nav {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    min-height: calc(56px + env(safe-area-inset-top, 0));
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .mob-menu {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    padding-top: calc(56px + env(safe-area-inset-top, 0));
  }

  .nav-logo-img {
    height: 36px;
  }

  nav.scrolled .nav-logo-img {
    height: 30px;
  }

  .nav-mark {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
  }

  .nav-text {
    font-size: 0.9rem;
  }

  .nav-cta {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }

  .hero {
    padding: 5rem 1rem 3rem;
    min-height: 80vh;
    min-height: 80dvh;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .hero-badge {
    padding: 0.3rem 0.75rem;
    font-size: 0.65rem;
    margin-bottom: 1.5rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-actions {
    gap: 0.6rem;
    justify-content: flex-start;
  }

  .btn-pri,
  .btn-ghost {
    padding: 0.65rem 1.25rem;
    font-size: 0.8rem;
    width: 100%;
  }

  section {
    padding: 3.5rem 1rem;
  }

  .si {
    padding: 0;
  }

  .sec-label {
    font-size: 0.65rem;
    margin-bottom: 0.75rem;
  }

  .sec-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.15;
  }

  .sec-desc {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .stats-bar {
    padding: 2rem 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border-radius: 10px;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-num {
    font-size: 2rem;
    margin-bottom: 0.25rem;
  }

  .stat-lbl {
    font-size: 0.65rem;
  }

  .stat-sub {
    font-size: 0.62rem;
  }

  .about-grid {
    gap: 2rem;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .pillar {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .pillar-title {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
  }

  .pillar-text {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .tabs {
    gap: 0.3rem;
    margin-top: 1.75rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 2px;
  }

  .tab {
    padding: 0.5rem 0.7rem;
    font-size: 0.68rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .svc-panel.on {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
  }

  .svc-code {
    padding: 0.2rem 0.6rem;
    font-size: 0.6rem;
    margin-bottom: 0.75rem;
  }

  .svc-name {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  .svc-desc {
    font-size: 0.87rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .svc-feats li {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .svc-feats li::before {
    margin-top: 1px;
  }

  /* Keep visual card on mobile — stacked, readable */
  .svc-visual {
    padding: 1.5rem;
    border-radius: 12px;
    display: block;
    order: 2;
  }

  .svc-panel.on > div:first-child {
    order: 1;
  }

  .svc-vis-title {
    font-size: 0.72rem;
    margin-bottom: 0.6rem;
  }

  .svc-vis-text {
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
  }

  .svc-stat-val {
    font-size: 1.5rem;
  }

  .svc-stat-lbl {
    font-size: 0.65rem;
  }

  .why-grid {
    gap: 2rem;
  }

  .why-col-lbl {
    font-size: 0.7rem;
    margin-bottom: 1.25rem;
  }

  .why-list li {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .why-chk {
    font-size: 0.7rem;
  }

  .method-steps {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .method-step {
    padding: 1.75rem 1.25rem;
  }

  .method-step:hover::after {
    opacity: 0;
  }

  .step-num {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .step-title {
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
  }

  .step-desc {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  #contact {
    padding: 5rem 1rem;
  }

  .cta-inner .sec-title {
    font-size: 2rem;
  }

  .cta-inner p {
    font-size: 0.95rem;
    margin: 1rem 0 2rem;
  }

  .btn-white {
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 100%;
  }

  .contact-links {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.75rem;
    align-items: center;
  }

  .contact-links a {
    font-size: 0.8rem;
    justify-content: center;
    word-break: break-word;
  }

  footer {
    padding: 1.75rem;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .footer-brand {
    font-size: 1rem;
  }

  .footer-logo-img {
    height: 50px;
  }

  .footer-links {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 0.75rem;
  }

  .footer-copy {
    font-size: 0.65rem;
  }

  .mob-menu a {
    font-size: 1rem;
    padding: 0.6rem 0;
  }

  .scroll-ind {
    display: none;
  }
}

@media (max-width: 360px) {
  html {
    scroll-padding-top: calc(54px + env(safe-area-inset-top, 0px));
  }

  nav {
    padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
    min-height: calc(54px + env(safe-area-inset-top, 0));
  }

  .mob-menu {
    padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
    padding-top: calc(54px + env(safe-area-inset-top, 0));
  }

  .nav-mark {
    width: 26px;
    height: 26px;
    font-size: 0.65rem;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.25);
  }

  .nav-text {
    font-size: 0.8rem;
  }

  .nav-cta {
    padding: 0.35rem 0.6rem;
    font-size: 0.65rem;
  }

  .hero {
    padding: 4rem 0.5rem 2rem;
    min-height: 75vh;
    min-height: 75dvh;
  }

  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .hero h1 .it {
    display: block;
    margin-top: 0.2rem;
  }

  .hero-sub {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-pri,
  .btn-ghost {
    width: 100%;
    padding: 0.55rem 0.75rem;
    font-size: 0.7rem;
    justify-content: center;
    min-height: 44px;
  }

  section {
    padding: 2rem 0.5rem;
  }

  .si {
    padding: 0;
  }

  .sec-label {
    font-size: 0.6rem;
    margin-bottom: 0.5rem;
  }

  .sec-title {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    line-height: 1.1;
  }

  .sec-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .stats-bar {
    padding: 1.5rem 0.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1px;
    border-radius: 8px;
  }

  .stat-item {
    padding: 1.25rem 0.75rem;
  }

  .stat-num {
    font-size: 1.6rem;
    margin-bottom: 0.15rem;
  }

  .stat-lbl {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }

  .stat-sub {
    font-size: 0.58rem;
  }

  .about-grid {
    gap: 1.5rem;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .pillar {
    padding: 1rem;
    border-radius: 10px;
  }

  .pillar-icon {
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
  }

  .pillar-title {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }

  .pillar-text {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .tabs {
    gap: 0.2rem;
    margin-top: 1.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tab {
    padding: 0.4rem 0.5rem;
    font-size: 0.65rem;
    white-space: nowrap;
    min-height: 36px;
  }

  .svc-code {
    padding: 0.15rem 0.5rem;
    font-size: 0.55rem;
    margin-bottom: 0.5rem;
  }

  .svc-name {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }

  .svc-desc {
    font-size: 0.82rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .svc-feats {
    gap: 0.5rem;
  }

  .svc-feats li {
    font-size: 0.75rem;
    gap: 0.4rem;
  }

  .svc-visual {
    padding: 1.25rem;
    border-radius: 10px;
  }

  .svc-vis-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .svc-vis-text {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .svc-stat-val {
    font-size: 1.4rem;
  }

  .why-grid {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .why-col-lbl {
    font-size: 0.65rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }

  .why-list li {
    font-size: 0.75rem;
    gap: 0.4rem;
  }

  .why-chk {
    font-size: 0.65rem;
  }

  .method-steps {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .method-step {
    padding: 1.25rem 0.75rem;
  }

  .step-num {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }

  .step-title {
    font-size: 0.65rem;
    margin-bottom: 0.3rem;
  }

  .step-desc {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  #contact {
    padding: 4rem 0.5rem;
  }

  .cta-inner .sec-label {
    font-size: 0.6rem;
  }

  .cta-inner .sec-title {
    font-size: 1.5rem;
  }

  .cta-inner p {
    font-size: 0.88rem;
    margin: 0.75rem 0 1.5rem;
    line-height: 1.6;
  }

  .btn-white {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    min-height: 44px;
  }

  .contact-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-links a {
    font-size: 0.75rem;
  }

  footer {
    padding: 1.25rem 0.5rem;
  }

  .footer-brand {
    font-size: 0.9rem;
  }

  .footer-logo-img {
    height: 40px;
  }

  .footer-links {
    gap: 0.75rem;
  }

  .footer-links a {
    font-size: 0.7rem;
  }

  .footer-copy {
    font-size: 0.6rem;
  }

  .mob-menu {
    padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    padding-top: calc(54px + env(safe-area-inset-top, 0));
  }

  .mob-menu a {
    font-size: 0.95rem;
    padding: 0.5rem 0;
  }
}

@media (max-width: 280px) {
  html {
    scroll-padding-top: calc(52px + env(safe-area-inset-top, 0px));
  }

  nav {
    padding-left: max(0.35rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.35rem, env(safe-area-inset-right, 0px));
    min-height: calc(52px + env(safe-area-inset-top, 0));
  }

  .mob-menu {
    padding-left: max(0.35rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.35rem, env(safe-area-inset-right, 0px));
    padding-top: calc(52px + env(safe-area-inset-top, 0));
  }

  .nav-mark {
    width: 24px;
    height: 24px;
    font-size: 0.55rem;
  }

  .nav-cta {
    padding: 0.3rem 0.5rem;
    font-size: 0.6rem;
  }

  .hero {
    padding: 3.5rem 0.35rem 1.5rem;
  }

  .hero h1 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .hero-sub {
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
  }

  .btn-pri,
  .btn-ghost {
    font-size: 0.65rem;
    padding: 0.5rem 0.6rem;
  }

  section {
    padding: 1.5rem 0.35rem;
  }

  .sec-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .svc-name {
    font-size: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* =========================
   FINAL MOBILE POLISH PATCH
   Place at very bottom of styles.css
   ========================= */

@media (max-width: 900px) {
  .nav-cta {
    display: none !important;
  }

  .nav-logo-img {
    height: 34px;
  }

  nav.scrolled .nav-logo-img {
    height: 30px;
  }

  .hero {
    min-height: auto;
    padding: 7rem 1.25rem 4.5rem;
    justify-content: flex-start;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .hero-sub {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-pri,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

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

  .method-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  nav {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lang-toggle {
    min-width: 38px;
    padding: 0.25rem;
  }

  .hero {
    padding: 6.5rem 1.1rem 4rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.25rem);
  }

  .hero-badge {
    font-size: 0.62rem;
    line-height: 1.3;
    max-width: 100%;
  }

  section {
    padding: 4.5rem 1.1rem;
  }

  .stats-bar {
    padding: 2rem 1.1rem;
  }

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

  .stat-item {
    padding: 1.75rem 1.25rem;
  }

  .sec-title {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .sec-desc {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    margin-top: 2rem;
    scrollbar-width: none;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    flex: 0 0 auto;
    white-space: nowrap;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    margin-bottom: 0;
    padding: 0.65rem 0.9rem;
  }

  .tab.on {
    border-color: var(--accent);
    background: rgba(139, 92, 246, 0.12);
  }

  .svc-panel.on {
    margin-top: 2rem;
  }

  .svc-name {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
    line-height: 1.08;
  }

  .svc-visual {
    padding: 1.5rem;
  }

  .why-grid {
    gap: 2.5rem;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-step {
    padding: 1.75rem 1.25rem;
  }

  #contact {
    padding: 5rem 1.1rem;
  }

  .cta-inner .sec-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .footer-logo-img {
    height: 34px;
  }

  footer {
    padding: 2rem 1.1rem;
  }
}

@media (max-width: 380px) {
  .hero {
    padding: 6rem 1rem 3.5rem;
  }

  .hero h1 {
    font-size: 2.45rem;
    line-height: 1;
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  section {
    padding: 4rem 1rem;
  }

  .sec-title {
    font-size: 2rem;
  }

  .stat-num {
    font-size: 2.25rem;
  }

  .svc-name {
    font-size: 1.9rem;
  }
}
