/* ═══════════════════════════════════════════════════════════
   SOMA FIT AI — Landing Page Styles
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --orange-500: #FF5500;
  --orange-300: #FF8A4D;
  --orange-700: #B83A00;
  --teal-500: #00C8B4;
  --teal-300: #4DDFCF;
  --bg: #0A0A0A;
  --surface: #111111;
  --surface-2: #1A1A1A;
  --surface-3: #262626;
  --border: #262626;
  --text: #F5F5F5;
  --text-2: #D4D4D4;
  --text-3: #737373;
  --purple: #7C3AED;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --c-max: 1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }

.container {
  max-width: var(--c-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 800px; }
@media (max-width: 540px) {
  .container { padding: 0 16px; }
}

/* ─── Header ──────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  gap: 6px;
}
.logo-soma { color: var(--orange-500); }
.logo-ai { color: var(--teal-500); }
.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
}
.nav a:hover { color: var(--orange-500); }
@media (max-width: 768px) {
  .nav { display: none; }
  .header-inner { height: 60px; }
  .logo { font-size: 22px; }
}

/* ─── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  height: 44px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn i { font-size: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-300) 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,85,0,0.3), 0 10px 30px -10px rgba(255,85,0,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,85,0,0.5), 0 15px 40px -10px rgba(255,85,0,0.6);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--orange-500);
  color: var(--orange-500);
}
.btn-lg { height: 56px; font-size: 16px; padding: 0 32px; }
.btn-sm { height: 36px; font-size: 13px; padding: 0 18px; }
.btn-block { width: 100%; }
.hide-mobile { display: inline-flex; }
@media (max-width: 768px) {
  .hide-mobile { display: none; }
}

/* ─── Sticky CTA (mobile) ────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 12px 16px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: none;
}
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ─── Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.92) 100%),
              url('bg/hero.jpg') center/cover no-repeat;
  filter: blur(2px);
  transform: scale(1.05);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,85,0,0.2) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(0,200,180,0.15) 0%, transparent 45%);
}
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}
.aurora-1 {
  top: 10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: var(--orange-500);
}
.aurora-2 {
  bottom: 10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: var(--teal-500);
  animation-delay: -10s;
}
.aurora-3 {
  width: 600px;
  height: 600px;
  background: var(--orange-500);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 968px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding: 40px 0 80px; }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,85,0,0.1);
  border: 1px solid rgba(255,85,0,0.3);
  color: var(--orange-300);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title span {
  display: block;
}
.kinetic {
  background: linear-gradient(180deg, #fff 0%, #999 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kinetic.accent {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--orange-300); }

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
@media (max-width: 540px) {
  .hero-ctas .btn { flex: 1; min-width: 140px; }
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  .hero-stats { gap: 24px; }
  .hero-stats strong { font-size: 28px; }
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--orange-500);
  line-height: 1;
}
.hero-stats span {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
}

/* Phone visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}
.phone {
  position: absolute;
  width: 280px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8),
              0 0 0 12px #1a1a1a,
              0 0 0 13px #333;
  transition: transform 0.4s;
}
.phone img { width: 100%; display: block; }
.phone-back {
  transform: translate(-100px, 30px) rotate(-8deg);
}
.phone-front {
  transform: translate(80px, -30px) rotate(8deg);
  z-index: 2;
}
.hero-visual:hover .phone-back { transform: translate(-110px, 20px) rotate(-10deg); }
.hero-visual:hover .phone-front { transform: translate(90px, -40px) rotate(10deg); }
@media (max-width: 968px) {
  .hero-visual { min-height: 500px; }
  .phone { width: 220px; }
}
@media (max-width: 540px) {
  .hero-visual { min-height: 420px; }
  .phone { width: 170px; }
  .phone-back { transform: translate(-60px, 20px) rotate(-8deg); }
  .phone-front { transform: translate(50px, -20px) rotate(8deg); }
}

/* ─── Sections ──────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}
.section-dark {
  background: linear-gradient(180deg, var(--bg) 0%, #060606 50%, var(--bg) 100%);
}

/* 배경 이미지가 있는 섹션 */
.section-bg {
  position: relative;
  overflow: hidden;
}
.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.35);
  transform: scale(1.05);
  z-index: 0;
}
.section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 15%, transparent 85%, var(--bg) 100%);
  z-index: 1;
}
.section-bg .container { position: relative; z-index: 2; }
.section-bg-features::before { background-image: url('bg/features.jpg'); }
.section-bg-themes::before { background-image: url('bg/themes.jpg'); }
.section-bg-reviews::before { background-image: url('bg/reviews.jpg'); }
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange-500);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.accent {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-desc {
  font-size: 18px;
  color: var(--text-2);
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
}

/* ─── Targets ──────────────────────────────────────── */
.targets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .targets { grid-template-columns: 1fr; }
}
.target-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all 0.3s;
}
.target-card:hover {
  border-color: var(--orange-500);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(255,85,0,0.4);
}
.target-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}
.target-icon.orange { background: linear-gradient(135deg, var(--orange-500), var(--orange-300)); }
.target-icon.teal { background: linear-gradient(135deg, var(--teal-500), var(--teal-300)); }
.target-icon.purple { background: linear-gradient(135deg, var(--purple), #A78BFA); }
.target-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.target-card p {
  color: var(--text-2);
  font-size: 15px;
}

/* ─── Steps ──────────────────────────────────────── */
.steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
}
@media (max-width: 968px) {
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
}
.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
}
.step:hover {
  border-color: var(--orange-500);
  transform: translateY(-4px);
}
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--orange-500);
  line-height: 1;
}
.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-content p {
  color: var(--text-2);
  font-size: 14px;
}
.step-arrow {
  align-self: center;
  font-size: 32px;
  color: var(--orange-500);
}

