:root {
  --brand-blue: #4882ab;
  --brand-blue-dark: #1a6196;
  --brand-blue-light: #6899c0;
  --brand-teal: #6ab7c2;
  --brand-teal-dark: #4891ad;
  --brand-teal-light: #7bc3d3;
  --brand-gray: #d0cfd0;
  --brand-gray-light: #e0e0e2;
  --brand-gray-dark: #bebcbc;
  --bg-primary: #f7fafc;
  --bg-secondary: #eef5f7;
  --surface: #ffffff;
  --surface-muted: #f2f6f8;
  --text-primary: #163246;
  --text-secondary: #4f6b7a;
  --text-soft: #7b8f99;
  --border: #d9e4ea;
  --shadow-soft: rgba(22, 50, 70, 0.08);
  --primary: #4882ab;
  --primary-hover: #1a6196;
  --secondary: #6ab7c2;
  --secondary-hover: #4891ad;
  --accent-soft: #eaf4f6;
  --gradient-brand: linear-gradient(135deg, #6ab7c2 0%, #4882ab 100%);
  --gradient-soft: linear-gradient(135deg, #7bc3d3 0%, #6899c0 100%);
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --services-feature-height: 392px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 8% 8%, rgba(122, 195, 211, 0.24), transparent 42%),
    radial-gradient(circle at 92% 10%, rgba(104, 153, 192, 0.22), transparent 44%),
    linear-gradient(180deg, #f9fcff 0%, #f2f8fb 100%);
}

main {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

.container {
  width: min(1140px, calc(100% - 2.8rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  transition: background-color 0.32s ease, box-shadow 0.32s ease,
    backdrop-filter 0.32s ease;
}

.site-header.is-scrolled {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(22, 50, 70, 0.08);
}

.header-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.brand {
  width: clamp(148px, 22vw, 186px);
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-logo.is-missing {
  opacity: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.8vw, 2rem);
  font-weight: 600;
  font-size: clamp(0.88rem, 0.95vw, 0.98rem);
  color: #1d2d4f;
}

.main-nav a,
.blog-toggle {
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  font: inherit;
  transition: color 0.22s ease;
}

.main-nav a:hover,
.blog-toggle:hover,
.main-nav a:focus-visible,
.blog-toggle:focus-visible {
  color: var(--primary);
}

.blog-dropdown {
  position: relative;
}

.blog-toggle span {
  font-size: 0.9rem;
}

.blog-menu {
  position: absolute;
  top: calc(100% + 1.1rem);
  right: 0;
  width: min(290px, calc(100vw - 1.5rem));
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 20px 48px rgba(22, 50, 70, 0.16);
  display: grid;
  gap: 0.7rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.blog-dropdown.is-open .blog-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.blog-menu a {
  padding: 0.5rem 0.2rem;
  border-radius: 8px;
  font-weight: 500;
}

.blog-menu a:hover,
.blog-menu a:focus-visible {
  background: var(--accent-soft);
}

.button-system {
  justify-self: end;
  min-height: clamp(38px, 4.2vw, 44px);
  padding: clamp(0.5rem, 1vw, 0.68rem) clamp(0.78rem, 2vw, 1.2rem);
  border-radius: var(--radius-xs);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.86rem, 0.92vw, 1rem);
  color: #fff;
  background: linear-gradient(140deg, var(--secondary), var(--brand-blue));
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button-system:hover,
.button-system:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(72, 145, 173, 0.32);
}

.hero-scroll {
  position: relative;
  min-height: 280vh;
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hero-video,
.hero-fallback,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}

.hero-fallback {
  background:
    radial-gradient(circle at 24% 22%, rgba(123, 195, 211, 0.55), transparent 45%),
    linear-gradient(150deg, #1d4d73 0%, #0f2d44 35%, #265f86 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(160, 169, 182, 0.26) 0%,
    rgba(124, 133, 147, 0.52) 52%,
    rgba(93, 102, 116, 0.72) 100%
  );
  opacity: 0;
}

.hero-content {
  position: absolute;
  inset: 0;
  width: 100%;
  perspective: 1200px;
  transform-style: preserve-3d;
  text-align: center;
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(360px, 64vw, 820px);
  max-width: 100%;
  transform-origin: center center;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) translate3d(0, 22px, 180px) scale(1.85);
  filter: blur(11px);
  will-change: transform, filter, opacity;
}

.hero-logo.is-missing {
  opacity: 0;
}

.hero-text {
  position: absolute;
  left: 50%;
  bottom: clamp(0.8rem, 1.8vh, 1.5rem);
  margin: 0;
  width: min(1320px, calc(100vw - 2.2rem));
  max-width: 100%;
  padding: clamp(0.82rem, 1.7vw, 1.2rem) clamp(1.2rem, 2.8vw, 2rem);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(
    140deg,
    rgba(15, 37, 53, 0.38) 0%,
    rgba(36, 67, 93, 0.24) 100%
  );
  backdrop-filter: blur(8px);
  color: #f1f7fb;
  font-size: clamp(1.06rem, 1.28vw, 1.2rem);
  line-height: 1.48;
  text-wrap: pretty;
  display: block;
  overflow: visible;
  opacity: 0;
  transform: translate3d(-50%, 0, 0) translate3d(0, 0, 140px) scale(1.22);
  filter: blur(9px);
  will-change: transform, filter, opacity;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.scroll-pill {
  min-height: 62px;
  min-width: min(360px, calc(100vw - 2rem));
  padding: 0.7rem 1.8rem 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(
    135deg,
    rgba(209, 221, 244, 0.34) 0%,
    rgba(181, 198, 229, 0.28) 100%
  );
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(10, 31, 45, 0.22);
  color: rgba(241, 248, 255, 0.95);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: clamp(0.86rem, 1.4vw, 1.05rem);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
}

.scroll-icon {
  width: 28px;
  height: 40px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  flex: 0 0 auto;
}

.scroll-icon::before {
  content: "";
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  animation: scroll-dot 1.5s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 0.95; }
  50% { transform: translateY(10px); opacity: 0.35; }
}

.section {
  padding: clamp(4.2rem, 8vw, 7rem) 0;
}

.section-heading h2 {
  margin: 0 0 2.1rem;
  color: #1b3156;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  letter-spacing: -0.02em;
}

.section-heading h2 span {
  color: var(--brand-teal-dark);
}

.services {
  background:
    radial-gradient(circle at 100% 0%, rgba(106, 183, 194, 0.22), transparent 38%),
    var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.62);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.84fr) minmax(400px, 1fr);
  gap: clamp(1.4rem, 3vw, 2.3rem);
  align-items: start;
}

.services-media {
  position: sticky;
  top: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(22, 50, 70, 0.18);
  height: var(--services-feature-height);
}

.services-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  display: block;
}

.services-cards {
  display: grid;
  gap: 1.3rem;
}

.card-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.64s ease, transform 0.64s ease;
}

