/* ============================================
   HS GROUP — Landing Page
   ============================================ */

:root {
  --bg: #fafafa;
  --bg-2: #ffffff;
  --bg-3: #f1f1f4;
  --text: #0a0a0b;
  --text-dim: #5a5a62;
  --text-muted: #8a8a92;
  --line: rgba(0, 0, 0, 0.08);
  --line-2: rgba(0, 0, 0, 0.14);
  --accent: #22A040;
  --accent-2: #1E3F8A;
  --env: #1da571;
  --bio: #1ec27b;
  --food: #e3502a;
  --finance: #d29c2a;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-smooth: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; cursor: none; font-family: inherit; }
img { max-width: 100%; display: block; }

::selection {
  background: var(--accent);
  color: #ffffff;
}

/* ============================================
   CURSOR
   ============================================ */
.cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(34, 160, 64, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.18s var(--ease-out), width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor.hover {
  width: 70px;
  height: 70px;
  background: rgba(34, 160, 64, 0.15);
  border-color: var(--accent);
}

@media (max-width: 900px) {
  body { cursor: auto; }
  button, a { cursor: pointer; }
  .cursor, .cursor-dot { display: none; }
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderUp 0.7s var(--ease-out) forwards;
}
.loader-logo {
  height: 80px;
  width: auto;
  display: block;
}
.loader-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--text-dim);
  display: flex;
}
.loader-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: loaderUp 0.8s var(--ease-out) forwards;
}
.loader-text span:nth-child(1) { animation-delay: 0.05s; }
.loader-text span:nth-child(2) { animation-delay: 0.10s; }
.loader-text span:nth-child(3) { animation-delay: 0.15s; }
.loader-text span:nth-child(4) { animation-delay: 0.20s; }
.loader-text span:nth-child(5) { animation-delay: 0.25s; }
.loader-text span:nth-child(6) { animation-delay: 0.30s; }
.loader-text span:nth-child(7) { animation-delay: 0.35s; }
.loader-text span:nth-child(8) { animation-delay: 0.40s; }

@keyframes loaderUp {
  to { opacity: 1; transform: translateY(0); }
}

