/* ═══════════════════════════════════════
   BSI3Q LLC — Modern Dark Bold Theme (v2)
   Brand: Blue #1A6EFF → Teal #00C9A7
═══════════════════════════════════════ */
:root {
  --blue: #1A6EFF;
  --teal: #00C9A7;
  --dark: #1A2236;
  --dark2: #1E2A42;
  --dark3: #243252;
  --white: #FFFFFF;
  --grey: #8A94A6;
  --border: rgba(255, 255, 255, 0.1);
  --grad: linear-gradient(135deg, #1A6EFF, #00C9A7);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', 'Noto Sans KR', sans-serif;
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none
}

h1,
h2,
h3 {
  font-family: var(--font-display)
}

a {
  text-decoration: none;
  color: inherit;
  transition: all .2s
}

section {
  scroll-margin-top: 68px
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  left: 0;
  top: 0;
  will-change: transform;
  mix-blend-mode: difference
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 201, 167, .55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  left: 0;
  top: 0;
  will-change: transform;
  transition: border-color .3s
}

/* REVEAL */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease calc(var(--d, 0s)), transform .7s ease calc(var(--d, 0s))
}

html.js-loaded .reveal {
  opacity: 0;
  transform: translateY(20px)
}

html.js-loaded .reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: .02em;
  transition: all .25s;
  box-shadow: 0 8px 28px rgba(26, 110, 255, .35)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(26, 110, 255, .5);
  color: #fff
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: .02em;
  transition: all .25s
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal)
}

/* NAV */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(26, 34, 54, .75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all .3s
}

.navbar.scrolled {
  background: rgba(26, 34, 54, .97);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .3)
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .06em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 32px
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px
}

.nav-links a {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--white)
}

.lang-switch {
  display: flex;
  gap: 4px
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .5);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .2s
}

.lang-btn.active,
.lang-btn:hover {
  background: rgba(26, 110, 255, .2);
  border-color: var(--blue);
  color: var(--white)
}

.mobile-nav-actions {
  display: none;
  align-items: center;
  gap: 8px
}

.lang-btn-mobile {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .7);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body)
}

.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s
}

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

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

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

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.hero-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 110, 255, .25) 0%, transparent 65%);
  top: -200px;
  right: -80px
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 201, 167, .2) 0%, transparent 65%);
  bottom: -80px;
  left: -80px
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 64px 64px
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px
}

.eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--grad);
  flex-shrink: 0
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal)
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(68px, 8.5vw, 110px);
  line-height: .93;
  letter-spacing: .02em;
  margin-bottom: 28px
}

.hero-title .ht-white {
  display: block;
  color: var(--white)
}

.hero-title .ht-grad {
  display: block;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.hero-title .ht-grad2 {
  display: block;
  background: linear-gradient(135deg, #00C9A7, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.hero-desc {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 44px;
  font-weight: 300
}

.hero-desc strong {
  color: rgba(255, 255, 255, .95);
  font-weight: 600
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: .03em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .12)
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center
}

.hero-card-wrap {
  position: relative;
  width: 320px;
  height: 320px
}

.hero-logo-card {
  position: absolute;
  inset: 40px;
  background: var(--dark2);
  border: 1px solid rgba(26, 110, 255, .3);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(26, 110, 255, .15), inset 0 1px 0 rgba(255, 255, 255, .07)
}

.hero-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  position: relative;
  z-index: 1
}

.hero-logo-glow {
  position: absolute;
  inset: -1px;
  border-radius: 32px;
  background: radial-gradient(circle at 60% 40%, rgba(26, 110, 255, .15), transparent 60%);
  pointer-events: none
}

.floating-tag {
  position: absolute;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
}

.tag-1 {
  top: 10px;
  left: -10px;
  animation: floatA 4s ease-in-out infinite
}

.tag-2 {
  top: 20px;
  right: -10px;
  animation: floatB 4.5s ease-in-out infinite
}

.tag-3 {
  bottom: 20px;
  left: -20px;
  animation: floatB 5s ease-in-out infinite
}

.tag-4 {
  bottom: 10px;
  right: -10px;
  animation: floatA 3.8s ease-in-out infinite
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }
}

/* SECTION COMMON */
.section {
  padding: 120px 0
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px
}

.sec-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--grad);
  flex-shrink: 0
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 66px);
  line-height: .95;
  letter-spacing: .02em;
  margin-bottom: 16px
}

.sec-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.sec-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
  font-weight: 300;
  word-break: keep-all;
  overflow-wrap: break-word
}

.sec-header {
  text-align: center;
  margin-bottom: 72px
}

.sec-header .sec-label {
  justify-content: center
}

.sec-header .sec-sub {
  max-width: 520px;
  margin: 0 auto
}

/* ABOUT */
.about-section {
  background: var(--dark2)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start
}

.sec-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.85;
  margin-bottom: 36px;
  font-weight: 300;
  word-break: keep-all;
  overflow-wrap: break-word
}

.q3-grid {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.q3-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: all .3s
}

.q3-card:hover {
  background: rgba(26, 110, 255, .08);
  border-color: rgba(26, 110, 255, .3);
  transform: translateX(4px)
}

.q3-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff
}

.q3-badge sup {
  font-size: 10px;
  margin-top: 4px
}

.q3-blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 4px 16px rgba(59, 130, 246, .35)
}

