@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Authentic Traditional Palette (Ivory, Ink, Gold, Wax Seal Crimson) */
  --bg: #fcfaf5;            /* Warm cream/ivory paper background */
  --bg2: #f5f0e1;           /* Linen paper background */
  --bg3: #eae3d0;           /* Aged ledger parchment */
  --bg4: #ffffff;           /* Pure white cotton paper */

  --border: rgba(30,24,15,0.12);
  --border-bright: #b89543; /* Antique Brass Gold */
  --border-double: 4px double #b89543;

  /* Charcoal ink tones */
  --text: #1b1c1e;          /* Rich charcoal ink black */
  --text2: #43484e;         /* Medium grey ink */
  --text3: #7b8086;         /* Washed light grey ink */

  /* Imperial Navy & Gold leaf accents */
  --accent: #0f2038;        /* Antique imperial navy */
  --accent2: #b89543;       /* Burnished gold leaf */
  --accent2-hover: #9c7c32; /* Deep gold leaf hover */
  --accent3: #851b1b;       /* Crimson wax seal red */
  --accent4: #1c3d31;       /* Vintage dark forest green */

  /* Lead states (semantic vintage colors) */
  --hot: #851b1b;           /* Crimson red */
  --warm: #9e7518;          /* Antique amber gold */
  --cold: #0f2038;          /* Indigo navy */

  --card-bg: #ffffff;
  --glow: rgba(184,149,67,0.06);

  --shadow-sm: 0 1px 3px rgba(30,24,15,0.05), 0 2px 4px rgba(30,24,15,0.03);
  --shadow-md: 0 4px 12px rgba(30,24,15,0.07), 0 1px 3px rgba(30,24,15,0.05);
  --shadow-lg: 0 10px 24px rgba(30,24,15,0.09), 0 2px 6px rgba(30,24,15,0.04);
  --shadow-xl: 0 18px 48px rgba(30,24,15,0.12), 0 4px 12px rgba(30,24,15,0.06);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'EB Garamond', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 1.08rem;
  line-height: 1.65;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.25;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg2);
}
::-webkit-scrollbar-thumb {
  background: var(--accent2);
  border-radius: 0;
}

/* -- DROP CAP FOR EDITORIAL LOOK -- */
.drop-cap::first-letter {
  font-family: 'Cinzel', serif;
  font-size: 3.2rem;
  float: left;
  line-height: 0.8;
  margin: 8px 10px 0 0;
  color: var(--accent3);
  font-weight: 700;
  text-shadow: 1px 1px 0 var(--accent2);
}

/* -- CONTAINER -- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* -- ORNATE PRINTER'S FLEURON DIVIDER -- */
.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-bright) 50%, transparent 100%);
  position: relative;
  margin: 60px auto;
  width: 80%;
  clear: both;
}
.section-divider::after {
  content: "❦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg);
  padding: 0 16px;
  color: var(--accent2);
  font-size: 1.35rem;
}

