/* ============================================
   BUTIKA LANDING — style.css
   Editorial boutique aggregator · 2025
   ============================================ */

:root {
  --cream: #F8F5F0;
  --ink: #0A0A0A;
  --gold: #9B7E5C;
  --gold-light: #C4A882;
  --gold-pale: #F0E8DC;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

::selection {
  background-color: rgba(155, 126, 92, 0.18);
  color: var(--ink);
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: rgba(155,126,92,0.35); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(155,126,92,0.6); }

/* ============================================
   BUTTONS
   ============================================ */

.btn-gold {
  display: inline-block;
  background-color: var(--gold);
  color: var(--cream);
  padding: 0.55rem 1.3rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.22s ease, transform 0.15s ease, box-shadow 0.22s ease;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn-gold:hover {
  background-color: #7e6849;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(155,126,92,0.25);
}

.btn-gold-large {
  display: inline-flex;
  align-items: center;
  background-color: var(--gold);
  color: var(--cream);
  padding: 0.9rem 2.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.22s ease, transform 0.15s ease, box-shadow 0.22s ease;
  text-decoration: none;
}
.btn-gold-large:hover {
  background-color: #7e6849;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155,126,92,0.3);
}

.btn-ghost-large {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.9rem 2.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.15s ease;
  text-decoration: none;
}
.btn-ghost-large:hover {
  background-color: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */

#navbar {
  background-color: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}
#navbar.scrolled {
  box-shadow: 0 1px 0 rgba(10,10,10,0.07), 0 2px 12px rgba(10,10,10,0.04);
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(10,10,10,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--ink); }

/* ============================================
   HERO
   ============================================ */

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 4rem;
}

/* CSS-only editorial background decoration */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-deco-ring-1 {
  position: absolute;
  top: -15%;
  right: -8%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  border: 1px solid rgba(155,126,92,0.1);
}
.hero-deco-ring-2 {
  position: absolute;
  top: 5%;
  right: 3%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(155,126,92,0.07);
}
.hero-deco-line-a {
  position: absolute;
  top: 22%;
  right: 8%;
  width: 240px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(155,126,92,0.18), transparent);
  transform: rotate(-35deg);
}
.hero-deco-line-b {
  position: absolute;
  top: 34%;
  right: 14%;
  width: 160px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(155,126,92,0.12), transparent);
  transform: rotate(-35deg);
}
.hero-deco-dot {
  position: absolute;
  bottom: 25%;
  left: 5%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(155,126,92,0.25);
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 2rem;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(10,10,10,0.55);
  max-width: 380px;
  margin-bottom: 3rem;
}
.hero-sub-en {
  display: block;
  font-size: 0.78rem;
  color: rgba(10,10,10,0.3);
  margin-top: 0.4rem;
  font-style: italic;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.scroll-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(10,10,10,0.28);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.28; transform: scaleY(0.9); }
  50%       { opacity: 0.7;  transform: scaleY(1.1); }
}

/* ============================================
   FADE UP ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUpAnim 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fadeUpAnim {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ============================================
   MARQUEE STRIP
   ============================================ */

.marquee-wrap {
  background-color: var(--ink);
  padding: 0.7rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marqueeRoll 28s linear infinite;
}
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-word {
  font-family: 'Fraunces', serif;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(248,245,240,0.38);
  white-space: nowrap;
}
.marquee-sep {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--gold);
  white-space: nowrap;
}

/* ============================================
   SECTION LABELS
   ============================================ */

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}

/* ============================================
   WHAT IS BUTIKA — PILLARS
   ============================================ */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid rgba(10,10,10,0.08);
}

.pillar {
  padding: 0 3rem 0 0;
  border-right: 1px solid rgba(10,10,10,0.08);
}
.pillar:first-child { padding-left: 0; }
.pillar:last-child  { border-right: none; padding-right: 0; }

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .pillar {
    padding: 2rem 0;
    border-right: none;
    border-bottom: 1px solid rgba(10,10,10,0.08);
  }
  .pillar:last-child { border-bottom: none; padding-bottom: 0; }
}

