body {
  background:
    radial-gradient(circle at 12% 8%, rgba(56, 189, 248, .20), transparent 32rem),
    radial-gradient(circle at 88% 20%, rgba(34, 197, 94, .16), transparent 30rem),
    #0b1222;
  color: #faf8ff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  z-index: -1;
}

header {
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  background: rgba(8, 17, 32, .86) !important;
}

h1, h2, h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.bg-sky-green-gradient { background: linear-gradient(135deg, #38bdf8 0%, #22c55e 100%); }
.text-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #22c55e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glass-card {
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px !important;
  box-shadow: 0 22px 60px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
}
.premium-card-hover { transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease; }
.premium-card-hover:hover {
  transform: translateY(-6px);
  border-color: rgba(56,189,248,.35);
  box-shadow: 0 30px 80px rgba(0,0,0,.34), 0 0 0 1px rgba(56,189,248,.22);
}
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.container-page { width: min(1280px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding-block: 96px; }
.hero-title {
  font-size: 64px;
  line-height: 1.06;
  letter-spacing: 0;
  max-width: 820px;
}
.page-hero {
  min-height: 470px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #0b1222;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(56,189,248,.24), transparent 28rem),
    radial-gradient(circle at 78% 24%, rgba(34,197,94,.18), transparent 24rem),
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: auto, auto, 46px 46px, 46px 46px;
  opacity: .85;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,18,34,.98) 0%, rgba(11,18,34,.86) 56%, rgba(11,18,34,.64) 100%),
    linear-gradient(180deg, rgba(11,18,34,.18) 0%, rgba(11,18,34,.42) 62%, #0b1222 100%);
  z-index: 1;
}
.page-hero > .container-page {
  position: relative;
  z-index: 2;
  max-width: 1280px !important;
}
.page-hero > .container-page::after {
  display: none;
}
.page-hero > .container-page::before {
  display: none;
}
.page-hero p:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(56,189,248,.10);
  border: 1px solid rgba(56,189,248,.22);
  color: #7dd3fc !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.page-hero p:first-child::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34,197,94,.75);
}
.page-hero p:last-child {
  max-width: 720px;
  color: #cbd5e1 !important;
}
.nav-link {
  color: #94a3b8;
  position: relative;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  opacity: 0;
  transform: scaleX(.6);
  transition: opacity .2s ease, transform .2s ease;
}
.nav-link:hover, .nav-link.active { color: #38bdf8; }
.nav-link:hover::after, .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 310px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(8,17,32,.96);
  border: 1px solid rgba(148,163,184,.18);
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 80;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  color: #cbd5e1;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}

.nav-dropdown-menu a:hover {
  color: #fff;
  background: rgba(56,189,248,.10);
}

.nav-dropdown-menu .material-symbols-outlined {
  color: #38bdf8;
  font-size: 21px;
}

header nav > div.hidden.md\:flex {
  gap: 22px !important;
}

#mobileMenu a {
  color: #cbd5e1;
  border-radius: 12px;
  padding: 10px 12px;
}

#mobileMenu a:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}

a.bg-sky-green-gradient,
button.bg-sky-green-gradient {
  box-shadow: 0 16px 42px rgba(56,189,248,.18);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

a.bg-sky-green-gradient:hover,
button.bg-sky-green-gradient:hover {
  filter: saturate(1.08) brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(34,197,94,.18);
}

.form-field {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(40,48,68,.92) !important;
  color: #faf8ff;
  outline: none;
}
.form-field::placeholder {
  color: rgba(203, 213, 225, .62);
}
.form-field option {
  background: #1e293b;
  color: #faf8ff;
}
.form-field:focus { box-shadow: 0 0 0 3px rgba(56,189,248,.20); }
summary::-webkit-details-marker { display: none; }

.stat-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(56,189,248,.18), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
}

.service-hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
}

.service-hero-list .material-symbols-outlined {
  color: #22c55e;
  font-size: 20px;
}

