:root {
  --red: #ed101b;
  --red-dark: #bf0610;
  --black: #02070d;
  --ink: #10151f;
  --muted: #596676;
  --line: #e4e9ef;
  --soft: #f6f8fb;
  --white: #fff;
  --shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1180px, calc(100% - 52px));
  margin: 0 auto;
}

.site-header .container,
.site-footer .container {
  width: min(1320px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 3, 4, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.brand {
  width: 156px;
  height: 48px;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: drop-shadow(0 12px 20px rgba(237, 16, 27, 0.18));
}

.site-header .brand {
  width: auto;
  min-width: 0;
  max-width: none;
  height: auto;
  padding: 4px 0;
  margin: -2px 0;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
  overflow: visible;
  transition: opacity 0.2s ease, transform 0.22s ease;
}

.site-header .brand:hover {
  border-color: transparent;
  background: none;
  box-shadow: none;
  transform: translateY(-1px);
  opacity: 0.94;
}

.site-header .brand:focus-visible {
  outline: 2px solid rgba(237, 16, 27, 0.65);
  outline-offset: 4px;
  border-radius: 8px;
}

.site-header .brand:active {
  transform: translateY(0);
  opacity: 1;
}

.site-header .brand img {
  width: auto;
  height: clamp(42px, 4.8vw, 52px);
  max-width: min(252px, 58vw);
  object-fit: contain;
  object-position: center center;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.85))
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.main-nav a {
  position: relative;
  color: #fff;
  padding: 27px 0;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

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

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

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-drop-toggle {
  position: relative;
  min-height: 72px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.nav-drop-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-drop-toggle:hover::after,
.nav-drop-toggle.active::after,
.nav-dropdown:hover .nav-drop-toggle::after,
.nav-dropdown:focus-within .nav-drop-toggle::after {
  transform: scaleX(1);
}

.nav-drop-toggle.active {
  color: var(--red);
}

.dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% - 4px);
  z-index: 60;
  width: min(680px, calc(100vw - 32px));
  max-height: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  overflow: visible;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(5, 8, 13, 0.98);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

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

.dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 11px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(237, 16, 27, 0.13);
  color: #fff;
}

.dropdown-menu::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.header-whatsapp,
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
}

.header-whatsapp {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.header-whatsapp svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

button.header-whatsapp {
  cursor: pointer;
  font-family: inherit;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(1, 4, 10, 0.96) 0%, rgba(1, 4, 10, 0.86) 44%, rgba(1, 4, 10, 0.58) 72%, rgba(1, 4, 10, 0.28) 100%),
    #020811 url("../home/service copy.png") right center / cover no-repeat;
}

.contact-hero::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: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
  padding: 112px 0 120px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: var(--red);
}

.contact-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(56px, 5vw, 86px);
  line-height: 0.95;
  font-weight: 900;
}

.contact-hero h1 span {
  color: var(--red);
}

.contact-hero p {
  max-width: 740px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  font-weight: 500;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  max-width: 920px;
}

.hero-points > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(8, 13, 20, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 28px rgba(237, 16, 27, 0.28);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.9;
}

.hero-points strong,
.hero-points small {
  display: block;
}

.hero-points strong {
  font-size: 15px;
  font-weight: 800;
}

.hero-points small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.45;
}

.services-main {
  position: relative;
  overflow: hidden;
  padding: 86px 0 104px;
  background:
    radial-gradient(circle at 12% 12%, rgba(237, 16, 27, 0.075), transparent 24%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 56%, #eef3f8 100%);
  background-size: auto, 46px 46px, auto;
}

.services-main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  background:
    linear-gradient(90deg, transparent, rgba(237, 16, 27, 0.16), transparent) center top / min(1080px, calc(100% - 48px)) 1px no-repeat;
  pointer-events: none;
}