/* -- NAV -- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(252,250,245,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--accent2);
  box-shadow: 0 2px 16px rgba(30,24,15,0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}
.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(184,149,67,0.18));
}
.logo-wordmark {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1;
  display: flex;
  align-items: center;
}
.logo-wordmark .logo-brand {
  color: var(--accent);
}
.logo-wordmark .logo-ai {
  color: var(--accent2);
}
.logo-dot {
  display: none;
}
.footer-logo .logo-mark {
  width: 32px;
  height: 32px;
}
.footer-logo .logo-wordmark {
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color .2s, border-bottom .2s;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent2);
  border-bottom: 1px solid var(--accent2);
}

.nav-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* -- BUTTONS (Traditional Stamp Style) -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 2px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  box-sizing: border-box;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.25s ease, transform 0.1s ease;
  border: none;
  user-select: none;
}
.btn:active {
  transform: scale(0.97) !important;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-bright);
  color: var(--text2);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(184,149,67,0.06);
  letter-spacing: 0.09em;
}

.btn-primary {
  background: var(--accent2);
  color: #fff;
  border: 1px solid var(--accent2);
  box-shadow: 0 2px 6px rgba(184,149,67,0.2);
}
.btn-primary:hover {
  background: var(--accent2-hover);
  border-color: var(--accent2-hover);
  box-shadow: 0 4px 16px rgba(184,149,67,0.4);
  transform: translateY(-1px);
  letter-spacing: 0.09em;
}

.btn-secondary {
  background: rgba(15,32,56,0.06);
  border: 1px solid rgba(15,32,56,0.18);
  color: var(--accent);
}
.btn-secondary:hover {
  background: rgba(15,32,56,0.12);
  border-color: var(--accent);
  letter-spacing: 0.09em;
}

.btn-accent2 {
  background: var(--accent3);
  color: #fff;
  border: 1px solid var(--accent3);
  box-shadow: 0 2px 6px rgba(133,27,27,0.25);
}
.btn-accent2:hover {
  background: #6f1717;
  border-color: #6f1717;
  box-shadow: 0 4px 16px rgba(133,27,27,0.45);
  transform: translateY(-1px);
  letter-spacing: 0.09em;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  min-height: 48px;
}
.btn-lg:hover {
  letter-spacing: 0.11em;
}

/* -- HERO SECTION -- */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 5% 90px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(184,149,67,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 85% 85%, rgba(15,32,56,0.03) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 15% 75%, rgba(133,27,27,0.02) 0%, transparent 55%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(184,149,67,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,149,67,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 25%, transparent 75%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(184,149,67,0.08);
  border: 1px solid rgba(184,149,67,0.35);
  border-radius: 0;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  animation: fadeUp .6s ease both;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent3);
}

h1.hero-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 900px;
  color: var(--accent);
  position: relative;
  z-index: 1;
  animation: fadeUp .7s .1s ease both;
}
.hero-title .accent {
  color: var(--accent2);
  font-style: italic;
}
.hero-title .accent2 {
  color: var(--accent3);
}

.hero-sub {
  max-width: 650px;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: var(--text2);
  line-height: 1.7;
  margin: 24px auto 40px;
  position: relative;
  z-index: 1;
  animation: fadeUp .7s .2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: fadeUp .7s .3s ease both;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
  animation: fadeUp .7s .4s ease both;
}
.benefit-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: 'Cinzel', serif;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text2);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  border-left: 2px solid var(--accent2);
}
.benefit-pill .check {
  color: var(--accent2);
  font-weight: bold;
}

/* -- VINTAGE DESK LEDGER MOCKUP (DASHBOARD) -- */
.hero-dashboard {
  width: 100%;
  max-width: 1000px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
  animation: fadeUp .8s .5s ease both;
}

.dashboard-frame {
  background: var(--bg2);
  border: 6px double var(--accent2);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 15px 45px rgba(30,24,15,0.25),
    0 0 0 1px rgba(184,149,67,0.15);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.topbar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.topbar-dot:nth-child(1) { background: var(--accent3); }
.topbar-dot:nth-child(2) { background: var(--accent2); }
.topbar-dot:nth-child(3) { background: var(--accent4); }
.topbar-url {
  flex: 1;
  background: rgba(255,255,255,0.4);
  border-radius: 0;
  border: 1px solid var(--border);
  padding: 4px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text2);
  margin: 0 12px;
  text-align: left;
}

.dashboard-content {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 440px;
}

.dash-sidebar {
  background: var(--accent); /* Rich Deep Indigo/Leather Navy spine */
  border-right: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c9ccd0;
  cursor: pointer;
  transition: all .2s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dash-nav-item:hover, .dash-nav-item.active {
  color: var(--bg);
  background: rgba(184,149,67,0.18);
  border-left: 3px solid var(--accent2);
}
.dash-nav-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent2);
}