.loader-bar {
  width: 240px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.loader-bar-fill {
  width: 0;
  height: 100%;
  background: var(--accent);
  animation: loaderBar 1.6s var(--ease-out) forwards;
  animation-delay: 0.4s;
}
@keyframes loaderBar {
  to { width: 100%; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 48px;
  transition: all 0.4s var(--ease);
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
}
.nav-links a::before {
  color: #ffffff;
}
.nav-cta {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}
.logo-img {
  filter: brightness(0) invert(1);
  transition: filter 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--line);
}
.nav.scrolled .nav-links a { color: var(--text-dim); }
.nav.scrolled .nav-links a::before { color: var(--text); }
.nav.scrolled .nav-cta {
  border-color: var(--line-2);
  color: var(--text);
  background: transparent;
}
.nav.scrolled .logo-img { filter: none; }
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-inner > .nav-logo { justify-self: start; }
.nav-inner > .nav-links { justify-self: center; }
.nav-logo {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-logo:hover { transform: scale(1.04); opacity: 0.92; }

.logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.nav.scrolled .logo-img {
  height: 28px;
}

@media (max-width: 768px) {
  .logo-img { height: 26px; }
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}
.nav-links a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
  display: inline-block;
  overflow: hidden;
  height: 1.4em;
}
.nav-links a::before {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--text);
  transition: top 0.4s var(--ease-out);
}
.nav-links a:hover { color: transparent; }
.nav-links a:hover::before { top: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.nav-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}
.nav-cta:hover svg { transform: translateX(3px); }

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a0a0b;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  animation: videoFadeIn 1.4s var(--ease-out) 0.4s forwards;
}
@keyframes videoFadeIn {
  to { opacity: 1; }
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(10, 10, 11, 0.55) 0%,
      rgba(10, 10, 11, 0.30) 30%,
      rgba(10, 10, 11, 0.30) 70%,
      rgba(10, 10, 11, 0.65) 100%),
    radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0.10) 0%,
      rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  z-index: 1;
  mix-blend-mode: screen;
  will-change: transform;
}
.orb-1 {
  width: 500px; height: 500px;
  background: var(--env);
  top: -100px; left: -100px;
  animation: float1 18s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: var(--food);
  top: 40%; right: -100px;
  animation: float2 22s ease-in-out infinite;
}
.orb-3 {
  width: 350px; height: 350px;
  background: var(--finance);
  bottom: -50px; left: 20%;
  animation: float3 20s ease-in-out infinite;
}
.orb-4 {
  width: 300px; height: 300px;
  background: var(--bio);
  top: 30%; left: 40%;
  animation: float4 25s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(120px, 80px) scale(1.15); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-100px, 100px) scale(0.9); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -120px) scale(1.1); }
}
@keyframes float4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-150px, -50px) scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  transition: justify-content 1s var(--ease-out);
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transition: transform 2.5s var(--ease-smooth), margin 2.5s var(--ease-smooth);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* === Collapsed state (after intro animation) === */
.hero.collapsed .hero-top {
  transform: translateY(-34vh);
}
.hero.collapsed .hero-title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 0;
  min-height: 1.2em;
}
.hero.collapsed .hero-title .title-line-1 {
  transform: translate(calc(-100% - 0.15em), 0);
  transition-delay: 0s;
}
.hero.collapsed .hero-title .title-line-2 {
  transform: translate(0.15em, 0);
  transition-delay: 0s;
}
.hero.collapsed .hero-tag {
  margin-bottom: 20px;
  transform: scale(0.92);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 2.5s var(--ease-smooth), margin 2.5s var(--ease-smooth);
}
.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  position: relative;
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  min-height: 2em;
  width: 100%;
  transition: font-size 2.5s var(--ease-smooth), letter-spacing 2.5s var(--ease-smooth), margin 2.5s var(--ease-smooth), min-height 2.5s var(--ease-smooth);
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding: 0.05em 0;
  position: absolute;
  left: 50%;
  top: 0;
  white-space: nowrap;
  will-change: transform;
}
.hero-title .title-line-1 {
  transform: translate(-50%, 0);
  transition: transform 1.8s var(--ease-smooth);
}
.hero-title .title-line-2 {
  transform: translate(-50%, 100%);
  transition: transform 1.8s var(--ease-smooth);
}
.hero-title .line-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1.2s var(--ease-out) forwards;
  animation-delay: 1.4s;
}
.hero-title .line:nth-child(2) .line-inner {
  animation-delay: 1.55s;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #22A040 0%, #1B95B6 50%, #1E3F8A 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}
@keyframes lineUp {
  to { transform: translateY(0); }
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  margin-top: 32px;
  margin-bottom: 80px;
  line-height: 1.7;
  max-width: 720px;
  transition: font-size 2.5s var(--ease-smooth), max-width 2.5s var(--ease-smooth), margin 2.5s var(--ease-smooth), transform 2.5s var(--ease-smooth);
  will-change: transform, font-size;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.hero-sub .sub-part {
  display: block;
  transition: display 0.6s var(--ease-out);
}
.hero-sub .sub-sep {
  display: none;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0.45em;
  transition: opacity 0.6s var(--ease-out);
  opacity: 0;
}

/* === Collapsed: subtitle becomes 1 line + drops to bottom area === */
.hero.collapsed .hero-sub {
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  transform: translateY(36vh);
}
.hero.collapsed .hero-sub .sub-part {
  display: inline;
}
.hero.collapsed .hero-sub .sub-sep {
  display: inline;
  opacity: 1;
}

@media (max-width: 768px) {
  .hero.collapsed .hero-top { transform: translateY(-30vh); }
  .hero.collapsed .hero-sub { transform: translateY(32vh); font-size: 0.75rem; }
  .hero.collapsed .hero-title { font-size: 1.1rem; min-height: 1.2em; }
  .hero.collapsed .hero-title .title-line-1 { transform: translate(calc(-100% - 0.18em), 0); }
  .hero.collapsed .hero-title .title-line-2 { transform: translate(0.18em, 0); }
}

.hero-marquee {
  position: absolute;
  bottom: 100px;
  left: -10vw;
  right: -10vw;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}
.marquee-track {
  display: flex;
  gap: 60px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  opacity: 0.08;
}
.marquee-track span:nth-child(odd) { color: rgba(255, 255, 255, 0.95); }
.marquee-track span:nth-child(even) { color: var(--accent); }
.marquee-track { opacity: 0.18; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--accent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  to { top: 100%; }
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 60px;
  text-transform: uppercase;
}
.section-label .num {
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  color: var(--accent);
  font-weight: 600;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 0.25em;
}
.section-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.section-title.in-view .word { opacity: 1; transform: translateY(0); }
.section-title.in-view .word:nth-child(1) { transition-delay: 0.05s; }
.section-title.in-view .word:nth-child(2) { transition-delay: 0.15s; }
.section-title.in-view .word:nth-child(3) { transition-delay: 0.25s; }
.section-title.in-view .word:nth-child(4) { transition-delay: 0.35s; }
.section-title.in-view .word:nth-child(5) { transition-delay: 0.45s; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 0;
  position: relative;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

/* ===========================================
   ABOUT — split: full photo + concise content
   =========================================== */
.about-split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  min-height: 100vh;
  align-items: stretch;
}

.about-photo {
  position: relative;
  overflow: hidden;
  background: #0a0a0b;
}
.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.6s var(--ease-smooth);
  will-change: transform;
}
.about-photo:hover img {
  transform: scale(1.04);
}
.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.6) 100%),
    linear-gradient(135deg,
    rgba(34, 160, 64, 0.12) 0%,
    rgba(30, 63, 138, 0.18) 100%);
  pointer-events: none;
}
.about-photo-caption {
  position: absolute;
  left: 32px;
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  z-index: 2;
}
.about-photo-caption .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.about-content {
  padding: 100px 80px 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}