.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(155,126,92,0.18);
  margin-bottom: 1.25rem;
  display: block;
}
.pillar-line {
  width: 2rem;
  height: 1px;
  background-color: var(--gold);
  margin-bottom: 1.5rem;
}
.pillar-title {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.pillar-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  line-height: 1.8;
  color: rgba(10,10,10,0.55);
}

/* ============================================
   BOUTIQUE OWNERS SECTION (dark)
   ============================================ */

.dark-section {
  background-color: var(--ink);
  color: var(--cream);
}

.benefit-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.benefit-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  line-height: 1;
  color: rgba(155,126,92,0.35);
  min-width: 2rem;
}
.benefit-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}
.benefit-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(248,245,240,0.48);
}

/* Fake dashboard card */
.dashboard-card {
  background: rgba(248,245,240,0.04);
  border: 1px solid rgba(248,245,240,0.1);
  padding: 1.75rem;
  border-radius: 2px;
  max-width: 340px;
}
.dash-header {
  display: flex;
  align-items: center;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(248,245,240,0.07);
  margin-bottom: 1.1rem;
}
.dash-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(155,126,92,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 0.8rem;
  color: var(--gold);
  flex-shrink: 0;
}
.dash-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(248,245,240,0.8);
}
.dash-loc {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: rgba(248,245,240,0.3);
}
.dash-badge {
  margin-left: auto;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: rgba(155,126,92,0.12);
  padding: 0.2rem 0.55rem;
}
.dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.dash-stat {
  padding: 0.85rem;
  background: rgba(248,245,240,0.025);
  border: 1px solid rgba(248,245,240,0.06);
}
.dash-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--cream);
}
.dash-stat-num.gold { color: var(--gold); }
.dash-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: rgba(248,245,240,0.35);
  margin-top: 0.2rem;
}

/* Ghost button in dark section */
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: var(--cream);
  border: 1px solid rgba(248,245,240,0.25);
  padding: 0.9rem 2.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.22s, background-color 0.22s, transform 0.15s;
  text-decoration: none;
}
.btn-ghost-dark:hover {
  border-color: var(--cream);
  background-color: rgba(248,245,240,0.06);
  transform: translateY(-2px);
}

/* ============================================
   END USERS SECTION
   ============================================ */

.feature-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.feature-line {
  width: 1px;
  height: 2.5rem;
  background-color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.feature-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(10,10,10,0.5);
}

/* Phone mockup */
.phone-wrap {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 248px;
  background-color: var(--ink);
  border-radius: 28px;
  border: 6px solid #161616;
  box-shadow:
    0 32px 64px rgba(10,10,10,0.18),
    0 0 0 1px rgba(155,126,92,0.12),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}