/* ─── Bento Grid ──────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 968px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; }
}
.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  border-color: rgba(255,85,0,0.5);
  transform: translateY(-4px);
}
.bento-lg {
  grid-column: span 2;
  grid-row: span 2;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.bento-md {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
@media (max-width: 968px) {
  .bento-lg, .bento-md { grid-column: span 2; flex-direction: column; }
}
@media (max-width: 540px) {
  .bento-lg, .bento-md { grid-column: span 1; }
}
.bento-text { flex: 1; }
.bento-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bento-image img {
  max-height: 380px;
  border-radius: 24px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.8);
}
.bento-image-mini {
  margin-top: auto;
  display: flex;
  justify-content: center;
}
.bento-image-mini img {
  max-height: 180px;
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
}
.bento-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange-500);
  text-transform: uppercase;
}
.bento-card h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}
.bento-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}
.bento-cta {
  background: linear-gradient(135deg, rgba(255,85,0,0.2), rgba(255,85,0,0.05));
  border-color: rgba(255,85,0,0.3);
}
.bento-icon {
  font-size: 36px;
  color: var(--orange-500);
  margin-bottom: 8px;
}

/* ─── Gallery ──────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s;
}
.gallery-item:hover {
  transform: translateY(-8px);
}
.gallery-item img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.8),
              0 0 0 1px rgba(255,255,255,0.05);
}
.gallery-item span {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 600;
}

/* ─── Theme Stack ──────────────────────────────────── */
.theme-stack {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto 40px;
  max-width: 800px;
  height: 480px;
}
.theme-stack img {
  position: absolute;
  width: 200px;
  border-radius: 28px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.9),
              0 0 0 1px rgba(255,255,255,0.1);
  transition: box-shadow 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
.theme-stack img:nth-child(1) { transform: translateX(-350px) rotate(-15deg); z-index: 1; }
.theme-stack img:nth-child(2) { transform: translateX(-250px) rotate(-10deg); z-index: 2; }
.theme-stack img:nth-child(3) { transform: translateX(-150px) rotate(-5deg); z-index: 3; }
.theme-stack img:nth-child(4) { transform: translateX(-50px) rotate(-2deg); z-index: 4; }
.theme-stack img:nth-child(5) { transform: translateX(50px) rotate(2deg); z-index: 5; }
.theme-stack img:nth-child(6) { transform: translateX(150px) rotate(5deg); z-index: 6; }
.theme-stack img:nth-child(7) { transform: translateX(250px) rotate(10deg); z-index: 7; }
.theme-stack img:nth-child(8) { transform: translateX(350px) rotate(15deg); z-index: 8; }
.theme-stack img:hover {
  box-shadow: 0 30px 80px -20px rgba(255,85,0,0.6),
              0 0 0 3px var(--orange-500);
  z-index: 100;
}