.about-content .section-label {
  margin-bottom: 36px;
}
.about-headline {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15em 0.22em;
}
.about-headline .line-break {
  flex-basis: 100%;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}
.about-headline em {
  font-style: normal;
  background: linear-gradient(135deg, #22A040 0%, #1B95B6 50%, #1E3F8A 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}
.about-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.about-headline.in-view .word { opacity: 1; transform: translateY(0); }
.about-headline.in-view .word:nth-child(1) { transition-delay: 0.05s; }
.about-headline.in-view .word:nth-child(2) { transition-delay: 0.15s; }
.about-headline.in-view .word:nth-child(3) { transition-delay: 0.25s; }
.about-headline.in-view .word:nth-child(4) { transition-delay: 0.35s; }
.about-headline.in-view .word:nth-child(5) { transition-delay: 0.45s; }

.about-summary {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 48px;
}
.about-summary strong {
  color: var(--text);
  font-weight: 600;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-mini .stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text);
}
.stat-mini .stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr 1fr; }
  .about-content { padding: 80px 48px; }
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; min-height: auto; }
  .about-photo { height: 60vh; min-height: 460px; }
  .about-content { padding: 70px 32px; }
  .about-stats-row { gap: 16px; }
}
@media (max-width: 600px) {
  .about-stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .about-photo-caption { left: 20px; bottom: 20px; font-size: 0.7rem; padding: 8px 14px; }
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: start;
}
.about-text p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.about-text strong {
  color: var(--text);
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
.stat {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.4s var(--ease);
}
.stat:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px rgba(34, 160, 64, 0.2);
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--text);
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  line-height: 1.5;
  font-family: 'Space Grotesk', sans-serif;
}

@media (max-width: 900px) {
  .about { padding: 100px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* ============================================
   BRANDS
   ============================================ */
.brands {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  background: var(--bg-3);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brands .section-label { margin-bottom: 24px; }
.brands .section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 36px;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  /* full-bleed — break out of container */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  padding: 0 24px;
}
.brand-card {
  position: relative;
  padding: 44px 28px 36px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
  cursor: none;
  text-decoration: none;
  color: inherit;
}
.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--brand) 18%, transparent), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.brand-card:hover {
  transform: translateY(-10px);
  border-color: color-mix(in srgb, var(--brand) 50%, transparent);
  box-shadow: 0 32px 80px -28px color-mix(in srgb, var(--brand) 50%, transparent),
              0 8px 24px -8px rgba(0, 0, 0, 0.08);
}
.brand-card:hover::before { opacity: 1; }

.brand-bg {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--brand) 25%, transparent), transparent 70%);
  pointer-events: none;
  transition: transform 0.8s var(--ease-out), opacity 0.5s var(--ease);
}
.brand-card:hover .brand-bg {
  transform: scale(1.2) rotate(8deg);
}