.services-main::after {
  display: none;
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 100px;
  background:
    radial-gradient(circle at 10% 20%, rgba(237, 16, 27, 0.22), transparent 28%),
    radial-gradient(circle at 90% 72%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, #060b12 0%, #02060b 54%, #07111d 100%);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    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;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
  pointer-events: none;
}

.services-main > .container,
.process-section > .container {
  position: relative;
  z-index: 1;
}

.section-title {
  margin-bottom: 42px;
  text-align: center;
}

.section-title p,
.process-heading p {
  margin: 0 0 9px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 900;
}

.section-title h2,
.process-heading h2 {
  position: relative;
  margin: 0;
  color: #070b12;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.12;
  font-weight: 900;
}

.section-title h2::after,
.process-heading h2::after {
  content: "";
  display: block;
  width: 82px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 99px;
  background: var(--red);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 292px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(237, 16, 27, 0.035), transparent 35%),
    #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(237, 16, 27, 0.3);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}

.service-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--red);
  border: 1px solid rgba(237, 16, 27, 0.18);
  border-radius: 18px;
  background: rgba(237, 16, 27, 0.08);
}

.card-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.2;
}

.accent {
  color: var(--red);
  stroke: var(--red);
}

.service-card h3 {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 12px;
  color: #10151f;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.service-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--red);
}

.service-card p {
  margin: 0 0 20px;
  color: #445061;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.process-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.28fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  margin-top: 0;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(5, 10, 16, 0.72);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.process-box::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: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.process-box > * {
  position: relative;
  z-index: 1;
}

.process-heading p {
  margin-bottom: 14px;
  letter-spacing: 2.4px;
  text-align: left;
}

.process-heading h2 {
  color: #fff;
  max-width: 260px;
  text-align: left;
  font-size: clamp(38px, 3.4vw, 54px);
  line-height: 1.04;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.process-heading h2::after {
  margin-left: 0;
  margin-right: 0;
  width: 98px;
  height: 4px;
  margin-top: 20px;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46px;
  height: 2px;
  background: linear-gradient(90deg, rgba(237, 16, 27, 0), rgba(237, 16, 27, 0.55), rgba(237, 16, 27, 0));
  pointer-events: none;
}

.process-steps article {
  position: relative;
  min-height: 250px;
  padding: 30px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.process-steps article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--red);
  opacity: 1;
}

.process-steps article:hover {
  transform: translateY(-7px);
  border-color: rgba(237, 16, 27, 0.5);
  background:
    linear-gradient(180deg, rgba(237, 16, 27, 0.15), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.28);
}

.process-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--red);
  border: 1px solid rgba(237, 16, 27, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.15), transparent 48%),
    rgba(237, 16, 27, 0.13);
  box-shadow: 0 16px 32px rgba(237, 16, 27, 0.12);
}

.process-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.step-number {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  color: #fff;
  border-radius: 50%;
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
  vertical-align: 3px;
  box-shadow: 0 10px 20px rgba(237, 16, 27, 0.22);
}

.process-steps h3 {
  display: inline;
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.process-steps p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.68;
  font-weight: 500;
}

.help-strip {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(1, 4, 10, 0.98) 0%, rgba(1, 4, 10, 0.88) 42%, rgba(1, 4, 10, 0.5) 72%, rgba(1, 4, 10, 0.2) 100%),
    #020811 url("../home/cta.png") right center / cover no-repeat;
}

.help-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.help-inner {
  position: relative;
  z-index: 1;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 42px 0;
}

.help-icon {
  display: none;
}

.help-inner h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.06;
  font-weight: 900;
}

.help-inner h2 span {
  display: block;
}

.help-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.help-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.btn-red,
.btn-dark {
  min-width: 156px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
}

.btn-red {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(237, 16, 27, 0.34);
}

.btn-dark {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
}