.dash-main {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat-card {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 16px 14px;
  text-align: left;
  border-top: 3px solid var(--accent2);
  box-shadow: var(--shadow-sm);
}
.stat-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 4px;
}
.stat-value {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}
.stat-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  margin-top: 6px;
  display: inline-block;
}
.badge-green {
  background: rgba(28,140,110,0.1);
  color: var(--accent4);
}
.badge-red {
  background: rgba(133,27,27,0.1);
  color: var(--accent3);
}

.dash-table-wrap {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.dash-table-header {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1fr 1.3fr 1.3fr;
  padding: 12px 18px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dash-table-row {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1fr 1.3fr 1.3fr;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text2);
  transition: background .2s;
  align-items: center;
}
.dash-table-row:last-child {
  border-bottom: none;
}
.dash-table-row:hover {
  background: var(--bg2);
}

.lead-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 700;
}
.score-badge {
  padding: 2px 8px;
  border-radius: 0;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-block;
}
.hot-badge {
  background: rgba(133,27,27,0.12);
  color: var(--accent3);
  border: 1px solid rgba(133,27,27,0.25);
}
.warm-badge {
  background: rgba(158,117,24,0.12);
  color: var(--warm);
  border: 1px solid rgba(158,117,24,0.25);
}
.cold-badge {
  background: rgba(15,32,56,0.12);
  color: var(--accent);
  border: 1px solid rgba(15,32,56,0.25);
}

/* -- SECTION LAYOUTS -- */
section {
  padding: 100px 5%;
}
.page-hero {
  background: var(--bg2);
  padding: 110px 5% 70px;
  text-align: center;
}
.page-hero .label {
  font-family: 'Cinzel', serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  animation: fadeUp .6s ease both;
}
.page-hero p {
  color: var(--text2);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
  animation: fadeUp .6s .1s ease both;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 720px;
}
.section-sub {
  color: var(--text2);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 620px;
  margin-top: 16px;
}
.text-center {
  text-align: center;
}
.text-center .section-title, .text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* -- PROBLEM SECTION -- */
#problem {
  background: var(--bg2);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 60px;
}
.problem-card {
  border-radius: 4px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
}
.without-card {
  background: var(--bg4);
  border-left: 4px solid var(--accent3);
}
.with-card {
  background: var(--bg4);
  border-left: 4px solid var(--accent2);
}
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.card-badge.bad {
  background: rgba(133,27,27,0.08);
  color: var(--accent3);
  border: 1px solid rgba(133,27,27,0.2);
}
.card-badge.good {
  background: rgba(184,149,67,0.1);
  color: var(--accent2);
  border: 1px solid rgba(184,149,67,0.25);
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.6;
}
.prob-icon {
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.prob-icon.bad {
  color: var(--accent3);
}
.prob-icon.good {
  color: var(--accent2);
}

/* -- HOW IT WORKS (STEPS) -- */
#how-it-works {
  background: var(--bg);
}
.steps-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.steps-wrap::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--accent2) 20%, var(--accent2) 80%, transparent 100%);
}
.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step-item:last-child {
  border-bottom: none;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent2);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.step-content {
  padding-top: 8px;
}
.step-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--accent);
}
.step-desc {
  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.65;
}
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.step-tag {
  padding: 4px 12px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text2);
  border-left: 2px solid var(--accent2);
}

/* -- FEATURES GRID -- */
#features {
  background: var(--bg2);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.feature-card {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px 28px;
  transition: all .3s;
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.feature-card:hover {
  border-color: var(--accent2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 46px;
  height: 46px;
  background: rgba(184,149,67,0.08);
  border: 1px solid rgba(184,149,67,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--accent2);
  border-radius: 2px;
}
.feature-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}
.feature-desc {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.6;
}

/* -- AI CALL FLOW -- */
#call-flow {
  background: var(--bg);
}
.flow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.flow-step {
  width: 100%;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent2);
  border-radius: 2px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all .25s;
  box-shadow: var(--shadow-sm);
}
.flow-step:hover {
  border-color: var(--accent2);
  box-shadow: var(--shadow-md);
}
.flow-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent2);
}
.flow-step-text h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}
.flow-step-text p {
  font-size: 0.92rem;
  color: var(--text2);
  margin-top: 4px;
}
.flow-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent2), rgba(184,149,67,0.1));
  margin: 0 auto;
  position: relative;
}
.flow-arrow::after {
  content: '▼';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  color: var(--accent2);
}

