:root {
  --bg-1: #030923;
  --bg-2: #061130;
  --bg-3: #08153a;
  --surface: rgba(15, 24, 67, 0.88);
  --surface-2: rgba(20, 31, 82, 0.92);
  --border: rgba(120, 98, 255, 0.20);
  --text: #f3f4ff;
  --muted: #bcc3db;
  --primary: #7a62ff;
  --primary-2: #db5cff;
  --shadow: 0 14px 34px rgba(2, 6, 22, 0.32);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 16%, rgba(122, 98, 255, 0.10), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(219, 92, 255, 0.08), transparent 18%),
    radial-gradient(circle at 50% 78%, rgba(96, 78, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #02081e 0%, #06102d 46%, #08153a 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(3, 10, 31, 0.88);
  border-bottom: 1px solid rgba(120, 98, 255, 0.10);
}

.nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 180px;
  min-width: 160px;
}

.brand-logo-img {
  width: auto;
  height: 68px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  will-change: transform, opacity;
}

.nav-links a {
  position: relative;
  color: #edf1ff;
  font-size: 0.98rem;
  font-weight: 500;
  opacity: 0.9;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, opacity 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-links a:active {
  transform: scale(0.985);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7a62ff 0%, #db5cff 100%);
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(120, 98, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.menu-btn:active {
  transform: scale(0.96);
}

/* COMMON SECTION */
.section {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: rgba(5, 13, 39, 0.74);
  border-top: 1px solid rgba(120, 98, 255, 0.08);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(122, 98, 255, 0.06), transparent 22%),
    radial-gradient(circle at 82% 24%, rgba(219, 92, 255, 0.05), transparent 18%);
  pointer-events: none;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.05vw, 1.1rem);
  max-width: 860px;
  margin: 0 auto 46px;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(90deg, #7b61ff 0%, #a962ff 45%, #ea63d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 0 0 34px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -110px;
  top: 110px;
  border-radius: 50%;
  background: rgba(122, 98, 255, 0.10);
  filter: blur(95px);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -130px;
  top: 140px;
  border-radius: 50%;
  background: rgba(219, 92, 255, 0.08);
  filter: blur(105px);
  z-index: 0;
  pointer-events: none;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.34;
  filter: blur(0px) brightness(0.66) saturate(1.08);
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 60%, rgba(113, 84, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(3, 10, 31, 0.50) 0%, rgba(4, 11, 35, 0.58) 45%, rgba(5, 13, 39, 0.72) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  padding: 18px 0 0;
  transform: translateY(-18px);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(130, 108, 255, 0.24);
  background: linear-gradient(180deg, rgba(79, 61, 189, 0.38), rgba(53, 41, 140, 0.34));
  color: #cdbbff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 24px;
  box-shadow: 0 10px 24px rgba(79, 52, 196, 0.14);
}

.hero h1 {
  font-size: clamp(1.45rem, 4.2vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin: 0 auto 14px;
  font-weight: 900;
  max-width: 980px;
  white-space: nowrap;
}

.hero-subheading {
  font-size: clamp(1.02rem, 1.3vw, 1.32rem);
  line-height: 1.65;
  color: #eef2ff;
  max-width: 860px;
  margin: 0 auto 24px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 0;
}

.btn {
  min-width: 220px;
  min-height: 72px;
  padding: 18px 28px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #7662ff 0%, #d364ff 100%);
  box-shadow: 0 16px 32px rgba(111, 87, 255, 0.22);
}

.btn-secondary {
  color: #cebfff;
  background: rgba(13, 21, 58, 0.40);
  border: 2px solid rgba(122, 97, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(214, 97, 255, 0.06);
}

/* ABOUT */
.hero-about {
  background: rgba(5, 13, 39, 0.72);
  padding: 72px 0 60px;
}

.hero-about .hero-inner {
  max-width: 980px;
  transform: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 54px auto 0;
  max-width: 1080px;
}

.stat-card {
  padding: 28px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 63, 0.76), rgba(11, 18, 49, 0.76));
  border: 1px solid rgba(122, 97, 255, 0.10);
  box-shadow: 0 10px 24px rgba(2, 7, 24, 0.22);
  text-align: center;
}

.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #8a63ff 0%, #df62ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  color: #9fa8c8;
  font-size: 1rem;
}

/* BG IMAGE SECTIONS */
.section-bg {
  position: relative;
}

.section-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
  filter: blur(0px) brightness(0.58) saturate(1.08);
  z-index: 0;
  pointer-events: none;
}

.section-bg-services .section-bg-image {
  opacity: 0.30;
}

.section-bg-packages .section-bg-image {
  opacity: 0.30;
  filter: blur(0px) brightness(0.60) saturate(1.08);
}

.section-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 13, 39, 0.58) 0%, rgba(5, 13, 39, 0.66) 45%, rgba(5, 13, 39, 0.76) 100%);
}

