/* ============================================
   Katalabo LP - Editorial Future Style
   ============================================ */

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

:root {
  --bg: #f4f6fb;
  --bg-strong: #e9eef8;
  --ink: #101828;
  --ink-soft: #5c6b82;
  --line: rgba(16, 24, 40, 0.1);
  --line-strong: rgba(16, 24, 40, 0.18);
  --card: rgba(255, 255, 255, 0.86);
  --card-solid: #ffffff;
  --brand: #1258f5;
  --brand-alt: #45d0ff;
  --brand-soft: #eaf1ff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-sm: 0 10px 30px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 30px 90px rgba(16, 24, 40, 0.14);
  --gradient-main: linear-gradient(120deg, #0f52ff 0%, #2f8bff 52%, #45d0ff 100%);
  --font-en: "Syne", "Sora", sans-serif;
  --font-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --ease: cubic-bezier(0.2, 0.65, 0.2, 1);
  --pointer-x: 50%;
  --pointer-y: 20%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  position: relative;
  font-family: var(--font-jp);
  color: var(--ink);
  line-height: 1.8;
  background:
    radial-gradient(1100px 500px at -5% -10%, rgba(18, 88, 245, 0.16), transparent 65%),
    radial-gradient(900px 500px at 105% 5%, rgba(69, 208, 255, 0.16), transparent 60%),
    linear-gradient(180deg, #f9fbff 0%, var(--bg) 38%, #f2f5fb 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(18, 88, 245, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 88, 245, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 92%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(560px circle at var(--pointer-x) var(--pointer-y), rgba(18, 88, 245, 0.12), transparent 70%);
  transition: background-position 0.2s linear;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1200;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gradient-main);
  box-shadow: 0 0 24px rgba(18, 88, 245, 0.45);
}

/* Navigation */
.nav {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}

.nav.scrolled {
  top: 10px;
}

.nav-inner {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled .nav-inner {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.08);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 5;
}

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

.nav-logo-text {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: var(--font-en);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: rgba(16, 24, 40, 0.78);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gradient-main);
  transition: transform 0.35s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--gradient-main);
  box-shadow: 0 14px 35px rgba(18, 88, 245, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(18, 88, 245, 0.28);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 6;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(120px, 16vh, 180px) 0 100px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  z-index: 0;
  animation: floatBlob 10s ease-in-out infinite;
}

.hero::before {
  width: min(58vw, 720px);
  height: min(58vw, 720px);
  top: -26%;
  right: -12%;
  background: radial-gradient(circle at 40% 40%, rgba(18, 88, 245, 0.38), rgba(18, 88, 245, 0));
}

.hero::after {
  width: min(52vw, 640px);
  height: min(52vw, 640px);
  bottom: -30%;
  left: -14%;
  background: radial-gradient(circle at 50% 50%, rgba(69, 208, 255, 0.28), rgba(69, 208, 255, 0));
  animation-delay: -4s;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.56;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(249, 251, 255, 0.34) 0%, rgba(244, 246, 251, 0.8) 78%, var(--bg) 100%),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.48), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1050px, calc(100% - 48px));
  padding-left: 12px;
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s linear;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 2px;
  width: 4px;
  height: 120px;
  border-radius: 99px;
  background: var(--gradient-main);
  opacity: 0.65;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 88, 245, 0.28);
  background: rgba(255, 255, 255, 0.74);
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-jp);
  font-size: clamp(2.5rem, 7vw, 6rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 24px;
  max-width: 900px;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  background: var(--gradient-main);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 6s ease-in-out infinite;
}

.hero-sub {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  background: #101828;
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease), background-color 0.32s ease;
}

.hero-cta svg {
  transition: transform 0.3s var(--ease);
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(16, 24, 40, 0.24);
  background: #0b1f49;
}

.hero-cta:hover svg,
.hero-cta:focus-visible svg {
  transform: translateX(4px);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-line {
  width: 2px;
  height: 66px;
  background: linear-gradient(180deg, rgba(18, 88, 245, 0.8), rgba(18, 88, 245, 0));
  transform-origin: top;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* Sections */
.section {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
}

.section-header {
  position: relative;
  text-align: center;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.section-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 72px;
  height: 3px;
  border-radius: 99px;
  background: var(--gradient-main);
  opacity: 0.8;
}

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid rgba(18, 88, 245, 0.18);
  background: rgba(255, 255, 255, 0.68);
  color: #1944a7;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 900;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.about-text,
.about-visual {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 2.05;
  margin-bottom: 20px;
}

.about-lead strong {
  font-family: var(--font-en);
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-lead em {
  font-style: normal;
  color: #124ac9;
  font-weight: 700;
}

.about-desc {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.about-desc + .about-desc {
  margin-top: 14px;
}

.about-card {
  height: 100%;
  background:
    linear-gradient(160deg, rgba(18, 88, 245, 0.07) 0%, rgba(18, 88, 245, 0) 45%),
    linear-gradient(340deg, rgba(69, 208, 255, 0.07) 0%, rgba(69, 208, 255, 0) 45%),
    #fff;
  border: 1px solid rgba(18, 88, 245, 0.14);
  border-radius: 22px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  animation: floatCard 6s ease-in-out infinite;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.about-card-icon {
  width: 56px;
  margin: 0 auto 16px;
}

.about-card h3 {
  font-family: var(--font-en);
  letter-spacing: 0.08em;
  font-size: 1.08rem;
  color: #123f9f;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.9;
}

/* Services */
.services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(233, 238, 248, 0.82) 100%);
}

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

.service-card {
  grid-column: span 6;
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.07);
  transition: transform 0.45s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:nth-child(1),
.service-card:nth-child(4) {
  grid-column: span 7;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 5;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at 8% 10%, rgba(18, 88, 245, 0.18) 0%, transparent 52%),
    radial-gradient(circle at 92% 88%, rgba(69, 208, 255, 0.16) 0%, transparent 50%);
  transition: opacity 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -36px;
  right: -36px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(69, 208, 255, 0.28), rgba(69, 208, 255, 0));
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 88, 245, 0.28);
  box-shadow: 0 25px 60px rgba(16, 24, 40, 0.14);
}

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