/* -- AGENT TRANSFER -- */
#agent-transfer {
  background: var(--bg2);
}
.transfer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.transfer-card {
  border-radius: 2px;
  padding: 36px;
  border: 1px solid var(--border);
  background: var(--bg4);
  box-shadow: var(--shadow-md);
}
.transfer-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
}
.transfer-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.transfer-step:last-child {
  border-bottom: none;
}
.t-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(184,149,67,0.1);
  border: 1px solid rgba(184,149,67,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent2);
  flex-shrink: 0;
  margin-top: 2px;
}
.t-text {
  font-size: 0.98rem;
  color: var(--text2);
  line-height: 1.55;
}
.t-text strong {
  color: var(--text);
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 700;
}

/* -- WHY ZORVO -- */
#why-zorvo {
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.why-card {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.why-card:hover {
  border-color: var(--accent2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}
.why-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
}
.why-desc {
  color: var(--text2);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* -- REAL LIFE SECTION -- */
#real-life {
  background: var(--bg2);
}
.rl-comparison {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-top: 60px;
  align-items: start;
}
.rl-col {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.rl-col.good {
  border-top: 4px solid var(--accent2);
}
.rl-col:not(.good) {
  border-top: 4px solid var(--accent3);
}
.rl-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--text3);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  height: 100%;
  min-height: 150px;
}
.rl-flow-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.rl-flow-item:last-child {
  border-bottom: none;
}
.rl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.rl-dot.bad {
  background: var(--accent3);
}
.rl-dot.good {
  background: var(--accent2);
}
.rl-text {
  font-size: 0.98rem;
  color: var(--text2);
  line-height: 1.55;
}
.rl-arrow {
  font-size: 0.72rem;
  color: var(--accent2);
  display: block;
  margin-top: 6px;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
}

/* -- PRICING -- */
#pricing {
  background: var(--bg);
}
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
.pricing-card {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px 36px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--border);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.setup-card {
  border-top-color: var(--accent3);
}
.pricing-card.monthly-card {
  border-top-color: var(--accent);
}
.pricing-card.featured {
  border: 2px solid var(--accent2);
  border-top: 6px solid var(--accent2);
  box-shadow: 0 8px 32px rgba(184,149,67,0.12);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 14px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
}
.pricing-badge.blue {
  background: rgba(15,32,56,0.08);
  border: 1px solid rgba(15,32,56,0.2);
  color: var(--accent);
}
.pricing-badge.purple {
  background: rgba(133,27,27,0.08);
  border: 1px solid rgba(133,27,27,0.2);
  color: var(--accent3);
}
.pricing-badge.teal {
  background: rgba(184,149,67,0.1);
  border: 1px solid rgba(184,149,67,0.25);
  color: var(--accent2);
}

.pricing-name {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 20px 0 8px;
}
.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text2);
  font-family: 'Cormorant Garamond', serif;
}
.price-number {
  font-family: 'Inter', sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}
.price-period {
  color: var(--text2);
  font-size: 0.9rem;
}
.price-type {
  font-size: 0.8rem;
  color: var(--text3);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
}

.pricing-desc {
  font-size: 0.96rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--text2);
  line-height: 1.45;
}
.pricing-features .check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(184,149,67,0.1);
  border: 1px solid rgba(184,149,67,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--accent2);
  flex-shrink: 0;
  margin-top: 3px;
}
.pricing-features .check-icon.purple-check {
  background: rgba(133,27,27,0.08);
  border-color: rgba(133,27,27,0.25);
  color: var(--accent3);
}