.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 4px;
}
.phone-time {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(248,245,240,0.7);
}
.phone-signals {
  font-size: 0.6rem;
  color: rgba(248,245,240,0.4);
}
.phone-app-header {
  padding: 0.6rem 1rem 0.5rem;
  border-bottom: 1px solid rgba(248,245,240,0.07);
}
.phone-logo {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--cream);
}
.phone-body { padding: 0.9rem 0.9rem 1.2rem; }
.phone-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.35);
  margin-bottom: 0.65rem;
}
.boutique-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.boutique-tile {
  height: 86px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.45rem;
}
.boutique-tile.t1 { background: rgba(248,245,240,0.05); }
.boutique-tile.t2 { background: rgba(155,126,92,0.12); }
.boutique-tile.t3 { background: rgba(248,245,240,0.07); }
.boutique-tile.t4 {
  background: transparent;
  border: 1px solid rgba(155,126,92,0.22);
}
.boutique-tile-name {
  font-family: 'Fraunces', serif;
  font-size: 0.65rem;
  color: rgba(248,245,240,0.72);
  line-height: 1.2;
}
.boutique-tile-loc {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  color: rgba(248,245,240,0.3);
}
.boutique-tile-new {
  font-family: 'Fraunces', serif;
  font-size: 0.65rem;
  color: var(--gold);
  margin-bottom: 2px;
}
.saved-strip {
  padding: 0.65rem 0.75rem;
  background: rgba(155,126,92,0.1);
  border: 1px solid rgba(155,126,92,0.2);
  border-radius: 2px;
}
.saved-strip-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.saved-avatars { display: flex; gap: 0.4rem; }
.saved-dot {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(248,245,240,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  color: rgba(248,245,240,0.4);
}

/* ============================================
   VISION / INVESTORS
   ============================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(10,10,10,0.1);
}
.stat-cell {
  padding: 2.5rem 2.5rem 2.5rem;
  border-right: 1px solid rgba(10,10,10,0.1);
  background-color: var(--cream);
  transition: background-color 0.3s;
  cursor: default;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background-color: rgba(155,126,92,0.04); }

.stat-big {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.stat-accent {
  width: 1.5rem;
  height: 1px;
  background-color: var(--gold);
  margin-bottom: 0.9rem;
}
.stat-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(10,10,10,0.55);
}
.stat-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: rgba(10,10,10,0.3);
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(10,10,10,0.1);
    padding: 1.75rem;
  }
  .stat-cell:last-child { border-bottom: none; }
}

.vision-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(10,10,10,0.55);
}

/* ============================================
   BUTIKCAN AI SECTION
   ============================================ */

.bc-chat-wrap {
  display: flex;
  justify-content: center;
}

.bc-chat {
  width: 100%;
  max-width: 400px;
  background: var(--ink);
  border: 1px solid rgba(155,126,92,0.18);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10,10,10,0.12), 0 0 0 1px rgba(10,10,10,0.05);
}

.bc-chat-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(248,245,240,0.07);
  background: rgba(248,245,240,0.02);
}

.bc-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(155,126,92,0.12);
  border: 1px solid rgba(155,126,92,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: var(--gold);
  flex-shrink: 0;
}

.bc-chat-name {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.bc-chat-status {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  color: rgba(155,126,92,0.65);
}

.bc-chat-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 200px;
}

.bc-msg {
  max-width: 80%;
  padding: 0.65rem 0.9rem;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
}

.bc-msg-user {
  align-self: flex-end;
  background: rgba(155,126,92,0.14);
  border: 1px solid rgba(155,126,92,0.22);
  color: rgba(248,245,240,0.85);
}

.bc-msg-ai {
  align-self: flex-start;
  background: rgba(248,245,240,0.05);
  border: 1px solid rgba(248,245,240,0.09);
  color: rgba(248,245,240,0.72);
}

.bc-typing {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.65rem 0.9rem;
  background: rgba(248,245,240,0.05);
  border: 1px solid rgba(248,245,240,0.09);
  width: fit-content;
  border-radius: 2px;
}

.bc-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(155,126,92,0.5);
  animation: bcDot 1.3s ease-in-out infinite;
}

.bc-typing span:nth-child(2) { animation-delay: 0.18s; }
.bc-typing span:nth-child(3) { animation-delay: 0.36s; }

@keyframes bcDot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40%           { opacity: 1;   transform: scale(1.1); }
}

.bc-cards {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bc-card {
  padding: 0.6rem 0.9rem;
  background: rgba(248,245,240,0.03);
  border: 1px solid rgba(248,245,240,0.08);
  border-left: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s;
}

.bc-card:hover {
  background: rgba(155,126,92,0.08);
}

.bc-card-name {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  color: rgba(248,245,240,0.8);
  margin-bottom: 0.1rem;
}

.bc-card-cat {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  color: rgba(248,245,240,0.32);
  letter-spacing: 0.03em;
}

.bc-input-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  border-top: 1px solid rgba(248,245,240,0.07);
  background: rgba(248,245,240,0.02);
}