.card-pair.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: 0 10px 28px var(--shadow-soft);
  padding: 1.9rem 1.2rem;
  min-height: var(--services-feature-height);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.92rem;
}

.card-icon {
  width: 42px;
  height: 42px;
  color: var(--brand-teal-dark);
}

.card-icon svg,
.advantage-icon svg,
.contact-icon svg,
.social-links svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

.service-card h3 {
  margin: 0;
  color: #132f4f;
  font-size: 1.83rem;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.04rem;
  line-height: 1.5;
}

.service-card button {
  border: 0;
  border-radius: var(--radius-xs);
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.1rem;
  cursor: pointer;
  min-width: 128px;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.service-card button:hover,
.service-card button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 15px rgba(72, 145, 173, 0.3);
}

.advantages {
  background:
    radial-gradient(circle at 18% 18%, rgba(123, 195, 211, 0.17), transparent 42%),
    var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.advantages h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.02em;
  color: #1b3156;
}

.advantages h2 span {
  color: var(--brand-teal-dark);
}

.support-line {
  margin: 0.9rem 0 2.6rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.93rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.advantage-item {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(217, 228, 234, 0.76);
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 1rem;
}

.advantage-icon {
  width: 72px;
  height: 72px;
  color: var(--brand-teal-dark);
  background: #eff4f8;
  border-radius: 17px;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.advantage-item h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.1vw, 2rem);
  line-height: 1.1;
  color: #132f4f;
}