.q3-indigo {
  background: linear-gradient(135deg, #6366f1, #4338ca);
  box-shadow: 0 4px 16px rgba(99, 102, 241, .35)
}

.q3-teal {
  background: linear-gradient(135deg, #1A6EFF, #00C9A7);
  box-shadow: 0 4px 16px rgba(0, 201, 167, .35)
}

.q3-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px
}

.q3-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.6;
  font-weight: 300;
  word-break: keep-all;
  overflow-wrap: break-word
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding-top: 16px
}

.about-logo-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center
}

.about-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  position: relative;
  z-index: 2
}

.about-logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringPulse 3s ease-in-out infinite
}

.ring-1 {
  inset: 0;
  border-color: rgba(26, 110, 255, .25)
}

.ring-2 {
  inset: -20px;
  border-color: rgba(0, 201, 167, .15);
  animation-delay: .5s
}

.ring-3 {
  inset: -40px;
  border-color: rgba(26, 110, 255, .08);
  animation-delay: 1s
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: .6;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.02)
  }
}

.design-note {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 24px 28px;
  width: 260px;
  word-break: keep-all;
  overflow-wrap: break-word
}

.design-note-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px
}

.design-note p {
  font-size: 15px;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 10px;
  font-weight: 300;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.65
}

.design-note ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.design-note li {
  font-size: 14px;
  color: rgba(255, 255, 255, .78);
  font-weight: 300;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.65
}

.design-note strong {
  color: rgba(255, 255, 255, .85);
  font-weight: 500
}

/* SERVICES */
.services-section {
  background: var(--dark)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, .05);
  border-radius: 20px;
  overflow: hidden
}

.svc-card {
  background: var(--dark);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: background .3s;
  position: relative;
  overflow: hidden
}

.svc-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .3s
}

.svc-card:hover {
  background: var(--dark3)
}

.svc-card:hover::before {
  opacity: 1
}

.svc-featured {
  background: var(--dark2)
}

.svc-featured::after {
  content: 'FEATURED';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--grad);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 3px 10px;
  border-radius: 100px
}

.svc-num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 20px
}

.svc-icon {
  font-size: 28px;
  margin-bottom: 14px
}

.svc-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 10px
}

.svc-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
  flex-grow: 1;
  word-break: keep-all;
  overflow-wrap: break-word
}

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px
}

.svc-list li {
  font-size: 15px;
  color: rgba(255, 255, 255, .78);
  font-weight: 300;
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word
}

.svc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  opacity: .8
}

.svc-portfolio {
  background: rgba(26, 110, 255, .06);
  border-left: 2px solid rgba(26, 110, 255, .4);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
  font-weight: 300;
  word-break: keep-all;
  overflow-wrap: break-word
}

.portfolio-label {
  font-weight: 700;
  color: rgba(26, 110, 255, .95);
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase
}

.coming-soon {
  color: rgba(255, 255, 255, .3);
  font-style: italic
}

.svc-coming {
  background: rgba(255, 165, 0, .06);
  border-left: 2px solid rgba(255, 165, 0, .4);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
  font-weight: 300
}

.coming-badge {
  font-weight: 700;
  color: #f59e0b;
  margin-right: 6px
}

.svc-cta-link {
  display: block;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(26, 110, 255, .35)
}

.svc-cta-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 110, 255, .5);
  color: #fff
}

.svc-cta-card {
  background: linear-gradient(135deg, rgba(26, 110, 255, .1), rgba(0, 201, 167, .07)) !important;
  border: 1px solid rgba(26, 110, 255, .2) !important;
  min-height: 280px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center
}

.svc-cta-card::before {
  display: none
}

.svc-cta-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px
}

.svc-cta-logo {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px
}

.svc-cta-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white)
}

.svc-cta-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
  font-weight: 300
}

/* CONTACT */
.contact-section {
  background: var(--dark);
  position: relative;
  overflow: hidden
}

.contact-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(26, 110, 255, .09), transparent);
  pointer-events: none
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.contact-form-wrap {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  padding: 48px;
  margin-top: 48px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.form-group {
  margin-bottom: 16px
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 8px
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 15px;
  outline: none;
  transition: all .2s;
  font-family: var(--font-body)
}

.form-input:focus {
  border-color: rgba(26, 110, 255, .6);
  background: rgba(26, 110, 255, .06)
}

.form-input::placeholder {
  color: rgba(255, 255, 255, .4)
}

textarea.form-input {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6
}

select.form-input {
  cursor: pointer
}

.form-submit {
  width: 100%;
  border-radius: 10px;
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: .03em
}

/* FOOTER */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 28px 5%
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between
}

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

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

.footer-name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .08em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  text-align: right
}

/* RESPONSIVE */
@media(max-width:960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px
  }

  .hero-right {
    display: none
  }

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

  .about-visual {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center
  }

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

  .nav-container {
    display: none
  }

  .nav-container.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 34, 54, .98);
    padding: 32px 5%;
    border-top: 1px solid var(--border);
    overflow-y: auto
  }

  .nav-container.open .nav-links {
    flex-direction: column;
    gap: 0
  }

  .nav-container.open .nav-links a {
    padding: 16px 0;
    font-size: 22px;
    border-bottom: 1px solid var(--border);
    display: block
  }

  .nav-container.open .lang-switch {
    margin-top: 24px
  }

  .mobile-nav-actions {
    display: flex
  }

  .form-row {
    grid-template-columns: 1fr
  }

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

  .footer-copy {
    text-align: center
  }
}

@media(max-width:600px) {
  .services-grid {
    grid-template-columns: 1fr
  }

  .contact-form-wrap {
    padding: 28px 20px
  }

  .hero-title {
    font-size: clamp(56px, 14vw, 80px)
  }
}