.pricing-divider {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  margin: 20px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-divider::before, .pricing-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.pricing-limits li {
  color: var(--text3);
}
.pricing-note {
  font-size: 0.82rem;
  color: var(--text3);
  text-align: center;
  margin-top: 18px;
  line-height: 1.5;
}

/* -- FAQ -- */
#faq {
  background: var(--bg2);
}
.faq-list {
  max-width: 780px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  transition: background .2s;
  user-select: none;
}
.faq-q:hover {
  background: var(--bg2);
}
.faq-icon {
  font-size: 1.1rem;
  color: var(--accent2);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 28px;
  font-size: 0.98rem;
  color: var(--text2);
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 250px;
  padding: 0 28px 22px;
}

/* -- GUESTBOOK STYLE DEMO/CONTACT FORMS -- */
#demo {
  background: var(--bg);
}
.demo-inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg4);
  border: 6px double var(--accent2);
  border-radius: 4px;
  padding: 60px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.form-full {
  grid-column: 1 / -1;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-family: 'Cinzel', serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Elegant traditional inputs (underlined layout like classic guestbook) */
.form-input, .form-select, .form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-bright);
  border-radius: 0;
  padding: 12px 6px;
  color: var(--text);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
  box-shadow: 0 2px 0 rgba(15,32,56,0.08);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b89543' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 32px;
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
input::placeholder, textarea::placeholder {
  color: var(--text3);
  font-style: italic;
  opacity: 0.85;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 2px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  min-height: 48px;
  box-sizing: border-box;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.25s ease, transform 0.1s ease;
  background: var(--accent2);
  color: #fff;
  border: 1px solid var(--accent2);
  box-shadow: 0 2px 6px rgba(184,149,67,0.2);
  margin-top: 32px;
  width: 100%;
  user-select: none;
}
.form-submit:hover {
  background: var(--accent2-hover);
  border-color: var(--accent2-hover);
  box-shadow: 0 4px 16px rgba(184,149,67,0.4);
  transform: translateY(-1px);
  letter-spacing: 0.09em;
}
.form-submit:active {
  transform: scale(0.97) !important;
}
.form-status {
  margin-top: 16px;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  min-height: 24px;
}

/* -- CONTACT PAGE COMPONENT -- */
.contact-section {
  padding: 80px 5%;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}
.info-intro {
  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.65;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent2);
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
}
.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent2);
}
.info-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--accent);
}
.info-card p {
  font-size: 0.94rem;
  color: var(--text2);
  line-height: 1.5;
  margin: 0 0 8px 0;
}
.info-card a {
  color: var(--accent2);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.info-card a:hover {
  color: var(--accent);
}
.table-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 24px;
}
.form-box {
  background: var(--bg4);
  border: 6px double var(--accent2);
  border-radius: 4px;
  padding: 50px;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.form-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}
.form-box .sub {
  font-size: 0.96rem;
  color: var(--text2);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* -- FOOTER -- */
footer {
  background: var(--bg2);
  border-top: 2px solid var(--accent2);
  padding: 80px 5% 40px;
  clear: both;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand p {
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 300px;
}
.footer-col h5 {
  font-family: 'Cinzel', serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color .2s;
}
.footer-col a:hover {
  color: var(--accent2);
}
.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cinzel', serif;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--text3);
}

/* -- SCREENSHOTS GALLERY (See it in action) -- */
#see-in-action {
  background: var(--bg);
}
.screenshots-intro {
  max-width: 650px;
  margin: 0 auto 56px;
  text-align: center;
}
.screenshots-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 8px 20px;
  border-radius: 0;
  font-family: 'Cinzel', serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border-bright);
  background: var(--bg2);
  color: var(--text2);
  cursor: pointer;
  transition: all .2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--accent2);
  color: #fff;
  border-color: var(--accent2);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ss-card {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.ss-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent2);
}
.ss-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  border-bottom: 1px solid var(--border);
}
.ss-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center 12%;
  height: 260px;
  transition: transform .4s ease;
}
.ss-card:hover .ss-img-wrap img {
  transform: scale(1.04);
}
.ss-featured .ss-img-wrap img {
  height: 100% !important;
  min-height: 340px;
  object-fit: cover;
  object-position: center 10%;
}
.ss-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(15,32,56,0.6) 100%);
  pointer-events: none;
}
.ss-screen-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--accent);
  border: 1px solid var(--accent2);
  border-radius: 0;
  padding: 3px 10px;
  font-family: 'Cinzel', serif;
  font-size: 0.64rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ss-body {
  padding: 22px 24px;
  flex: 1;
}
.ss-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}
.ss-desc {
  font-size: 0.94rem;
  color: var(--text2);
  line-height: 1.55;
}