.company {
  background:
    radial-gradient(circle at 80% 20%, rgba(104, 153, 192, 0.22), transparent 45%),
    var(--bg-secondary);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  align-items: stretch;
}

.company-copy,
.company-media {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(22, 50, 70, 0.08);
}

.company-copy {
  padding: clamp(1.3rem, 3vw, 2rem);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.company-copy h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
  color: var(--brand-blue-dark);
}

.mission-block h3,
.values-block h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.7rem, 2.3vw, 2.2rem);
  font-size: clamp(1.62rem, 2.2vw, 2.12rem);
  color: var(--brand-teal-dark);
}

.mission-block p {
  margin: 0 0 1.6rem;
  color: var(--text-secondary);
  line-height: 1.55;
  font-size: clamp(1.24rem, 1.55vw, 1.52rem);
  font-size: clamp(1.08rem, 1.35vw, 1.36rem);
}

.values-block ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.46;
  font-size: clamp(0.98rem, 1.16vw, 1.2rem);
}

.values-block li strong {
  color: var(--text-primary);
}

.company-media {
  overflow: hidden;
  align-self: center;
  height: calc(420px + 4cm);
  min-height: calc(420px + 4cm);
}

.company-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact {
  padding-bottom: 4.2rem;
  background: linear-gradient(180deg, #f6fafc 0%, #edf5f7 100%);
}

.contact h2 {
  margin: 0 0 2.4rem;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #183359;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-column {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(217, 228, 234, 0.72);
  padding: 1.5rem 1.2rem;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
}

.contact-icon {
  width: 38px;
  height: 38px;
  color: var(--brand-teal-dark);
}

.contact-column h3 {
  margin: 0.3rem 0 0.2rem;
  color: #9aa6cc;
  font-weight: 500;
}

.contact-column p {
  margin: 0.12rem 0;
  font-size: 1.02rem;
  color: #1b3355;
}

.whatsapp-column {
  grid-template-rows: auto auto auto auto 1fr;
}

.social-links {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
  gap: 0.72rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--brand-teal-dark);
  background: #fff;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(72, 145, 173, 0.24);
}

.site-footer {
  text-align: center;
  padding: 0.8rem 1rem 1.6rem;
  color: #446173;
  font-size: 0.95rem;
}

.wpp-float {
  position: fixed;
  left: max(0.95rem, env(safe-area-inset-left));
  bottom: max(0.95rem, env(safe-area-inset-bottom));
  width: 1in;
  height: 1in;
  border-radius: 50%;
  display: inline-block;
  z-index: 70;
  box-shadow: 0 12px 26px rgba(9, 35, 48, 0.34);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.wpp-float:hover,
.wpp-float:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 30px rgba(9, 35, 48, 0.4);
}

.wpp-float img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  transform-origin: center;
  animation: wpp-ring-pulse 2.2s ease-in-out infinite;
}

@keyframes wpp-ring-pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg) translateX(0);
  }
  8% {
    transform: scale(1.04) rotate(-2deg) translateX(-1px);
  }
  16% {
    transform: scale(1.04) rotate(2deg) translateX(1px);
  }
  24% {
    transform: scale(1.03) rotate(-1.5deg) translateX(-1px);
  }
  32% {
    transform: scale(1.03) rotate(1.5deg) translateX(1px);
  }
  45% {
    transform: scale(0.94) rotate(0deg) translateX(0);
  }
  62% {
    transform: scale(1.07) rotate(0deg) translateX(0);
  }
  78% {
    transform: scale(0.98) rotate(0deg) translateX(0);
  }
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.service-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 23, 34, 0.58);
}

.modal-panel {
  position: relative;
  width: min(960px, 100%);
  max-height: calc(100vh - 2.4rem);
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 62px rgba(15, 37, 53, 0.28);
  padding: clamp(1.2rem, 2vw, 1.6rem);
}

.modal-panel h3 {
  margin: 0;
  text-align: center;
  color: var(--brand-teal-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

.modal-body {
  margin-top: 1.2rem;
  display: grid;
  gap: 1.1rem;
}

.modal-body p {
  margin: 0;
  line-height: 1.64;
  color: #355069;
  font-size: 1.07rem;
}

.modal-close {
  display: block;
  margin: 1.4rem auto 0;
  min-width: 112px;
  border: 0;
  border-radius: var(--radius-xs);
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-dark));
  color: #fff;
  font-weight: 700;
  padding: 0.72rem 1rem;
  cursor: pointer;
}