.process-timeline {
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 47px;
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: linear-gradient(#38bdf8, #22c55e);
  opacity: .35;
}

.process-step {
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(56,189,248,.16), transparent 32%);
  opacity: 0;
  transition: opacity .25s ease;
}

.process-step:hover::before {
  opacity: 1;
}

.contact-info-card {
  background:
    radial-gradient(circle at 12% 8%, rgba(56,189,248,.22), transparent 30%),
    linear-gradient(145deg, rgba(15,23,42,.94), rgba(30,41,59,.88)) !important;
}

.contact-section {
  padding-top: 72px;
}

.contact-panel {
  min-height: 100%;
}

.contact-panel label {
  color: #cbd5e1;
}

.service-detail-hero {
  min-height: 620px;
}

.service-detail-hero .hero-title {
  max-width: 920px;
}

.service-metric {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 96px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.service-metric:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.service-metric .text-gradient {
  letter-spacing: 0;
  line-height: 1;
}

.service-metric p {
  color: #d6e0ec !important;
}

.service-metric::after {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Material Symbols Outlined";
  font-size: 25px;
  color: #7dd3fc;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.16), transparent 42%),
    rgba(56,189,248,.10);
  border: 1px solid rgba(125,211,252,.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 14px 34px rgba(0,0,0,.18);
  pointer-events: none;
}

.service-metric:nth-child(1)::after {
  content: "work";
}

.service-metric:nth-child(2)::after {
  content: "travel_explore";
}

.service-metric:nth-child(3)::after {
  content: "all_inclusive";
}

.service-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
}

.service-metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: linear-gradient(transparent, rgba(125,211,252,.28), transparent);
  pointer-events: none;
}

.service-metric:first-child::before {
  display: none;
}

.service-detail-hero .max-w-5xl + .grid {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 2px;
  gap: 0 !important;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(56,189,248,.55), rgba(34,197,94,.46)) border-box;
  box-shadow: 0 30px 90px rgba(0,0,0,.36), 0 0 70px rgba(56,189,248,.08);
}

.service-detail-hero .max-w-5xl + .grid::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(56,189,248,.16), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(34,197,94,.12), transparent 36%),
    rgba(9, 16, 31, .74);
  backdrop-filter: blur(24px);
  z-index: -1;
}

.service-detail-hero .max-w-5xl + .grid::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), transparent 42%);
  pointer-events: none;
  z-index: -1;
}

.service-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.service-feature-card .material-symbols-outlined,
.service-process-card .material-symbols-outlined {
  color: #38bdf8;
}

.premium-card-hover {
  position: relative;
  overflow: hidden;
  min-height: 198px;
  padding: 32px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(56,189,248,.08), transparent 34%),
    linear-gradient(145deg, rgba(20,29,47,.92), rgba(10,17,31,.82)) !important;
  border-color: rgba(148,163,184,.16) !important;
  box-shadow: 0 20px 58px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.07);
}

.premium-card-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(56,189,248,.85), rgba(34,197,94,.75)) top / 100% 2px no-repeat,
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 30%);
  opacity: .86;
  pointer-events: none;
}

.premium-card-hover::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -64px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(56,189,248,.09);
  filter: blur(18px);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.premium-card-hover:hover {
  background:
    radial-gradient(circle at 100% 0%, rgba(56,189,248,.13), transparent 36%),
    radial-gradient(circle at 0% 100%, rgba(34,197,94,.08), transparent 34%),
    linear-gradient(145deg, rgba(22,32,52,.96), rgba(10,17,31,.86)) !important;
  border-color: rgba(125,211,252,.34) !important;
}

.premium-card-hover:hover::after {
  opacity: 1;
}

.premium-card-hover h3,
.premium-card-hover p {
  position: relative;
  z-index: 1;
}

.premium-card-hover h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.42rem;
  line-height: 1.2;
}

.premium-card-hover h3::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  box-shadow: 0 0 24px rgba(56,189,248,.30);
}

.premium-card-hover p {
  margin-top: 18px !important;
  color: #c9d4e3 !important;
}