.ss-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.ss-pill {
  padding: 4px 10px;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(15,32,56,0.06);
  border: 1px solid rgba(15,32,56,0.15);
  color: var(--accent);
}
.ss-pill.green {
  background: rgba(28,140,110,0.06);
  border-color: rgba(28,140,110,0.18);
  color: var(--accent4);
}
.ss-pill.purple {
  background: rgba(133,27,27,0.06);
  border-color: rgba(133,27,27,0.18);
  color: var(--accent3);
}

.ss-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent2);
  background: var(--bg4);
  box-shadow: var(--shadow-md);
  transition: all .3s;
}
.ss-featured:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent2);
}
.ss-featured .ss-img-wrap {
  border-bottom: none;
  border-right: 1px solid var(--border);
  height: 100%;
}
.ss-featured .ss-img-wrap img {
  height: 100%;
  object-fit: cover;
}
.ss-featured .ss-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.ss-featured .ss-title {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

/* -- MOBILE HAMBURGER & DRAWER -- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--border-bright);
  border-radius: 0;
  cursor: pointer;
  padding: 6px;
  transition: border-color .2s;
}
.nav-hamburger:hover {
  border-color: var(--accent);
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text2);
  transition: all .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(252,250,245,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--accent2);
  flex-direction: column;
  padding: 12px 5% 24px;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(30,24,15,0.1);
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity .25s, transform .25s;
}
.mobile-nav-drawer.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-drawer a {
  padding: 14px 8px;
  color: var(--text2);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav-drawer a:last-child {
  border-bottom: none;
}
.mobile-nav-drawer a:hover {
  color: var(--accent2);
}
.mobile-nav-drawer .mobile-nav-cta {
  margin-top: 12px;
  color: var(--accent3) !important;
  font-weight: 700;
  border-bottom: none;
  text-align: center;
  border: 1px solid var(--accent3);
}

/* -- MODALS & ADMIN DASHBOARD OVERLAYS -- */
#modal-overlay {
  display: none;
}
#modal-overlay.open {
  display: flex;
}

#admin-login-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15,20,28,0.75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#admin-login-overlay.open {
  display: flex;
}
.adm-login-box {
  background: var(--bg4);
  border: 6px double var(--accent2);
  border-radius: 4px;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-xl);
}

#admin-dashboard-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15,20,28,0.8);
  backdrop-filter: blur(8px);
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
#admin-dashboard-overlay.open {
  display: flex;
}