.close-top {
  position: absolute;
  right: 0.85rem;
  top: 0.65rem;
  border: 0;
  background: transparent;
  color: #6f8b9b;
  font-size: 1.4rem;
  line-height: 1;
  transform: rotate(45deg);
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

body.hero-video-missing .hero-fallback {
  opacity: 1;
}

body.hero-video-missing .hero-video {
  opacity: 0;
}

@media (max-width: 1080px) {
  :root {
    --services-feature-height: clamp(290px, 52vw, 360px);
  }

  .header-grid {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand button"
      "menu menu";
    row-gap: 0.5rem;
    padding-bottom: 0.6rem;
  }

  .brand {
    grid-area: brand;
    width: clamp(132px, 28vw, 168px);
  }

  .main-nav {
    grid-area: menu;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.72rem 1.05rem;
    font-size: 0.86rem;
  }

  .button-system {
    grid-area: button;
    min-height: 38px;
    padding: 0.48rem 0.74rem;
    font-size: 0.82rem;
    border-radius: 9px;
  }

  .blog-menu {
    left: 0;
    right: auto;
    width: min(280px, calc(100vw - 2rem));
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-media {
    position: relative;
    top: 0;
    height: var(--services-feature-height);
  }

  .company-grid {
    grid-template-columns: 1fr;
  }

  .company-media {
    height: calc(340px + 4cm);
    min-height: calc(340px + 4cm);
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --services-feature-height: clamp(270px, 68vw, 330px);
  }

  .container {
    width: min(1140px, calc(100% - 1.4rem));
  }

  .header-grid {
    row-gap: 0.38rem;
    column-gap: 0.55rem;
    padding-bottom: 0.48rem;
  }

  .brand {
    width: clamp(118px, 34vw, 146px);
  }

  .main-nav {
    align-items: center;
    justify-content: center;
    gap: 0.58rem 0.9rem;
  }
  .main-nav a, .main-nav > div > button {
    font-size: 0.72rem;
    line-height: 1.15rem;
  }

  .button-system {
    min-height: 35px;
    padding: 0.42rem 0.6rem;
    font-size: 0.76rem;
    letter-spacing: -0.01em;
  }

  .blog-menu {
    top: calc(100% + 0.65rem);
    width: min(260px, calc(100vw - 1rem));
    padding: 0.78rem;
  }

  .blog-menu a {
    font-size: 0.84rem;
    line-height: 1.25;
  }

  .scroll-indicator {
    bottom: 1.4rem;
  }

  .scroll-pill {
    min-height: 52px;
    min-width: min(330px, calc(100vw - 1rem));
    padding: 0.6rem 1.2rem 0.6rem 0.8rem;
    gap: 0.58rem;
    font-size: clamp(0.68rem, 2.8vw, 0.94rem);
    letter-spacing: 0.05em;
  }

  .scroll-icon {
    width: 22px;
    height: 34px;
    padding-top: 6px;
  }

  .wpp-float {
    left: max(0.68rem, env(safe-area-inset-left));
    bottom: max(0.68rem, env(safe-area-inset-bottom));
    width: 0.9in;
    height: 0.9in;
  }

  .hero-scroll {
    min-height: 245vh;
  }

  .hero-content {
    inset: 0;
  }

  .hero-logo {
    width: clamp(260px, 80vw, 560px);
  }

  .hero-text {
    bottom: max(0.2rem, env(safe-area-inset-bottom));
    margin: 0;
    width: min(1180px, calc(100vw - 0.9rem));
    padding: 0.7rem 1rem;
    font-size: clamp(0.8rem, 2.45vw, 0.96rem);
    line-height: 1.4;
    border-radius: 22px;
  }

  .card-pair {
    grid-template-columns: 1fr;
  }

  .service-card h3 {
    font-size: 1.58rem;
  }

  .advantage-item {
    grid-template-columns: 62px 1fr;
    padding: 1.2rem;
  }

  .advantage-icon {
    width: 62px;
    height: 62px;
  }
}