.bc-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(248,245,240,0.2);
  font-style: italic;
}

.bc-send-btn {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: rgba(155,126,92,0.18);
  border: 1px solid rgba(155,126,92,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.bc-send-btn:hover {
  background: rgba(155,126,92,0.32);
}

/* Chat entry animations */
.bc-anim {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.bc-anim.bc-visible {
  opacity: 1;
  transform: translateY(0);
}

.bc-anim-1 { transition-delay: 0.1s; }
.bc-anim-2 { transition-delay: 0.55s; }
.bc-anim-3 { transition-delay: 1.1s; }
.bc-anim-4 { transition-delay: 1.6s; }

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: var(--ink);
  color: var(--cream);
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  letter-spacing: 0.25em;
  color: var(--cream);
}
.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(248,245,240,0.38);
}
.footer-col-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.28);
  margin-bottom: 1.25rem;
}
.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(248,245,240,0.55);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.7rem;
}
.footer-link:hover { color: var(--cream); }
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(248,245,240,0.25);
}
.footer-legal-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(248,245,240,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-link:hover { color: rgba(248,245,240,0.6); }

/* ============================================
   SECTION DIVIDERS
   ============================================ */

.section-border {
  border-bottom: 1px solid rgba(10,10,10,0.07);
}
.section-border-cream {
  border-bottom: 1px solid rgba(248,245,240,0.07);
}

/* ============================================
   RESPONSIVE LAYOUT HELPERS
   ============================================ */

@media (max-width: 1024px) {
  .pillar {
    padding-right: 2rem;
  }
  .dashboard-card {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-headline {
    font-size: clamp(2.6rem, 11vw, 3.8rem);
  }
  .phone-frame {
    width: 220px;
  }
}

/* ============================================
   BAŞVURU MODALI
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-overlay.active .modal-box {
  transform: translateY(0);
  opacity: 1;
}

.modal-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  max-width: 820px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  border-radius: 2px;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  box-shadow: 0 32px 80px rgba(10,10,10,0.35), 0 0 0 1px rgba(155,126,92,0.15);
}

/* Close button */
.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}
.modal-close span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: rgba(248,245,240,0.6);
  transition: background 0.2s;
}
.modal-close span:first-child { transform: rotate(45deg) translate(0.5px, 0.5px); }
.modal-close span:last-child  { transform: rotate(-45deg) translate(0.5px, -0.5px); }
.modal-close:hover span { background: var(--cream); }

/* Left brand panel */
.modal-left {
  background-color: var(--ink);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.modal-benefit-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold);
  flex-shrink: 0;
}

/* Right form panel */
.modal-right {
  background-color: var(--cream);
  padding: 2.5rem 2.2rem;
  overflow-y: auto;
}

/* Form elements */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.5);
}
.form-input {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10,10,10,0.18);
  padding: 0.55rem 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input::placeholder {
  color: rgba(10,10,10,0.28);
}
.form-input:focus {
  border-bottom-color: var(--gold);
}
.form-input.input-error {
  border-bottom-color: #c0392b;
}
.form-textarea {
  resize: none;
  height: 80px;
  line-height: 1.65;
}
.form-submit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* Spinner */
.submit-spinner {
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(248,245,240,0.4);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 340px;
  padding: 1rem 0;
}
.success-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  animation: successPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes successPop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* Mobile — stack columns */
@media (max-width: 640px) {
  .modal-box {
    grid-template-columns: 1fr;
    max-height: 95vh;
    overflow-y: auto;
  }
  .modal-left {
    padding: 2rem 1.5rem 1.5rem;
  }
  .modal-right {
    padding: 1.75rem 1.5rem;
    overflow-y: visible;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .modal-close span {
    background: rgba(10,10,10,0.5);
  }
}