.adm-dashboard {
  background: var(--bg);
  border: 6px double var(--accent2);
  border-radius: 4px;
  width: 100%;
  max-width: 1050px;
  box-shadow: var(--shadow-xl);
  margin: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.adm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.adm-close-btn {
  background: transparent;
  border: 1px solid var(--border-bright);
  border-radius: 2px;
  padding: 6px 16px;
  font-family: 'Cinzel', serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent3);
  cursor: pointer;
  transition: all .2s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.adm-close-btn:hover {
  border-color: var(--accent3);
  background: rgba(133,27,27,0.06);
}

.adm-tabs {
  display: flex;
  gap: 6px;
  padding: 12px 24px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.adm-tab {
  padding: 8px 18px;
  border-radius: 2px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text2);
  font-family: 'Cinzel', serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.adm-tab:hover {
  color: var(--accent2);
  background: rgba(184,149,67,0.08);
}
.adm-tab-active {
  background: var(--accent2) !important;
  border-color: var(--accent2) !important;
  color: #fff !important;
}

.adm-body {
  padding: 28px;
  overflow-y: auto;
  max-height: 70vh;
  min-height: 350px;
}

.adm-stat {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent2);
  border-radius: 2px;
  padding: 18px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.adm-stat-n {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}
.adm-stat-l {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: var(--text2);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.adm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.adm-table th {
  text-align: left;
  padding: 12px 14px;
  background: var(--bg2);
  color: var(--accent);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--accent2);
}
.adm-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text2);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
}
.adm-table tr:last-child td {
  border-bottom: none;
}
.adm-table tr:hover td {
  background: var(--bg2);
}

.adm-phone-link {
  color: var(--accent4);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.adm-phone-link:hover {
  text-decoration: underline;
}
.adm-email-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.8rem;
}
.adm-email-link:hover {
  text-decoration: underline;
}

.adm-status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 0;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.adm-status-new {
  background: rgba(28,140,110,0.1);
  color: var(--accent4);
  border: 1px solid rgba(28,140,110,0.22);
}
.adm-status-contacted {
  background: rgba(15,32,56,0.08);
  color: var(--accent);
  border: 1px solid rgba(15,32,56,0.18);
}

.adm-btn {
  padding: 5px 12px;
  border-radius: 2px;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .2s;
  white-space: nowrap;
}
.adm-btn-green {
  background: var(--accent4);
  color: #fff;
}
.adm-btn-green:hover {
  background: #122d24;
}
.adm-btn-red {
  background: var(--accent3);
  color: #fff;
}
.adm-btn-red:hover {
  background: #5f1313;
}

/* contact cards */
.adm-contact-card {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent2);
  border-radius: 2px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transition: box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.adm-contact-card:hover {
  box-shadow: var(--shadow-md);
}
.adm-contact-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  border: 1px solid var(--accent2);
}
.adm-contact-btn {
  padding: 8px 14px;
  border-radius: 2px;
  font-family: 'Cinzel', serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.adm-contact-call {
  background: rgba(28,140,110,0.1);
  color: var(--accent4);
  border: 1px solid rgba(28,140,110,0.2);
}
.adm-contact-call:hover {
  background: rgba(28,140,110,0.2);
}
.adm-contact-email {
  background: rgba(15,32,56,0.06);
  color: var(--accent);
  border: 1px solid rgba(15,32,56,0.15);
}
.adm-contact-email:hover {
  background: rgba(15,32,56,0.12);
}
.adm-contact-wa {
  background: rgba(37,211,102,0.08);
  color: #128c44;
  border: 1px solid rgba(37,211,102,0.2);
}
.adm-contact-wa:hover {
  background: rgba(37,211,102,0.15);
}

/* review cards */
.adm-review-card {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent2);
  border-radius: 2px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.adm-stars {
  display: flex;
  gap: 3px;
  cursor: pointer;
}
.adm-star {
  font-size: 1.3rem;
  color: #e2e5e9;
  transition: color .15s;
}
.adm-star:hover, .adm-star-on {
  color: var(--accent2);
}
.adm-review-input {
  width: 100%;
  min-height: 80px;
  resize: vertical;
  background: var(--bg);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--accent2);
  border-radius: 0;
  padding: 10px 14px;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color .2s;
  outline: none;
}
.adm-review-input:focus {
  border-color: var(--accent);
}

/* -- ANIMATIONS -- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- GLOW BLOB (Sparsely used for traditional warmth) -- */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  background: radial-gradient(circle, rgba(184,149,67,0.05) 0%, transparent 70%);
}

