/* ============================================================
   CRONSYS — Premium Landing Page Styles
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --black:    #0A0A0A;
  --black-2:  #0D0D0D;
  --black-3:  #111111;
  --black-4:  #161616;
  --black-5:  #1c1c1c;

  --gold:     #D4AF37;
  --gold-2:   #E5C77E;
  --gold-3:   #F0D97A;
  --gold-dim: rgba(212, 175, 55, 0.12);
  --gold-glow:rgba(212, 175, 55, 0.25);

  --white:    #F5F1E8;
  --white-2:  #E8E4DB;
  --gray:     #888888;
  --gray-2:   #555555;
  --gray-3:   #333333;

  --border:   rgba(212, 175, 55, 0.15);
  --border-2: rgba(255, 255, 255, 0.06);

  --red-dim:  rgba(255, 80, 80, 0.12);
  --red:      #ff6b6b;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;

  --nav-h:   72px;
  --max-w:   1200px;
  --pad:     clamp(1.25rem, 5vw, 2.5rem);

  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }

/* Grain overlay for premium texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
  opacity: 0.018;
  pointer-events: none;
  z-index: 9999;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-glow); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::selection { background: rgba(212, 175, 55, 0.18); }

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.preloader__bar {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.preloader__fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  animation: preload 1.4s var(--ease-expo) forwards;
}
@keyframes preload { to { width: 100%; } }

/* --- Gold section divider --- */
.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 3rem;
  opacity: 0.5;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s ease, background 0.2s, border-color 0.2s, color 0.2s;
  position: relative;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.35);
}
.btn--outline {
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--white-2);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section padding */
section { padding: clamp(5rem, 10vw, 8rem) 0; }

/* Reveal animation target */
.reveal {
  opacity: 0;
  transform: translateY(44px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  flex-shrink: 0;
}
.nav__links {
  display: none;
  align-items: center;
  gap: 2.5rem;
  margin: 0 auto;
}
.nav__links a {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--white-2);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-expo);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
.lang-switcher {
  display: none;
  align-items: center;
  gap: 0.35rem;
}
.lang-btn {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gray);
  transition: color 0.2s;
  padding: 2px 0;
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); }
.lang-sep { color: var(--gray-3); font-size: 0.6875rem; }

.nav__cta { display: none; padding: 0.6rem 1.25rem; font-size: 0.75rem; }

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease-expo), opacity 0.2s;
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav__mobile {
  display: none;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(24px);
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  padding: 2rem var(--pad) 2.5rem;
  border-bottom: 1px solid var(--border);
}
.nav__mobile.open { display: block; }
.nav__mobile li {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-2);
}
.nav__mobile a {
  font-size: 1.0625rem;
  color: var(--white-2);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--gold); }
.lang-switcher--mobile {
  display: flex;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .lang-switcher { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(212, 175, 55, 0.06) 0%, transparent 70%),
    linear-gradient(to bottom, transparent 60%, var(--black) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 6rem;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  align-items: center;
}
.hero__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(16px);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 9vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 1.75rem;
}
.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(48px);
}
.hero__line--accent {
  color: var(--gold);
  font-style: italic;
}
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 440px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(24px);
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(16px);
}
.hero__badge {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--gray);
  border: 1px solid var(--border-2);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}
.hero__3d-slot {
  display: none;
  pointer-events: none;
}
@media (min-width: 960px) { .hero__3d-slot { display: block; } }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  width: 22px;
  height: 38px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-indicator span {
  display: block;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50%       { transform: translateY(14px); opacity: 0.2; }
}