@media (max-width: 1100px) {
  .theme-stack { height: 400px; }
  .theme-stack img { width: 160px; }
  .theme-stack img:nth-child(1) { transform: translateX(-280px) rotate(-15deg); }
  .theme-stack img:nth-child(2) { transform: translateX(-200px) rotate(-10deg); }
  .theme-stack img:nth-child(3) { transform: translateX(-120px) rotate(-5deg); }
  .theme-stack img:nth-child(4) { transform: translateX(-40px) rotate(-2deg); }
  .theme-stack img:nth-child(5) { transform: translateX(40px) rotate(2deg); }
  .theme-stack img:nth-child(6) { transform: translateX(120px) rotate(5deg); }
  .theme-stack img:nth-child(7) { transform: translateX(200px) rotate(10deg); }
  .theme-stack img:nth-child(8) { transform: translateX(280px) rotate(15deg); }
}
@media (max-width: 768px) {
  .theme-stack {
    flex-wrap: wrap;
    height: auto;
    gap: 12px;
    position: static;
    padding: 20px 0;
  }
  .theme-stack img {
    position: static;
    width: calc(50% - 8px);
    transform: none !important;
  }
  .theme-stack img:hover { transform: none !important; }
}

.theme-labels {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.theme-labels span {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

/* ─── Reviews ──────────────────────────────────── */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 968px) {
  .reviews { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .reviews { grid-template-columns: 1fr; }
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
}
.review-card:hover {
  border-color: var(--orange-500);
  transform: translateY(-4px);
}
.review-stars {
  color: #FFD000;
  font-size: 18px;
  letter-spacing: 2px;
}
.review-card p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 18px;
}
.review-author strong {
  display: block;
  font-size: 14px;
}
.review-author span {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

/* ─── Pricing ──────────────────────────────────── */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pricing { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
}
.price-card-premium {
  background: linear-gradient(180deg, rgba(255,85,0,0.08), transparent),
              var(--surface);
  border-color: rgba(255,85,0,0.4);
  box-shadow: 0 20px 60px -20px rgba(255,85,0,0.3);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-300));
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.price-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}
.price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--orange-500);
  line-height: 1;
}
.price span {
  font-size: 18px;
  color: var(--text-3);
  font-weight: 600;
}
.price-header p {
  color: var(--text-3);
  font-size: 13px;
  margin-top: 8px;
}
.price-features {
  list-style: none;
  margin-bottom: 24px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
}
.price-features li i {
  color: var(--orange-500);
  font-size: 18px;
}
.price-features li.muted { color: var(--text-3); }
.price-features li.muted i { color: var(--text-3); }

/* ─── FAQ ──────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  transition: all 0.2s;
}
.faq-item:hover {
  border-color: rgba(255,85,0,0.3);
}
.faq-item summary {
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--orange-500);
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
}

/* ─── Final CTA ──────────────────────────────────── */
.final-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.95) 100%),
              url('bg/cta.jpg') center/cover no-repeat;
  filter: blur(3px);
  transform: scale(1.05);
  z-index: 0;
}
.final-cta .aurora {
  opacity: 0.2;
}
.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.cta-title span { display: block; }
.cta-sub {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.cta-note {
  margin-top: 32px;
  font-size: 12px;
  color: var(--text-3);
  position: relative;
  z-index: 1;
}
.final-cta .hero-ctas {
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ─── Footer ──────────────────────────────────── */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
.footer-brand p {
  margin-top: 16px;
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.7;
}
.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  padding: 6px 0;
  color: var(--text-2);
  font-size: 14px;
}
.footer-links a:hover { color: var(--orange-500); }
.footer-company {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.8;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-company-info { flex: 1; }
.footer-company-social { flex-shrink: 0; }
.footer-company-social h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .footer-company {
    flex-direction: column;
    gap: 20px;
  }
}
.footer-company strong {
  color: var(--text-2);
}
.footer-company .sep {
  margin: 0 8px;
  opacity: 0.5;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-3);
}

.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-2);
  transition: all 0.2s;
}
.social-links a:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: #fff;
  transform: translateY(-2px);
}