.about-value-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 20px;
  min-height: 210px;
}

.about-value-card > .material-symbols-outlined {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.18);
  font-size: 26px !important;
}

.about-value-card h3,
.about-value-card p {
  margin-top: 0 !important;
}

.about-value-card h3::before {
  display: none !important;
}

.about-metrics-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(56,189,248,.62), rgba(34,197,94,.42), rgba(148,163,184,.14));
  box-shadow: 0 32px 90px rgba(0,0,0,.36), 0 0 70px rgba(56,189,248,.08);
}

.about-metrics-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background:
    radial-gradient(circle at 0% 0%, rgba(56,189,248,.18), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(34,197,94,.14), transparent 36%),
    rgba(12, 19, 34, .86);
  backdrop-filter: blur(24px);
  z-index: -1;
}

.about-metrics-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background: linear-gradient(180deg, rgba(255,255,255,.11), transparent 38%);
  pointer-events: none;
  z-index: -1;
}

.about-metric-item {
  min-height: 132px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  background: rgba(255,255,255,.035);
  transition: background .25s ease, transform .25s ease;
}

.about-metric-item:hover {
  background: rgba(56,189,248,.075);
  transform: translateY(-2px);
}

.about-metric-item > .material-symbols-outlined {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7dd3fc;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 42%),
    rgba(56,189,248,.12);
  border: 1px solid rgba(125,211,252,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 16px 38px rgba(0,0,0,.22);
}

.about-metric-item .text-gradient {
  line-height: 1;
}

.about-metric-item p {
  color: #cbd5e1 !important;
}

.service-process-card {
  position: relative;
  overflow: visible;
}

.service-process-card::after {
  content: "";
  position: absolute;
  left: 55px;
  top: 84px;
  bottom: -28px;
  width: 2px;
  background: linear-gradient(#38bdf8, rgba(34,197,94,.25));
  border-radius: 999px;
}

.service-process-card:last-child::after {
  display: none;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(56, 189, 248, .10);
  border: 1px solid rgba(56, 189, 248, .18);
}

.phase-process-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,.35);
  background: rgba(56,189,248,.08);
  color: #7dd3fc;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.phase-grid {
  display: grid;
  gap: 28px;
  margin-top: 52px;
}

@media (min-width: 900px) {
  .phase-grid { grid-template-columns: repeat(3, 1fr); }
}

.phase-card {
  background: linear-gradient(180deg, #f8fafc, #e9eef5);
  border-radius: 28px;
  overflow: hidden;
  color: #0f172a;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.phase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(0,0,0,.45);
}

.phase-card-top {
  position: relative;
  padding: 38px 28px 26px;
  text-align: center;
  background-image: radial-gradient(rgba(15,23,42,.14) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

.phase-label {
  font-size: 11px;
  letter-spacing: .3em;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
}

.phase-number {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin-top: 6px;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.phase-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 25%, rgba(56,189,248,.25), rgba(34,197,94,.12));
  border: 1px solid rgba(56,189,248,.28);
}

.phase-icon-wrap .material-symbols-outlined {
  font-size: 32px;
  color: #0ea5e9;
}

.phase-card-body {
  padding: 24px 28px 28px;
  border-top: 1px dashed rgba(15,23,42,.14);
  background: #fff;
}

.phase-card-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.phase-card-body p {
  margin-top: 10px;
  color: #475569;
  line-height: 1.6;
  font-size: 14.5px;
}

.phase-progress {
  display: flex;
  gap: 6px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(15,23,42,.09);
}

.phase-progress span {
  height: 5px;
  border-radius: 999px;
  background: rgba(15,23,42,.12);
  flex: 1;
}

.phase-progress span.active {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
}

.service-cta-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg, #0ea5e9, #22c55e) !important;
}

.service-cta-panel::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.22);
  pointer-events: none;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #05080d;
  border-top: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.site-footer::before {
  right: -18rem;
  top: -18rem;
  width: 34rem;
  height: 34rem;
  background: rgba(56,189,248,.10);
  filter: blur(70px);
}