.brand-logo {
  position: relative;
  z-index: 2;
  width: clamp(140px, 16vw, 220px);
  height: clamp(140px, 16vw, 220px);
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 22px 50px -12px color-mix(in srgb, var(--brand) 55%, transparent),
              0 6px 16px -4px color-mix(in srgb, var(--brand) 30%, transparent);
  transition: transform 0.6s var(--ease-out);
}
.brand-card:hover .brand-logo {
  transform: scale(1.12);
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-info {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.brand-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--brand);
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.brand-kr {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-dim);
  margin-bottom: 22px;
  max-width: 240px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand);
  padding: 10px 18px;
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  align-self: center;
  margin-top: auto;
}
.brand-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}
.brand-link:hover {
  background: var(--brand);
  color: #ffffff;
}
.brand-card:hover .brand-link svg { transform: translateX(6px); }

@media (max-width: 1100px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .brand-card { min-height: 380px; }
}
@media (max-width: 700px) {
  .brands { padding: 80px 0; min-height: auto; }
  .brand-grid { grid-template-columns: 1fr; gap: 16px; }
  .brand-card { min-height: auto; padding: 36px 28px; }
  .brand-logo { width: 120px; height: 120px; }
}

/* ============================================
   VISION
   ============================================ */
.vision {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 60px;
}
.vision-head .section-label {
  display: inline-flex;
  margin-bottom: 28px;
}
.vision-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
}
.vision-title-en {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #22A040 0%, #1B95B6 50%, #1E3F8A 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 7s ease infinite;
}
.vision-title-divider {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.6;
}
.vision-title-kr {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--text);
  font-weight: 700;
}
.vision-slogan {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto;
  padding: 16px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

/* Photo card grid — 2x2 full-bleed viewport-width */
.vision-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  /* break out of container — full viewport width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  margin-top: 30px;
}
.vision-photo-card {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 0 !important;
  box-shadow: none;
}
.vision-photo-card:hover {
  transform: none;
  box-shadow: none;
}
.vision-photo-card {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-3);
  transition: transform 0.6s var(--ease-smooth), box-shadow 0.6s var(--ease-smooth);
  box-shadow: 0 14px 36px -14px rgba(0, 0, 0, 0.22),
              0 1px 3px rgba(0, 0, 0, 0.06);
}
.vision-photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 70px -22px rgba(0, 0, 0, 0.36),
              0 10px 20px -6px rgba(34, 160, 64, 0.18);
}
.vp-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.4s var(--ease-smooth);
  will-change: transform;
  z-index: 1;
}
.vision-photo-card:hover .vp-img {
  transform: scale(1.06);
}
.vp-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 45%,
      rgba(10, 10, 11, 0.55) 80%,
      rgba(10, 10, 11, 0.82) 100%);
  pointer-events: none;
  transition: opacity 0.6s var(--ease-smooth);
}
.vp-content {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  z-index: 3;
  color: #ffffff;
  transition: transform 0.6s var(--ease-smooth);
}
.vision-photo-card:hover .vp-content {
  transform: translateY(-4px);
}
.vp-num {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
}
.vp-content h4 {
  font-family: 'Pretendard', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
  .vision-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    height: auto;
    min-height: auto;
    gap: 16px;
  }
  .vision-photo-card { min-height: 320px; }
  .vp-content { left: 24px; right: 24px; bottom: 24px; }
  .vp-content h4 { font-size: 1.6rem; }
}
.vision-marquee {
  margin: 80px -48px 100px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.vision-track {
  display: flex;
  gap: 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  align-items: center;
}
.vision-track .outline {
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
}
.vision-track {
  color: var(--text);
}
.vision-track .dash {
  color: var(--accent);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===========================================
   HQ SHOWCASE — full-bleed dramatic feature
   =========================================== */
.hq-showcase {
  position: relative;
  margin-top: 140px;
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #0a0a0b 0%, #14141a 100%);
  overflow: hidden;
  text-align: center;
}
.hq-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(34, 160, 64, 0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30, 63, 138, 0.15), transparent 55%);
  pointer-events: none;
}
.hq-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
}