/* GRID */
.grid {
  display: grid;
  gap: 28px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(16, 24, 66, 0.88), rgba(12, 19, 52, 0.92));
  border: 1px solid rgba(122, 97, 255, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* SERVICES + CARDS */
.service-card,
.contact-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.service-card::before,
.contact-card::before,
.pricing-card::before,
.success-case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(216, 93, 255, 0.07) 0%, rgba(123, 97, 255, 0.04) 40%, transparent 78%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::before,
.contact-card:hover::before,
.pricing-card:hover::before,
.success-case-card:hover::before {
  opacity: 1;
}

.service-card,
.success-case-card,
.pricing-card,
.contact-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.success-case-card:hover,
.pricing-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(140, 114, 255, 0.20);
  box-shadow: 0 14px 28px rgba(4, 8, 28, 0.28);
}

.service-card > *,
.contact-card > *,
.pricing-card > *,
.success-case-card > * {
  position: relative;
  z-index: 1;
}

.service-card {
  padding: 34px;
  min-height: 300px;
}

.icon-box {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  background: linear-gradient(145deg, #735fff, #d962ff);
  box-shadow: 0 10px 20px rgba(108, 85, 255, 0.16);
}

.service-card h3,
.contact-card h3 {
  font-size: clamp(1.24rem, 1.4vw, 1.62rem);
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 800;
}

.service-card p,
.contact-card p {
  color: #dbe1f7;
  line-height: 1.7;
  font-size: 0.98rem;
}

.service-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbe1f7;
  line-height: 1.55;
}

.service-list li::before {
  content: "✓";
  color: #df7cff;
  font-weight: 800;
}

/* SUCCESS */
.success-case-card {
  padding: 34px;
  min-height: 100%;
  border-left: 4px solid rgba(122, 97, 255, 0.82);
}