.site-footer::after {
  left: 2rem;
  bottom: 2rem;
  width: 18rem;
  height: 18rem;
  background: rgba(34,197,94,.10);
  filter: blur(68px);
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr 1.25fr;
  gap: 56px;
  padding-bottom: 48px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.footer-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand-subtitle,
.footer-text,
.footer-link,
.footer-contact a,
.footer-contact div,
.footer-bottom {
  color: #a9bfd8;
}

.footer-brand-subtitle {
  margin-top: 6px;
  font-size: 14px;
}

.footer-text {
  max-width: 320px;
  margin-top: 30px;
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .22s ease, color .22s ease, border-color .22s ease, background .22s ease;
}

.footer-social:hover {
  transform: translateY(-3px);
  color: #fff;
  border-color: rgba(56,189,248,.50);
  background: rgba(56,189,248,.12);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-title {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 28px;
}

.footer-list {
  display: grid;
  gap: 16px;
}

.footer-link {
  width: fit-content;
  transition: color .2s ease, transform .2s ease;
}

.footer-link:hover {
  color: #38bdf8;
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  gap: 20px;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.footer-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  background: rgba(56,189,248,.12);
}

.footer-contact a {
  transition: color .2s ease;
}

.footer-contact a:hover {
  color: #38bdf8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  color: #a9bfd8;
}

.footer-legal a:hover {
  color: #38bdf8;
}

@media (max-width: 1180px) {
  header nav > div.hidden.md\:flex {
    gap: 14px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-hero > .container-page::before,
  .page-hero > .container-page::after {
    display: none;
  }
  .page-hero::after {
    background:
      linear-gradient(90deg, rgba(11,18,34,.98) 0%, rgba(11,18,34,.82) 100%),
      linear-gradient(180deg, rgba(11,18,34,.18), #0b1222 100%);
  }
}

@media (max-width: 768px) {
  .section-pad { padding-block: 72px; }
  .page-hero {
    min-height: 460px;
    align-items: flex-end;
    padding: 96px 0 56px;
  }
  .hero-title {
    font-size: 42px;
    line-height: 1.1;
  }
  .page-hero p {
    font-size: 16px !important;
    line-height: 26px !important;
  }
  .container-page {
    width: min(100% - 32px, 1280px);
  }
  .footer-shell {
    width: min(100% - 32px, 1280px);
    padding: 64px 0 34px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .service-hero-list {
    grid-template-columns: 1fr;
  }
  .process-timeline::before {
    display: none;
  }
  .service-detail-hero {
    min-height: 520px;
  }
  .service-detail-hero .max-w-5xl + .grid {
    border-radius: 22px;
  }
  .service-detail-hero .max-w-5xl + .grid::before,
  .service-detail-hero .max-w-5xl + .grid::after {
    border-radius: 20px;
  }
  .service-metric {
    min-height: 96px;
    padding: 22px 84px 22px 24px !important;
  }
  .service-metric::after {
    right: 24px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 23px;
  }
  .service-metric::before {
    left: 24px;
    right: 24px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125,211,252,.25), transparent);
  }
  .premium-card-hover {
    min-height: auto;
    padding: 26px !important;
  }
  .about-value-card {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    min-height: auto;
  }
  .about-value-card > .material-symbols-outlined {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 23px !important;
  }
  .about-metrics-panel {
    border-radius: 22px;
  }
  .about-metrics-panel::before,
  .about-metrics-panel::after {
    border-radius: 21px;
  }
  .about-metric-item {
    min-height: 112px;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 22px;
  }
  .about-metric-item > .material-symbols-outlined {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }
  .service-process-card::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 36px;
  }
  .page-hero {
    min-height: 430px;
  }
  .page-hero p:first-child {
    max-width: 100%;
    line-height: 1.2 !important;
    white-space: normal;
  }
  .glass-card {
    border-radius: 16px !important;
  }
  .about-metrics-panel {
    grid-template-columns: 1fr;
  }
}