.gradient-divider {
  height: 6px;
  background: linear-gradient(90deg, #003d99 0%, #0066cc 25%, #ed101b 75%, #ff6b35 100%);
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 8% 10%, rgba(237, 16, 27, 0.24), transparent 28%),
    radial-gradient(circle at 54% 2%, rgba(0, 113, 184, 0.18), transparent 34%),
    radial-gradient(circle at 88% 58%, rgba(255, 90, 31, 0.12), transparent 28%),
    linear-gradient(135deg, #03070c 0%, #071018 48%, #020405 100%);
}

.site-footer::before {
  content: "";
  display: block;
  height: 8px;
  background: linear-gradient(90deg, #004a99 0%, #244aaf 28%, #7d2f82 55%, #ed101b 78%, #ff5a1f 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(220px, 1.35fr)
    minmax(108px, 0.58fr)
    minmax(min(100%, 420px), 2fr)
    minmax(200px, 1.12fr);
  gap: clamp(28px, 3.2vw, 48px);
  padding: 70px 0 52px;
  align-items: start;
}

/* Two-column layout for long "Our Products" link lists (footer column 3) */
.footer-grid > div:nth-child(3) {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  column-gap: clamp(14px, 2.2vw, 28px);
  row-gap: 4px;
  align-content: start;
}

.footer-grid > div:nth-child(3) > h3 {
  grid-column: 1 / -1;
}

.footer-grid > div:nth-child(3) > a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 5px 8px;
  border-radius: 6px;
  line-height: 1.45;
  hyphens: none;
  overflow-wrap: break-word;
  word-break: normal;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-grid > div:nth-child(3) > a:hover {
  color: #eaf7ff;
  background: linear-gradient(90deg, rgba(0, 113, 184, 0.18), rgba(237, 16, 27, 0.11));
  transform: translateX(2px);
}

.footer-brand {
  width: auto;
  height: auto;
  max-width: 100%;
  overflow: visible;
}

.footer-brand img {
  width: auto;
  height: clamp(56px, 6vw, 68px);
  max-width: min(280px, 95%);
  object-fit: contain;
  object-position: left center;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.footer-grid > div:nth-child(4) p,
.footer-grid > div:nth-child(4) a {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.footer-grid > div:nth-child(4) a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 5px;
}

/* Footer list icons — mirror style.css */
.footer-grid > div:nth-child(2) a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid > div:nth-child(2) a::before,
.footer-grid > div:nth-child(3) > a::before,
.footer-grid > div:nth-child(4) p::before,
.footer-grid > div:nth-child(4) a::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background 0.2s ease;
}

.footer-grid > div:nth-child(2) a:hover::before,
.footer-grid > div:nth-child(3) > a:hover::before,
.footer-grid > div:nth-child(4) a:hover::before {
  background: #ff4d55;
}

.footer-grid > div:nth-child(2) a::before {
  background: #7ec8ff;
}

.footer-grid > div:nth-child(3) > a::before {
  background: #9fd6ff;
}

.footer-grid > div:nth-child(4) p::before,
.footer-grid > div:nth-child(4) a::before {
  background: #ffb067;
}

.footer-grid > div:nth-child(4) p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px;
}

.footer-grid > div:nth-child(4) p::before {
  margin-top: 2px;
}

.footer-grid > div:nth-child(2) a:nth-of-type(1)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
}

.footer-grid > div:nth-child(2) a:nth-of-type(2)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 12a4 4 0 100-8 4 4 0 000 8zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 12a4 4 0 100-8 4 4 0 000 8zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.footer-grid > div:nth-child(2) a:nth-of-type(3)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z'/%3E%3C/svg%3E");
}

.footer-grid > div:nth-child(2) a:nth-of-type(4)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20 4H4c-1.1 0-1.99.9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20 4H4c-1.1 0-1.99.9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.footer-grid > div:nth-child(3) > a::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.7 2.3a3.5 3.5 0 00-5 0l-2 2 .5.5L8.5 12.5a4.5 4.5 0 106.4 6.4l7.7-7.7.5.5 2-2a3.5 3.5 0 000-5l-1.4 1.4a1 1 0 11-1.4-1.4l1.4-1.4zM7 18a2.5 2.5 0 113.5-3.5A2.5 2.5 0 017 18z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.7 2.3a3.5 3.5 0 00-5 0l-2 2 .5.5L8.5 12.5a4.5 4.5 0 106.4 6.4l7.7-7.7.5.5 2-2a3.5 3.5 0 000-5l-1.4 1.4a1 1 0 11-1.4-1.4l1.4-1.4zM7 18a2.5 2.5 0 113.5-3.5A2.5 2.5 0 017 18z'/%3E%3C/svg%3E");
}

.footer-grid > div:nth-child(4) p::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 4a4 4 0 100 8 4 4 0 000-8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 4a4 4 0 100 8 4 4 0 000-8z'/%3E%3C/svg%3E");
}

.footer-grid > div:nth-child(4) a[href^="tel:"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C9.4 21 3 14.6 3 6.5 3 5.9 3.4 5.5 4 5.5h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.2 1.1l-2.3 2.4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C9.4 21 3 14.6 3 6.5 3 5.9 3.4 5.5 4 5.5h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.2 1.1l-2.3 2.4z'/%3E%3C/svg%3E");
}