/* -- MEDIA QUERIES -- */
@media(max-width: 900px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 70px 5%; }
  .section-title { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  .section-sub { font-size: 1.05rem; }

  .problem-grid,
  .transfer-grid,
  .why-grid,
  .rl-comparison,
  .pricing-wrap,
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
  .rl-divider { display: none; }

  .dashboard-content { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .dash-table-header, .dash-table-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .dash-table-header span:nth-child(4), .dash-table-header span:nth-child(5),
  .dash-table-row span:nth-child(4), .dash-table-row span:nth-child(5) {
    display: none;
  }

  .steps-wrap::before { left: 20px; }
  .step-item { grid-template-columns: 44px 1fr; gap: 16px; }
  .step-number { width: 44px; height: 44px; font-size: 1rem; }

  .pricing-wrap { max-width: 480px; margin-left: auto; margin-right: auto; }
  .demo-inner { padding: 40px 24px; }
  .form-box { padding: 36px 24px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }

  .ss-featured { grid-template-columns: 1fr; }
  .ss-featured .ss-img-wrap { border-right: none; border-bottom: 1px solid var(--border); }
  .ss-featured .ss-img-wrap img { height: 240px; }
  .ss-featured .ss-body { padding: 24px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media(max-width: 600px) {
  .nav-ctas .btn { display: none; }
  nav { height: 64px; }
  .mobile-nav-drawer { top: 64px; }

  #hero { padding: 100px 5% 60px; }
  h1.hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-sub { font-size: 1.1rem; margin: 18px auto 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .hero-ctas .btn { justify-content: center; }
  .hero-benefits { gap: 8px; }
  .benefit-pill { font-size: 0.72rem; padding: 5px 12px; }

  /* Touch target size optimizations */
  .btn, .form-submit, .adm-btn, .adm-close-btn, .tab-btn {
    min-height: 48px !important;
    padding: 12px 24px !important;
    font-size: 0.85rem !important;
  }
  .btn-lg {
    min-height: 52px !important;
    font-size: 0.92rem !important;
  }

  /* Full-width stretch actions on mobile */
  .pricing-card .btn,
  .form-box .btn,
  .demo-inner .btn,
  .contact-wrap .btn,
  .form-submit,
  .adm-close-btn {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: center !important;
  }

  /* Prevent mobile browser auto-zoom */
  .form-input, .form-select, .form-textarea, .adm-review-input, #settings-owner-email, .adm-review-card textarea {
    font-size: 16px !important;
  }

  .feature-card { padding: 24px 20px; }
  .flow-step { padding: 16px 20px; gap: 12px; }
  .transfer-card { padding: 24px 20px; }
  .why-card { padding: 24px 20px; }
  .rl-col { padding: 24px 20px; }
  .pricing-card { padding: 32px 24px; }
  .price-number { font-size: 2.8rem; }

  .faq-q { font-size: 1.1rem; padding: 18px 20px; }
  .faq-a { font-size: 0.94rem; padding: 0 20px; }
  .faq-item.open .faq-a { padding: 0 20px 18px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-box { padding: 28px 18px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  footer { padding: 60px 5% 32px; }

  .adm-header { flex-direction: column; gap: 10px; align-items: flex-start; }
  .adm-tabs { flex-wrap: wrap; }
  .adm-table { font-size: 0.78rem; }
  .adm-table th:nth-child(4), .adm-table td:nth-child(4),
  .adm-table th:nth-child(5), .adm-table td:nth-child(5) { display: none; }
  .adm-contact-card { flex-direction: column; align-items: flex-start; }
  .adm-body { max-height: 60vh; padding: 16px; }
}

/* -- CUSTOM DEMO VIDEO PLAYER STYLING -- */
@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(184, 149, 67, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(184, 149, 67, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(184, 149, 67, 0); }
}
.pulse-active {
  animation: pulse-ring 1.8s infinite;
}
.video-mockup-player {
  background: radial-gradient(circle at center, #0f2038 0%, #060a12 100%) !important;
}