@media (min-width: 960px) {
  .hero__content {
    grid-template-columns: 55% 1fr;
    align-items: center;
  }
  .hero__sub { max-width: none; }
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { background: var(--black-3); }
.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.problem__label {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 2px;
  margin-bottom: 1.75rem;
}
.problem__label--bad {
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid rgba(255, 80, 80, 0.18);
}
.problem__label--good {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--border);
}
.problem__list li {
  padding: 0.875rem 0 0.875rem 1.375rem;
  border-bottom: 1px solid var(--border-2);
  color: var(--gray);
  font-size: 0.9375rem;
  position: relative;
  line-height: 1.5;
}
.problem__list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0.875rem;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
}
.problem__list--good li { color: var(--white-2); }
.problem__list--good li::before { content: '✓'; color: var(--gold); }
.problem__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--gold);
  opacity: 0.35;
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .problem__grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
  }
  .problem__arrow { display: flex; }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.feature-card {
  background: var(--black-4);
  border: 1px solid var(--border-2);
  border-radius: 3px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(212, 175, 55, 0.06);
}
.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.4375rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  color: var(--white);
}
.feature-card__desc {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.feature-card__num {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
@media (min-width: 640px)  { .features__grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--black-3); }
.process__steps {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.process__step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 3rem;
}
.process__connector {
  position: absolute;
  left: 34px;
  top: 3.25rem;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.3) 0%, transparent 100%);
}
.process__step:last-child .process__connector { display: none; }
.process__step:last-child { padding-bottom: 0; }
.process__num {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
}
.process__content h3 {
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--white);
  padding-top: 0.25rem;
}
.process__content p {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================================
   DEMO
   ============================================================ */
.demo-section__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.phone-mockup {
  width: 280px;
  height: 570px;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: 38px;
  padding: 14px;
  background: var(--black-5);
  margin: 0 auto;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(212, 175, 55, 0.06);
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background: rgba(212, 175, 55, 0.18);
  border-radius: 3px;
  z-index: 2;
}
.phone-mockup__screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: var(--black-3);
  position: relative;
}
.phone-mockup__screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: relative;
  z-index: 2;
}
.phone-mockup__loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(160deg, #0f0900 0%, #1a1100 50%, #0a0800 100%);
  transition: opacity 0.5s;
}
.phone-mockup__loading-logo {
  color: var(--gold);
  opacity: 0.9;
}
.phone-mockup__loading-text {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold-2);
  text-transform: uppercase;
}
.phone-mockup__loading-bar {
  width: 80px;
  height: 2px;
  background: rgba(212,175,55,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.phone-mockup__loading-fill {
  height: 100%;
  width: 40%;
  background: var(--gold);
  border-radius: 2px;
  animation: phoneLoad 1.8s ease-in-out infinite;
}
@keyframes phoneLoad {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}
.demo-section__info h3 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}
.demo-section__info p {
  color: var(--gray);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.demo-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.demo-stats li { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.8125rem; color: var(--gray); }
@media (min-width: 900px) { .demo-section__wrapper { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   WHY
   ============================================================ */
.why { background: var(--black-3); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.why__item {
  padding: 2rem;
  border: 1px solid var(--border-2);
  border-radius: 3px;
  background: var(--black-4);
  transition: border-color 0.3s, transform 0.3s;
}
.why__item:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.why__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.why__icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  stroke: var(--gold);
  flex-shrink: 0;
}
.why__item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.why__item p { color: var(--gray); font-size: 0.875rem; line-height: 1.65; }
@media (min-width: 768px) { .why__grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing__coming {
  color: var(--gold);
  opacity: 0.75;
  font-style: italic;
  font-size: 0.9375rem;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.pricing__card {
  background: var(--black-4);
  border: 1px solid var(--border-2);
  border-radius: 3px;
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing__card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.pricing__card--featured {
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(160deg, var(--black-4) 0%, rgba(212,175,55,0.04) 100%);
}
.pricing__card--featured:hover { border-color: rgba(212, 175, 55, 0.5); }
.pricing__popular {
  position: absolute;
  top: -13px;
  right: 2rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 2px;
}
.pricing__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
  display: block;
}
.pricing__badge--gold { color: var(--gold); }
.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.pricing__amount {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}
.pricing__period { font-size: 0.875rem; color: var(--gray); }
.pricing__features {
  margin-bottom: 2rem;
}
.pricing__features li {
  padding: 0.625rem 0 0.625rem 1.25rem;
  border-bottom: 1px solid var(--border-2);
  font-size: 0.9375rem;
  color: var(--white-2);
  position: relative;
}
.pricing__features li:first-child { border-top: 1px solid var(--border-2); }
.pricing__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 0.625rem;
}
@media (min-width: 768px) { .pricing__grid { grid-template-columns: repeat(3, 1fr); } }
.pricing__desc {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  margin-top: -1.25rem;
}
.pricing__currency {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
}
.pricing__panels {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-2);
  border-radius: 3px;
}
.pricing__panel-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.pricing__panel-item--gold .pricing__panel-icon { color: var(--gold); }
.pricing__panel-item--gold strong { color: var(--gold); }
.pricing__panel-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--gray);
}
.pricing__panel-item div {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.pricing__panel-item strong {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white-2);
  letter-spacing: 0.01em;
}
.pricing__panel-item span {
  font-size: 0.6875rem;
  color: var(--gray);
  line-height: 1.4;
}
.pricing__onetime {
  margin-top: 2rem;
  border: 1px solid var(--border-2);
  border-radius: 3px;
  padding: 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  background: var(--black-4);
}
.pricing__onetime-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray);
  font-size: 0.875rem;
  min-width: 180px;
}
.pricing__onetime-icon {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.pricing__onetime-center {
  flex: 1;
  min-width: 200px;
}
.pricing__onetime-center h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.375rem;
}
.pricing__onetime-center p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.5;
}
.pricing__onetime-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 200px;
}
.pricing__onetime-features li {
  font-size: 0.875rem;
  color: var(--white-2);
  padding-left: 1.25rem;
  position: relative;
}
.pricing__onetime-features li::before {
  content: ✓;
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .pricing__onetime { flex-wrap: nowrap; }
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212,175,55,0.07) 0%, transparent 60%),
              var(--black-3);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
  color: var(--white);
}
.contact__sub { color: var(--gray); line-height: 1.7; margin-bottom: 2rem; }
.contact__channels { display: flex; flex-direction: column; gap: 1rem; }
.contact__channel {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--white-2);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.contact__channel:hover { color: var(--gold); }
.contact__channel-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: border-color 0.2s, background 0.2s;
}
.contact__channel:hover .contact__channel-icon {
  border-color: var(--border);
  background: var(--gold-dim);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { position: relative; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-2);
  border-radius: 2px;
  padding: 1.25rem 1rem 0.5rem;
  color: var(--white);
  font-size: 0.9375rem;
  transition: border-color 0.25s, background 0.25s;
  resize: none;
  outline: none;
}
.form-input:focus {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.03);
}
.form-textarea { padding-top: 1.5rem; min-height: 100px; }
.form-label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9375rem;
  color: var(--gray-2);
  pointer-events: none;
  transition: top 0.2s, font-size 0.2s, color 0.2s, transform 0.2s;
}
.form-label--area { top: 1.25rem; transform: none; }
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: 0.4rem;
  transform: none;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.form-textarea:focus ~ .form-label--area,
.form-textarea:not(:placeholder-shown) ~ .form-label--area {
  top: 0.3rem;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.form-submit { margin-top: 0.25rem; }
.form-success {
  display: none;
  text-align: center;
  color: var(--gold);
  font-size: 0.9375rem;
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 2px;
  background: var(--gold-dim);
}
.form-success.show { display: block; }
@media (min-width: 900px) { .contact__inner { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer__brand p { color: var(--gray); font-size: 0.875rem; }
.footer__links h4, .footer__contact h4 {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.25rem;
}
.footer__links ul, .footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__links a, .footer__contact a, .footer__contact li {
  font-size: 0.9375rem;
  color: var(--white-2);
  transition: color 0.2s;
}
.footer__links a:hover, .footer__contact a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-2);
}
.footer__bottom p { font-size: 0.875rem; color: var(--gray); }
.footer__social { display: flex; gap: 1.25rem; }
.footer__social a {
  color: var(--gray);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer__social a:hover { color: var(--gold); }
@media (min-width: 768px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr; } }