.hq-showcase-header {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 24px;
  color: #ffffff;
}
.hq-showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.hq-showcase-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
.hq-showcase-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hq-showcase-title em {
  font-style: normal;
  background: linear-gradient(135deg, #22A040 0%, #4cc8e8 50%, #5e8fff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}
.hq-showcase-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.hq-showcase-stage {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
}
.hq-showcase-frame {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 80px 160px -40px rgba(0, 0, 0, 0.7),
    0 30px 60px -20px rgba(34, 160, 64, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 1.2s var(--ease-smooth), box-shadow 1.2s var(--ease-smooth);
  will-change: transform;
}
.hq-showcase-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 40%);
  pointer-events: none;
  z-index: 2;
}
.hq-showcase-frame img {
  display: block;
  width: auto;
  height: 88vh;
  max-height: 900px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 20px;
}
.hq-showcase-frame:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 100px 180px -40px rgba(0, 0, 0, 0.8),
    0 40px 80px -20px rgba(34, 160, 64, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hq-showcase-watermark {
  position: absolute;
  bottom: 30px;
  right: 8vw;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, rgba(34, 160, 64, 0.15), rgba(30, 63, 138, 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  z-index: 1;
  line-height: 0.8;
}

@media (max-width: 900px) {
  .hq-showcase { margin-top: 80px; padding: 60px 0 80px; }
  .hq-showcase-header { margin-bottom: 50px; }
  .hq-showcase-frame img { height: 70vh; max-height: 700px; }
  .hq-showcase-watermark { font-size: 5rem; right: 24px; bottom: 20px; }
}
@media (max-width: 600px) {
  .hq-showcase-frame img { height: 60vh; }
  .hq-showcase-watermark { display: none; }
}
.vision-card {
  padding: 28px 24px 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.vision-card-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--ease-smooth);
}
.vision-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}
.vision-card:hover .vision-card-img img {
  transform: scale(1.06);
}
.vision-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(34, 160, 64, 0.18);
}
.vision-card:hover::after { transform: scaleX(1); }

.v-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 10px;
}
.vision-card h4 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.vision-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .vision { padding: 100px 0; }
  .vision-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vision-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 160px 0;
  border-top: 1px solid var(--line);
}
.contact-title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 0.25em;
}
.contact-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.contact-title.in-view .word { opacity: 1; transform: translateY(0); }
.contact-title.in-view .word:nth-child(1) { transition-delay: 0.05s; }
.contact-title.in-view .word:nth-child(2) { transition-delay: 0.15s; }
.contact-title.in-view .word:nth-child(3) { transition-delay: 0.25s; }
.contact-title.in-view .word:nth-child(4) { transition-delay: 0.35s; }
.contact-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 80px;
}
.contact-item .ci-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.contact-item a, .contact-item span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  display: block;
}
.contact-item .ci-fax {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-top: 4px;
}
.contact-item a {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-position: 0 100%;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background-size 0.4s var(--ease);
}
.contact-item a:hover { background-size: 100% 1px; }

.cta-big {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 32px 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px -15px rgba(34, 160, 64, 0.4);
}
.cta-big::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s var(--ease-out);
  z-index: 0;
}
.cta-big:hover::before { transform: scaleX(1); transform-origin: left; }
.cta-big:hover { color: #ffffff; box-shadow: 0 25px 60px -15px rgba(30, 63, 138, 0.5); }
.cta-big > * { position: relative; z-index: 1; }
.cta-arrow {
  width: 64px;
  height: 64px;
  background: #ffffff;
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease);
}
.cta-big:hover .cta-arrow {
  transform: rotate(-45deg);
  color: var(--accent-2);
}
.cta-arrow svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .contact { padding: 100px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-big { padding: 24px 28px; gap: 16px; }
  .cta-arrow { width: 48px; height: 48px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 100px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-3);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 80px;
}
.footer-logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
}
.footer-brand p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-cols {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-col {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.footer-col h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
  padding-right: 18px;
  border-right: 1px solid var(--line-2);
  min-width: 110px;
}
.footer-col-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.footer-col-links a {
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.3s var(--ease);
}
.footer-col-links a:hover {
  color: var(--accent);
}

@media (max-width: 700px) {
  .footer-col { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-col h5 { border-right: 0; padding-right: 0; min-width: 0; }
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 60px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
