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

:root {
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --gray-950: #0a0a0a;
  --koblue: #6ec1e4;
}

.kokblue-text {
  color: #6ec1e4 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

.font-serif {
  font-family: var(--font-serif);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s ease;
  padding: 0 1.5rem;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.logo-icon {
  height: 1.75rem;
  width: auto;
  transition: filter 0.5s;
}

.navbar:not(.scrolled) .logo-icon {
  filter: brightness(1);
}

.navbar.scrolled .logo-icon {
  filter: brightness(0) saturate(100%);
}

.logo-main {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.5s;
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: color 0.5s;
}

.navbar:not(.scrolled) .logo-main {
  color: #fff;
}

.navbar:not(.scrolled) .logo-sub {
  color: rgba(255, 255, 255, 0.6);
}

.navbar.scrolled .logo-main {
  color: var(--gray-900);
}

.navbar.scrolled .logo-sub {
  color: var(--gray-400);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.8);
}

.navbar:not(.scrolled) .nav-links a:hover {
  color: #fff;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--gray-900);
}

.nav-links .admin-link {
  opacity: 0.5;
}

.nav-links .admin-link:hover {
  opacity: 0.8;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: color 0.5s;
}

.navbar:not(.scrolled) .mobile-toggle svg {
  color: #fff;
}

.navbar.scrolled .mobile-toggle svg {
  color: var(--gray-900);
}

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-100);
  padding: 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

@media (max-width: 768px) {
  .hero-bg img {
    object-position: 65% 40%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.60));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 56rem;
}

.hero-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  color: var(--gray-900);
  padding: 1rem 2.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.hero-cta:hover {
  opacity: 0.9;
}

.hero-cta svg {
  width: 1rem;
  height: 1rem;
}

.scroll-indicator-wrap {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

.scroll-indicator-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.scroll-indicator {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.scroll-indicator svg {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

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

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ─── SECTIONS ─── */
.section {
  padding: 8rem 1.5rem;
}

@media (min-width: 1024px) {
  .section {
    padding: 10rem 3rem;
  }
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.section-title em {
  font-style: italic;
  color: var(--koblue) !important;
}

/* ─── ABOUT ─── */
.about {
  background: #fff;
}

.about-inner {
  max-width: 64rem;
  margin: 0 auto;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 44rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.about-list li::before {
  content: '✓';
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #6ec1e4;
  background: rgba(110, 193, 228, 0.12);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
  line-height: 1;
}

/* ─── POSITIONING ─── */
.positioning {
  background: #fff;
}

.positioning-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.positioning-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 38rem;
  margin: 1rem auto 0;
}

.positioning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 60rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .positioning-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* ─── FEATURES ─── */
.features {
  position: relative;
  overflow: hidden;
}

.features-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  top: -10%;
  will-change: transform;
}

.features-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
}

.la-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0, 0, 0, 0.92);
}

.features-inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.feature-card {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.7s ease;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--gray-900);
  stroke-width: 1.5;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ─── LOCATIONS ─── */
.locations {
  position: relative;
  overflow: hidden;
}

.locations-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 130%;
  top: -15%;
  will-change: transform;
}

.locations-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.locations-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.locations-inner {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
}

.locations .section-label {
  color: rgba(255, 255, 255, 1);
}

.locations .section-title {
  color: #fff;
  margin-bottom: 4rem;
}

.locations .section-title em {
  color: rgba(255, 255, 255, 1);
}

.locations .section-desc {
  color: rgba(255, 255, 255, 1);
  font-size: 1.125rem;
  max-width: 40rem;

  line-height: 1.7;
}

.locations h3 {
  margin-bottom: 1rem
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem;
  }
}

.location-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateX(-1rem);
  transition: all 0.7s ease;
}

.location-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.location-line {
  width: 2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.location-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* ─── COMPARISON ─── */
.comparison {
  background: #f8f8f6;
}

.comparison-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: 4rem;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
  .comparison-table {
    grid-template-columns: 1fr;
  }
}