.footer-grid > div:nth-child(4) a[href^="mailto:"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20 4H4c-1.1 0-1.99.9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20 4H4c-1.1 0-1.99.9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.footer-grid > div:nth-child(4) a[href^="https://"]::before,
.footer-grid > div:nth-child(4) a[href^="http://"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2a10 10 0 100 20 10 10 0 000-20zm6.9 8h-2.1A12 12 0 006 17.1V19a8 8 0 0112.9-9zm-15.8 2h2.1A12 12 0 0018 6.9V5a8 8 0 01-12.9 9zM12 4c1.5 0 2.9.4 4.1 1.1A12 12 0 007.9 17.9 8 8 0 0112 4zm0 16c-1.5 0-2.9-.4-4.1-1.1A12 12 0 0016.1 6.1 8 8 0 0112 20z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2a10 10 0 100 20 10 10 0 000-20zm6.9 8h-2.1A12 12 0 006 17.1V19a8 8 0 0112.9-9zm-15.8 2h2.1A12 12 0 0018 6.9V5a8 8 0 01-12.9 9zM12 4c1.5 0 2.9.4 4.1 1.1A12 12 0 007.9 17.9 8 8 0 0112 4zm0 16c-1.5 0-2.9-.4-4.1-1.1A12 12 0 0016.1 6.1 8 8 0 0112 20z'/%3E%3C/svg%3E");
}

.site-footer h3 {
  position: relative;
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.2px;
  font-weight: 900;
}

.site-footer h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  background: var(--red);
  border-radius: 99px;
}