.service-card:hover::after {
  transform: scale(1);
  opacity: 1;
}

.service-number {
  font-family: var(--font-en);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(18, 88, 245, 0.56);
  margin-bottom: 16px;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: #184cc7;
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-en);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.service-sub {
  color: #33569f;
  font-size: 0.84rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.service-desc {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

/* Strengths */
.strengths-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  position: relative;
}

.strengths-grid::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 34px;
  width: 2px;
  background: linear-gradient(180deg, rgba(18, 88, 245, 0.55), rgba(69, 208, 255, 0.55));
}

.strength-item {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.strength-item::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  left: 30px;
  top: 34px;
  background: var(--gradient-main);
  box-shadow: 0 0 0 6px rgba(18, 88, 245, 0.12);
}

.strength-item:hover {
  transform: translateX(8px);
  border-color: rgba(18, 88, 245, 0.22);
  box-shadow: 0 22px 50px rgba(16, 24, 40, 0.12);
}

.strength-icon {
  width: 54px;
  color: #1748bc;
}

.strength-title {
  font-size: 1.16rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.strength-desc {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.85;
}

/* Company */
.company {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(234, 239, 248, 0.7) 100%);
}

.company-table-wrap {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card-solid);
  box-shadow: var(--shadow-sm);
  padding: clamp(18px, 3vw, 30px);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.company-table th,
.company-table td {
  padding: 18px 4px;
  text-align: left;
  font-size: 0.95rem;
  vertical-align: top;
}

.company-table th {
  width: 32%;
  color: #38507f;
  font-weight: 700;
}

.company-table td {
  color: var(--ink);
}

/* Contact */
.contact {
  padding-top: clamp(90px, 11vw, 150px);
  padding-bottom: clamp(90px, 11vw, 150px);
}

.contact-inner {
  position: relative;
  isolation: isolate;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 32px;
  border: 1px solid rgba(18, 88, 245, 0.18);
  background:
    radial-gradient(circle at 10% 20%, rgba(18, 88, 245, 0.13), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(69, 208, 255, 0.13), transparent 45%),
    rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  padding: clamp(34px, 6vw, 72px);
}

.contact-inner::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  z-index: -1;
  background: linear-gradient(120deg, rgba(18, 88, 245, 0.5), rgba(69, 208, 255, 0.42), rgba(18, 88, 245, 0.5));
  background-size: 220% 100%;
  filter: blur(14px);
  opacity: 0.42;
  animation: gradientShift 8s ease-in-out infinite;
}

.contact-label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a4fbf;
  margin-bottom: 14px;
}

.contact-title {
  font-size: clamp(1.5rem, 3.8vw, 2.55rem);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.35;
}

.contact-desc {
  color: var(--ink-soft);
  margin-bottom: 30px;
  font-size: 0.96rem;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 16px 28px;
  background: var(--gradient-main);
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 34px rgba(18, 88, 245, 0.28);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.contact-cta svg {
  transition: transform 0.3s var(--ease);
}

.contact-cta:hover,
.contact-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 45px rgba(18, 88, 245, 0.3);
}

.contact-cta:hover svg,
.contact-cta:focus-visible svg {
  transform: translateX(3px);
}

/* Footer */
.footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 26px;
}

.footer-brand-text {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-copy {
  color: #6b7589;
  font-family: var(--font-en);
  font-size: 0.78rem;
}

/* Reveal */
.reveal {
  --reveal-y: 30px;
  --reveal-scale: 0.985;
  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  --reveal-y: 0px;
  --reveal-scale: 1;
}

/* Keyframes */
@keyframes scrollPulse {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    opacity: 1;
    transform-origin: bottom;
  }
  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -16px, 0) scale(1.04);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 16px;
    right: 16px;
    left: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(16, 24, 40, 0.1);
    box-shadow: 0 28px 80px rgba(16, 24, 40, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 80px 24px 28px;
    display: grid;
    gap: 18px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    font-size: 0.95rem;
    width: fit-content;
  }

  .nav-cta {
    width: fit-content;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-content {
    padding-left: 0;
    text-align: center;
  }

  .hero-content::before {
    display: none;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

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

  .strengths-grid::before {
    left: 26px;
  }

  .strength-item {
    grid-template-columns: 56px 1fr;
    padding: 22px 20px;
  }

  .strength-item::before {
    left: 22px;
    top: 30px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1200px, calc(100% - 30px));
  }

  .section-title {
    font-size: clamp(1.65rem, 9vw, 2.25rem);
  }

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

  .contact-desc br {
    display: none;
  }

  .company-table th,
  .company-table td {
    font-size: 0.9rem;
    padding: 14px 2px;
  }

  .hero-scroll {
    bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .hero-content,
  .reveal,
  .reveal.visible {
    transform: none !important;
  }
}