.comparison-col {
  display: flex;
  flex-direction: column;
}

.comparison-col--old {
  background: #fff;
}

.comparison-col--ko {
  background: #0a0a0a;
}

.comparison-col-header {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-col--ko .comparison-col-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.comparison-col-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-col--old .comparison-col-label {
  color: #9ca3af;
}

.comparison-col--ko .comparison-col-label {
  color: #fff;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.125rem 2rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-col--ko .comparison-item {
  border-bottom-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}

.comparison-item:last-child {
  border-bottom: none;
}

.comparison-item svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.comparison-item--no svg {
  color: #d1d5db;
}

.comparison-item--no {
  color: #9ca3af;
}

.comparison-item--yes svg {
  color: #22c55e;
}

/* ─── GALLERY ─── */
.gallery {
  background: #fafaf9;
}

.gallery-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
  display: block;
}

.gallery-caption {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
  padding: 0 0.25rem;
}

/* ─── HOW IT WORKS SIMPLE ─── */
.hiw-simple {
  background: #fff;
}

.hiw-simple-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.hiw-simple-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.hiw-simple-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.hiw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
}

.hiw-step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #6ec1e4;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hiw-step-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.4;
  max-width: 12rem;
}

.hiw-step-divider {
  width: 2px;
  height: 3rem;
  background: var(--gray-200);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .hiw-simple-steps {
    flex-direction: column;
    gap: 0;
  }

  .hiw-step-divider {
    width: 3rem;
    height: 2px;
  }

  .hiw-step {
    padding: 1.5rem 1rem;
  }
}

/* ─── PARTNER ─── */
.partner {
  position: relative;
  overflow: hidden;
  min-height: 24rem;
  display: flex;
  align-items: center;
}

.partner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  top: -10%;
  will-change: transform;
}

.partner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.partner-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.3) 100%);
}

.partner-inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.partner-inner .section-label {
  color: rgba(255, 255, 255, 0.55);
}

.partner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
}

.partner-title em {
  font-style: italic;
  color: var(--koblue)
}

.partner-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 36rem;
  margin-bottom: 2.5rem;
  margin: 0 auto;
}

.partner-cta {
  display: inline-flex;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  background: #fff;
}

.how-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 768px) {
  .how-steps {
    flex-direction: row;
    align-items: flex-start;
  }
}

.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0 1.5rem;
}

@media (max-width: 767px) {
  .how-step {
    flex-direction: row;
    align-items: flex-start;
    padding: 0 0 3rem;
  }
}

.how-step-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #f0ede8;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .how-step-number {
    font-size: 5rem;
    margin-bottom: 0.5rem;
  }
}

.how-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--gray-900);
}

.how-step-desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.how-step-divider {
  width: 1px;
  background: #e5e5e5;
  flex-shrink: 0;
  align-self: stretch;
  margin: 0.5rem 0;
}

@media (max-width: 767px) {
  .how-step-divider {
    display: none;
  }
}

/* ─── CONTACT ─── */
.contact {
  background: #fff;
}

.contact-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-inner {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.contact-text p {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.1rem !important;
}

.contact-info-value {
  color: var(--gray-900);
  font-size: 0.9375rem;
}

/* ─── FORM STYLES ─── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--gray-900);
  background: rgba(250, 250, 250, 0.5);
  border: 1px solid var(--gray-200);
  outline: none;
  transition: background 0.3s, border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: #fff;
  border-color: var(--gray-400);
}

.form-textarea {
  resize: none;
  min-height: 8rem;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a3a3a3' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gray-900);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary svg {
  width: 1rem;
  height: 1rem;
}

.form-error {
  color: #dc2626;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  background: var(--gray-900);
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  max-width: 24rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast.error {
  background: #dc2626;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-desc {
  opacity: 0.8;
  font-size: 0.8125rem;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--gray-950);
  color: #fff;
  padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
  .footer {
    padding: 4rem 3rem;
  }
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer-logo-icon {
  height: 1.75rem;
  width: auto;
}

.footer-logo-main {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 1s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ADMIN PAGES ─── */
.admin-page {
  min-height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.login-container {
  width: 100%;
  max-width: 24rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: 3rem;
}

.back-link:hover {
  color: var(--gray-600);
}

.back-link svg {
  width: 1rem;
  height: 1rem;
}

.login-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gray-900);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.login-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
}