.success-case-top {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.success-country {
  min-width: 58px;
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.success-copy h3 {
  font-size: clamp(1.25rem, 1.35vw, 1.55rem);
  line-height: 1.2;
  margin-bottom: 6px;
  font-weight: 800;
}

.success-focus {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.success-results-box {
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(7, 14, 40, 0.58);
  border: 1px solid rgba(122, 97, 255, 0.10);
}

.success-results-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #d78aff;
  margin-bottom: 16px;
}

.success-results-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.success-results-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #dbe1f7;
  line-height: 1.6;
}

.success-results-list li::before {
  content: "✦";
  color: #d78aff;
  flex: 0 0 auto;
}

/* PACKAGES */
.package-cards-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  position: relative;
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.pricing-card h3 {
  font-size: clamp(1.9rem, 2.5vw, 2.4rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
}

.pricing-desc {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-price {
  font-size: clamp(2.6rem, 3.7vw, 3.4rem);
  line-height: 1;
  font-weight: 900;
  color: #e07bff;
  margin-bottom: 12px;
}

.pricing-period {
  color: #dbe1f7;
  font-size: 1rem;
  margin-bottom: 34px;
}

.pricing-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 0 0 34px;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dbe1f7;
  line-height: 1.6;
}

.pricing-list li::before {
  content: "✓";
  color: #df7cff;
  font-weight: 800;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  padding: 16px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7262ff 0%, #d065ff 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(110, 85, 255, 0.18);
}

.pricing-card-featured {
  border-color: rgba(141, 115, 255, 0.22);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  text-align: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7262ff 0%, #d065ff 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(110, 85, 255, 0.16);
}

/* CONTACT */
.contact-wrap {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.contact-card {
  min-height: 220px;
  padding: 40px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-card .icon-box {
  width: 68px;
  height: 68px;
  font-size: 1.55rem;
  margin-bottom: 20px;
}

.contact-link {
  color: #d8a6ff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  overflow-wrap: anywhere;
}

.contact-text {
  display: inline-block;
  text-align: center;
}

.contact-bottom {
  margin-top: 28px;
  padding: 28px 24px;
}

.contact-bottom p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #d9e0f5;
  text-align: center;
  line-height: 1.7;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(122, 97, 255, 0.10);
  padding: 18px 0 20px;
  text-align: center;
  background: rgba(3, 10, 31, 0.68);
}

.footer-brand {
  font-size: clamp(1.15rem, 1.4vw, 1.5rem);
  font-weight: 900;
  margin-bottom: 6px;
}

.footer-copy {
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.96rem;
}

.footer-extra {
  color: rgba(217, 224, 245, 0.86);
  margin-top: 6px;
  font-size: 0.88rem;
  line-height: 1.35;
}

/* REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* TABLET */
@media (max-width: 1100px) {
  .services-grid,
  .package-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    white-space: normal;
    max-width: 820px;
  }
}

/* MOBILE NAV + TABLET */
@media (max-width: 900px) {
  .nav {
    min-height: 82px;
    padding-inline: 4px;
  }

  .brand {
    width: 150px;
    min-width: 150px;
    padding-left: 6px;
  }

  .brand-logo-img {
    height: 52px;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-right: 6px;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    right: 0;
    left: auto;
    width: min(292px, calc(100vw - 36px));
    display: grid;
    gap: 6px;
    padding: 18px 14px;
    border-radius: 24px 0 0 24px;
    background: rgba(6, 12, 34, 0.98);
    border: 1px solid rgba(122, 97, 255, 0.12);
    box-shadow: 0 14px 30px rgba(1, 5, 20, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-links.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-links a {
    display: block;
    padding: 14px 16px 14px 24px;
    border-radius: 16px;
    text-align: left;
    font-size: 1rem;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .hero {
    min-height: 500px;
    padding: 14px 0 28px;
  }

  .hero-inner {
    transform: translateY(0);
    padding: 30px 0 0;
    max-width: 760px;
  }

  .hero h1 {
    white-space: normal;
    max-width: 640px;
    font-size: clamp(2.1rem, 6vw, 3.2rem);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .hero-subheading {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 540px;
  }

  .hero-actions {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 14px;
  }

  .hero-actions .btn {
    min-height: 56px;
    min-width: 190px;
    width: auto;
    padding: 15px 24px;
    font-size: 0.97rem;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* MOBILE */
@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 60px 0;
  }

  .nav {
    min-height: 76px;
    padding-inline: 2px;
  }

  .brand {
    width: 138px;
    min-width: 138px;
    padding-left: 8px;
  }

  .brand-logo-img {
    height: 46px;
  }

  .menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    margin-right: 2px;
  }

  .nav-links {
    top: 76px;
    right: 0;
    width: min(276px, calc(100vw - 32px));
    padding: 14px 12px;
    border-radius: 22px 0 0 22px;
  }

  .nav-links a {
    padding: 13px 14px 13px 22px;
    font-size: 0.98rem;
  }

  .hero {
    min-height: auto;
    padding: 22px 0 24px;
  }

  .hero-inner {
    transform: translateY(0);
    padding: 18px 0 0;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8vw, 2.7rem);
    line-height: 1.08;
    margin-bottom: 12px;
    margin-top: 0;
    max-width: 100%;
    white-space: normal;
  }

  .hero-subheading {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .btn {
    width: min(100%, 320px);
    min-width: 0;
    max-width: 320px;
    min-height: 54px;
    padding: 14px 20px;
    font-size: 0.96rem;
    border-radius: 18px;
  }

  .services-grid,
  .package-cards-grid,
  .stats,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .success-case-card,
  .pricing-card,
  .contact-card,
  .contact-bottom,
  .stat-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-bg-image {
    opacity: 0.28;
    filter: blur(0px) brightness(0.62) saturate(1.06);
  }

  .section-bg-image {
    opacity: 0.24;
    filter: blur(0px) brightness(0.54) saturate(1.06);
  }

  .section-bg-packages .section-bg-image {
    opacity: 0.26;
    filter: blur(0px) brightness(0.56) saturate(1.06);
  }

  .hero-about {
    padding: 56px 0 46px;
  }

  .hero-about .section-title {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .hero-about .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .pricing-badge {
    position: static;
    transform: none;
    margin: -4px auto 20px;
    display: table;
    min-width: auto;
  }

  .contact-bottom p {
    align-items: flex-start;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .nav {
    min-height: 72px;
  }

  .brand {
    width: 126px;
    min-width: 126px;
    padding-left: 10px;
  }

  .brand-logo-img {
    height: 42px;
  }

  .menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.08rem;
    margin-right: 4px;
  }

  .nav-links {
    top: 72px;
    right: 0;
    width: min(258px, calc(100vw - 28px));
    border-radius: 20px 0 0 20px;
    padding: 12px 10px;
  }

  .nav-links a {
    padding: 12px 12px 12px 20px;
    font-size: 0.96rem;
  }

  .hero {
    padding: 24px 0 22px;
  }

  .hero-inner {
    padding-top: 14px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .hero-subheading {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .hero-actions .btn {
    width: min(100%, 300px);
    max-width: 300px;
    min-height: 52px;
    font-size: 0.94rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