.site-footer a {
  display: table;
  margin-bottom: 5px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-grid > div:nth-child(2) a,
.footer-grid > div:nth-child(3) > a,
.footer-grid > div:nth-child(4) a {
  display: flex;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(237, 16, 27, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.socials a[aria-label="Facebook"] {
  background: #1877f2;
  box-shadow: 0 12px 24px rgba(24, 119, 242, 0.28);
}

.socials a[aria-label="Instagram"] {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 72%, #515bd4 100%);
  box-shadow: 0 12px 24px rgba(221, 42, 123, 0.3);
}

.socials a:hover {
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  padding: 18px 0;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom .container div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }

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

  .process-box {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-heading h2 {
    max-width: none;
    text-align: center;
  }

  .process-heading p {
    text-align: center;
  }

  .process-heading h2::after {
    margin-left: auto;
    margin-right: auto;
  }

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

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

@media (max-width: 820px) {
  .contact-hero {
    min-height: 390px;
    background-position: 65% center;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(5, 6, 7, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 12px 14px;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-drop-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    text-align: left;
  }

  .nav-drop-toggle::after {
    content: "+";
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: rgba(255, 255, 255, 0.72);
    transform: none;
    display: block;
    font-size: 20px;
    line-height: 1;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 54vh;
    display: none;
    grid-template-columns: 1fr;
    overflow-y: auto;
    padding: 8px;
    margin: 0 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.open .dropdown-menu {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown.open .nav-drop-toggle::after {
    content: "-";
  }

  .dropdown-menu a {
    min-height: 40px;
    padding: 9px 10px;
    border-radius: 8px;
  }

  .header-whatsapp {
    display: none;
  }

  .hero-points,
  .services-grid,
  .process-steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-box {
    margin-top: 46px;
    padding: 34px 22px;
    border-radius: 18px;
  }

  .process-heading h2 {
    font-size: 38px;
  }

  .process-steps::before {
    display: none;
  }

  .process-steps article {
    min-height: 0;
    padding: 24px 20px 22px;
  }

  .help-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 54px 0;
  }

  .help-actions {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 540px) {
  .nav-wrap {
    min-height: 70px;
  }

  .brand {
    width: 132px;
    height: 44px;
  }

  .site-header .brand {
    min-width: 0;
    max-width: min(240px, 58vw);
    padding: 2px 0;
  }

  .site-header .brand img {
    height: clamp(40px, 11vw, 48px);
  }

  .main-nav {
    top: 70px;
  }

  .hero-content {
    padding: 74px 0 78px;
  }

  .contact-hero h1 {
    font-size: 44px;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .services-main {
    padding: 58px 0;
    background:
      radial-gradient(circle at 12% 12%, rgba(237, 16, 27, 0.075), transparent 24%),
      linear-gradient(180deg, #f7f9fc 0%, #ffffff 58%, #eef3f8 100%);
  }

  .process-section {
    padding: 58px 0 64px;
  }

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

  .help-actions,
  .btn-red,
  .btn-dark {
    width: 100%;
  }

  .help-actions {
    flex-direction: column;
  }

  .footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid > div:nth-child(3) {
    grid-template-columns: 1fr;
  }
}

/* Mobile responsive hardening */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.services-grid,
.service-card,
.process-box,
.process-steps,
.process-steps article,
.help-inner,
.help-actions,
.footer-grid > * {
  min-width: 0;
}

.contact-hero h1,
.contact-hero p,
.hero-points strong,
.hero-points small,
.service-card h3,
.service-card p,
.process-heading h2,
.process-steps h3,
.process-steps p,
.help-inner h2,
.help-inner p,
.site-footer a,
.site-footer p {
  overflow-wrap: break-word;
  word-break: normal;
}

@media (max-width: 820px) {
  .main-nav .mobile-inquiry-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    padding: 0 16px;
    border: 1px solid rgba(237, 16, 27, 0.8);
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(180deg, #ed101b, #b40710);
    box-shadow: 0 16px 30px rgba(237, 16, 27, 0.24);
    font-size: 15px;
    font-weight: 900;
  }

  .main-nav .mobile-inquiry-open-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
  }

  .main-nav {
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }

  .process-box {
    margin-top: 0;
  }

  .help-inner h2 span {
    display: inline;
  }
}

@media (max-width: 540px) {
  .services-main {
    padding: 44px 0 50px;
    background:
      radial-gradient(circle at 50% 0%, rgba(237, 16, 27, 0.1), transparent 28%),
      linear-gradient(90deg, rgba(237, 16, 27, 0.045) 0 1px, transparent 1px 100%),
      linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
    background-size: auto, 50px 50px, auto;
  }

  .services-main .section-title {
    margin-bottom: 26px;
    padding-inline: 6px;
  }

  .services-main .section-title p {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .services-main .section-title h2 {
    max-width: 360px;
    margin-inline: auto;
    font-family: "Inter", Arial, sans-serif;
    font-size: clamp(25px, 7.2vw, 31px);
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  .services-main .section-title h2::after {
    width: 58px;
    height: 3px;
    margin-top: 14px;
  }

  .services-grid {
    gap: 12px;
  }

  .site-footer::before {
    height: 6px;
  }

  .footer-grid {
    gap: 24px;
    padding: 42px 0 30px;
  }

  .footer-grid > div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .footer-grid > div:first-child {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-brand img {
    height: 54px;
    margin-inline: auto;
  }

  .footer-grid > div:first-child p {
    max-width: 310px;
    margin: 14px auto 18px;
    font-size: 13px;
    line-height: 1.6;
  }

  .socials {
    justify-content: center;
  }

  .site-footer h3 {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .site-footer h3::after {
    width: 42px;
    margin-top: 8px;
  }

  .footer-grid > div:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .footer-grid > div:nth-child(2) h3,
  .footer-grid > div:nth-child(4) h3 {
    grid-column: 1 / -1;
  }

  .footer-grid > div:nth-child(2) a {
    min-height: 48px;
    align-items: center;
    margin: 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.25;
  }

  .footer-grid > div:nth-child(2) a::before {
    width: 20px;
    height: 20px;
    margin-top: 0;
    background: #80caff;
  }

  .footer-grid > div:nth-child(3) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 8px;
  }

  .footer-grid > div:nth-child(3) > a {
    min-height: 42px;
    padding: 8px 8px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 12px;
    line-height: 1.35;
  }

  .footer-grid > div:nth-child(2) a,
  .footer-grid > div:nth-child(4) a,
  .footer-grid > div:nth-child(4) p {
    font-size: 13px;
  }

  .footer-grid > div:nth-child(4) {
    background:
      radial-gradient(circle at 0% 0%, rgba(255, 176, 103, 0.12), transparent 34%),
      rgba(255, 255, 255, 0.045);
  }

  .footer-grid > div:nth-child(4) p,
  .footer-grid > div:nth-child(4) a {
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 9px 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
  }

  .footer-grid > div:nth-child(4) p::before,
  .footer-grid > div:nth-child(4) a::before {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-top: 0;
    border-radius: 10px;
    background-color: #ffb067;
    background-size: 18px 18px;
    box-shadow: 0 10px 22px rgba(255, 176, 103, 0.16);
  }

  .footer-bottom {
    padding: 16px 0 22px;
  }

  .footer-bottom .container {
    gap: 12px;
    text-align: center;
  }

  .footer-bottom .container div {
    justify-content: center;
  }

  .contact-hero {
    min-height: 330px;
  }

  .contact-hero h1 {
    font-size: clamp(38px, 12vw, 44px);
    line-height: 1;
  }

  .hero-points > div {
    padding: 14px;
  }

  .service-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 7px;
    align-items: start;
    min-height: 0;
    padding: 16px;
    border-radius: 16px;
    border-color: rgba(237, 16, 27, 0.1);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
      radial-gradient(circle at 92% 0%, rgba(237, 16, 27, 0.09), transparent 34%);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  }

  .service-card::before {
    left: 0;
    right: auto;
    top: 16px;
    bottom: 16px;
    width: 3px;
    height: auto;
    border-radius: 999px;
    opacity: 1;
  }

  .card-icon {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 54px;
    height: 54px;
    margin: 0;
    border-radius: 14px;
    background:
      linear-gradient(180deg, rgba(237, 16, 27, 0.1), rgba(237, 16, 27, 0.035)),
      #fff;
  }

  .card-icon svg {
    width: 32px;
    height: 32px;
  }

  .service-card h3 {
    grid-column: 2;
    margin: 0;
    padding-bottom: 0;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

  .service-card h3::after {
    display: none;
  }

  .service-card p {
    grid-column: 2;
    margin: 0;
    color: #425063;
    font-size: 13px;
    line-height: 1.55;
  }

  .service-card a {
    grid-column: 2;
    width: max-content;
    margin-top: 4px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(237, 16, 27, 0.08);
    font-size: 12px;
    line-height: 1;
  }

  .process-heading h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .help-inner h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .footer-bottom .container div {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

body.inquiry-modal-open {
  overflow: hidden;
}

button.inquiry-open-btn {
  font: inherit;
  cursor: pointer;
}

.mobile-inquiry-open-btn {
  display: none;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.inquiry-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.inquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 8, 0.72);
  backdrop-filter: blur(6px);
}

.inquiry-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: min(90vh, 640px);
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 28px 26px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(160deg, rgba(18, 22, 30, 0.98) 0%, rgba(8, 10, 14, 0.99) 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(237, 16, 27, 0.12);
  color: #fff;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.24s ease;
}

.inquiry-modal.is-open .inquiry-modal-dialog {
  transform: translateY(0) scale(1);
}

.inquiry-modal-dialog::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.inquiry-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.inquiry-modal-close:hover,
.inquiry-modal-close:focus-visible {
  background: rgba(237, 16, 27, 0.2);
  border-color: rgba(237, 16, 27, 0.45);
  outline: none;
}

.inquiry-modal-head {
  margin: 0 40px 6px 0;
}

.inquiry-modal-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.inquiry-modal-head p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.inquiry-form {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.inquiry-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.inquiry-form select {
  cursor: pointer;
  appearance: none;
  padding-right: 40px;
  background-color: rgba(255, 255, 255, 0.06);
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.inquiry-form select option {
  background: #12151c;
  color: #f1f5f9;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: rgba(237, 16, 27, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.inquiry-form select:focus {
  border-color: rgba(237, 16, 27, 0.55);
  background-color: rgba(255, 255, 255, 0.08);
}

.inquiry-form textarea {
  min-height: 100px;
  resize: vertical;
}

.inquiry-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.inquiry-submit {
  flex: 1;
  min-width: 140px;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(237, 16, 27, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.inquiry-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.inquiry-modal-wa-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(57, 213, 105, 0.45);
  background: rgba(57, 213, 105, 0.1);
  color: #7ef0a9;
  font-size: 13px;
  font-weight: 800;
}

.inquiry-modal-wa-link:hover {
  border-color: rgba(57, 213, 105, 0.75);
  background: rgba(57, 213, 105, 0.16);
  color: #fff;
}

.inquiry-modal-note {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
}

.inquiry-modal-success {
  display: none;
  padding: 8px 0 0;
}

.inquiry-modal-success.is-visible {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.inquiry-modal-success p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.inquiry-modal-done {
  padding: 11px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}

.inquiry-modal-done:hover {
  background: rgba(255, 255, 255, 0.14);
}