.login-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.login-subtitle {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

/* ─── DASHBOARD ─── */
.dashboard {
  min-height: 100vh;
  background: rgba(250, 250, 250, 0.5);
}

.dash-header {
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 40;
}

.dash-header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}

@media (min-width: 1024px) {
  .dash-header-inner {
    padding: 0 3rem;
  }
}

.dash-header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.dash-header-left a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-400);
  text-decoration: none;
}

.dash-header-left a:hover {
  color: var(--gray-600);
}

.dash-divider {
  width: 1px;
  height: 1.25rem;
  background: var(--gray-200);
}

.dash-header-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.dash-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dash-user {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.btn-ghost {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  padding: 0.375rem;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.btn-ghost:hover {
  color: var(--gray-600);
}

.btn-ghost svg {
  width: 1rem;
  height: 1rem;
}

.dash-main {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

@media (min-width: 1024px) {
  .dash-main {
    padding: 2.5rem 3rem;
  }
}

.dash-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.dash-count {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0;
}

.btn-export {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-900);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn-export:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.empty-state {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 0.375rem;
  padding: 4rem 1.5rem;
  text-align: center;
}

.empty-state svg {
  width: 3rem;
  height: 3rem;
  color: var(--gray-300);
  margin: 0 auto 1rem;
}

.empty-state p:first-of-type {
  color: var(--gray-500);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.empty-state p:last-of-type {
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* ─── TABLE ─── */
.table-wrap {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 0.375rem;
  overflow-x: auto;
}

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

.table-wrap th {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: left;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.table-wrap td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--gray-50);
  font-size: 0.875rem;
  vertical-align: top;
}

.table-wrap tr:last-child td {
  border-bottom: none;
}

.td-name {
  font-weight: 500;
  color: var(--gray-900);
}

.td-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.td-contact-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--gray-600);
  font-size: 0.8125rem;
}

.td-contact-row svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--gray-400);
  flex-shrink: 0;
}

.td-company {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--gray-600);
  font-size: 0.8125rem;
}

.td-company svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--gray-400);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.td-message {
  max-width: 16rem;
  color: var(--gray-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.td-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--gray-400);
  white-space: nowrap;
}

.td-date svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* ─── MOBILE CARDS ─── */
.mobile-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.submission-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 0.375rem;
  padding: 1.25rem;
}

.submission-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.submission-card-name {
  font-weight: 500;
  color: var(--gray-900);
}

.submission-card-email {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.submission-card-company {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.submission-card-company svg {
  width: 0.875rem;
  height: 0.875rem;
}

.submission-card-message {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.submission-card-date {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}

@media (min-width: 1024px) {
  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }
}

/* ─── LOADING ─── */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 0.375rem;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ─── CALLOUTS ─── */
.callouts {
  background: #0a0a0a;
}

.callouts-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.callouts-header {
  text-align: center;
  margin-bottom: 4rem;
}

.callouts .section-label {
  color: rgba(255, 255, 255, 0.4);
}

.callouts .section-title {
  color: #fff;
}

.callouts .section-title em {
  color: rgba(255, 255, 255, 0.55);
}

.callouts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .callouts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.callout {
  background: #0a0a0a;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.3s ease;
}

.callout:hover {
  background: #111;
}

.callout-value {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}

.callout-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.callout-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.blinking-cursor {
  user-select: none;
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  100% {
    visibility: hidden
  }
}

em {
  color: var(--koblue);
}