/* ═══════════════════════════════════════════════════════════
   Meeting Scheduler — Page-Specific Styles Only
   (Excludes: root vars, base, nav, hamburger, mobile menu, footer, shared responsive)
   ═══════════════════════════════════════════════════════════ */

/* Main Content */
main { padding-top: 64px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(73,53,181,0.45);
  background: rgba(73,53,181,0.12);
  color: #B0A0FF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Hero Section */
.hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(73,53,181,0.22) 0%, transparent 65%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239,62,45,0.12) 0%, transparent 65%);
  bottom: 10%;
  right: 10%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text {
  text-align: left;
}
.hero-text p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 0 2.5rem;
  line-height: 1.7;
}
.hero .cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 0;
}
.hero-anim {
  position: relative;
  width: 100%;
}

/* Demo window & calendar animation */
.tool-visual.has-anim {
  background: transparent;
  border: none;
  overflow: visible;
  width: 100%;
}
.demo-window {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #D0D4E0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.08), 0 20px 48px rgba(0,0,0,0.11);
  overflow: visible;
  width: 100%;
  position: relative;
}
.demo-window-inner {
  border-radius: 14px;
  overflow: hidden;
}
.window-bar {
  background: #F8F9FB;
  border-bottom: 1px solid #D0D4E0;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wdot {
  width:10px;
  height:10px;
  border-radius:50%;
  flex-shrink:0;
}
.wdot.wr { background:#FF5F56; }
.wdot.wy { background:#FFBD2E; }
.wdot.wg { background:#27C93F; }
.window-title {
  font-size:11px;
  color:#9AA0B4;
  margin-left:4px;
  font-weight:600;
  letter-spacing:0.03em;
}
.cal-anim-header {
  padding: 13px 16px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #E4E7EF;
  background: #fff;
}
.cal-nav {
  display:flex;
  gap:3px;
}
.cal-nav button {
  width:26px;
  height:26px;
  border-radius:7px;
  border:1px solid #D0D4E0;
  background:#fff;
  font-size:12px;
  color:#555;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.cal-day  {
  font-size:11px;
  color:#9AA0B4;
  font-weight:600;
}
.cal-date {
  font-size:17px;
  font-weight:800;
  color:#1A1D2E;
  line-height:1.1;
  font-family:'Poppins',sans-serif;
}
.cal-grid {
  display: grid;
  grid-template-columns: 52px 1fr 1fr 1fr;
  position: relative;
}
.col-hdr-empty {
  background:#F8F9FB;
  border-bottom:1px solid #D0D4E0;
  border-right:1px solid #D0D4E0;
}
.col-hdr {
  background:#F8F9FB;
  border-bottom:1px solid #D0D4E0;
  border-left:1px solid #D0D4E0;
  padding:8px;
  font-size:10px;
  font-weight:700;
  color:#3D4461;
  display:flex;
  align-items:center;
  gap:4px;
  line-height:1.3;
}
.info-ic {
  width:14px;
  height:14px;
  border-radius:50%;
  background:#DDE2EF;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:9px;
  color:#6B7594;
  font-weight:700;
  flex-shrink:0;
}
.time-cell {
  border-bottom:1px dashed #E4E7EF;
  border-right:1px solid #D0D4E0;
  padding:8px 0 0 6px;
  font-size:10px;
  color:#9AA0B4;
  font-weight:600;
  height:58px;
  background:#FAFBFC;
}
.grid-cell {
  border-left:1px solid #E4E7EF;
  border-bottom:1px dashed #E4E7EF;
  height:58px;
  padding:5px;
  position:relative;
  transition:background 0.2s;
}
.grid-cell.drop-target {
  background:#EEF3FF;
}
.mtg {
  border-radius:7px;
  padding:5px 8px;
  font-size:10px;
  font-weight:700;
  line-height:1.35;
  position:relative;
  z-index:2;
  transition:opacity 0.2s, transform 0.2s, background 0.5s, border-color 0.5s, color 0.3s;
  font-family:'Inter',sans-serif;
}
.mtg .mt {
  font-weight:500;
  margin-bottom:1px;
  opacity:0.88;
}
.mtg .mn {
  font-weight:700;
}
.mtg.outline-purple {
  background:#fff;
  border:2px solid #7C3AED;
  color:#5B21B6;
}
.mtg.outline-yellow {
  background:#fff;
  border:2px solid #F59E0B;
  color:#92400E;
}
.mtg.outline-blue   {
  background:#fff;
  border:2px solid #2563EB;
  color:#1D4ED8;
}
.mtg.fill-blue      {
  background:#2563EB;
  color:#fff;
  border:2px solid #2563EB;
}
.mtg.fill-green     {
  background:#059669;
  color:#fff;
  border:2px solid #059669;
}
.mtg.fill-orange    {
  background:#EA580C;
  color:#fff;
  border:2px solid #EA580C;
}
.mtg.fill-purple    {
  background:#7C3AED;
  color:#fff;
  border:2px solid #7C3AED;
}
.mtg.fill-yellow    {
  background:#D97706;
  color:#fff;
  border:2px solid #D97706;
}
.mtg.fill-teal      {
  background:#0891B2;
  color:#fff;
  border:2px solid #0891B2;
}
.mtg.fill-blocked   {
  background:#E2E5ED;
  color:#8A94A6;
  border:2px solid #C8CDD9;
}
.mtg.fill-blocked .mt {
  opacity:0.7;
}
.approval-badge {
  display:inline-flex;
  align-items:center;
  gap:3px;
  margin-top:3px;
  font-size:9px;
  font-weight:700;
  letter-spacing:0.03em;
  background:rgba(255,255,255,0.25);
  border-radius:4px;
  padding:1px 5px;
  opacity:0;
  transition:opacity 0.4s;
  white-space:nowrap;
}
.approval-badge.show {
  opacity:1;
}
.snap-flash {
  position:absolute;
  inset:0;
  border-radius:7px;
  background:rgba(37,99,235,0.1);
  border:2px solid rgba(37,99,235,0.4);
  pointer-events:none;
  opacity:0;
  z-index:5;
  transition:opacity 0.35s;
}
.block-flash {
  position:absolute;
  inset:0;
  border-radius:7px;
  background:rgba(200,205,217,0.3);
  border:2px solid #C8CDD9;
  pointer-events:none;
  opacity:0;
  z-index:5;
  transition:opacity 0.35s;
}
.cal-toast {
  position:absolute;
  bottom:-38px;
  left:50%;
  transform:translateX(-50%);
  font-size:11px;
  font-weight:700;
  font-family:'Inter',sans-serif;
  padding:5px 14px;
  border-radius:20px;
  white-space:nowrap;
  opacity:0;
  transition:opacity 0.3s;
  letter-spacing:0.02em;
  pointer-events:none;
}
.cal-toast.green {
  background:#059669;
  color:#fff;
  box-shadow:0 4px 12px rgba(5,150,105,0.4);
}
.cal-toast.purple {
  background:#7C3AED;
  color:#fff;
  box-shadow:0 4px 12px rgba(124,58,237,0.4);
}
.cal-toast.gray  {
  background:#64748B;
  color:#fff;
  box-shadow:0 4px 12px rgba(100,116,139,0.4);
}
.anim-cursor {
  position:fixed;
  pointer-events:none;
  z-index:10000;
  opacity:0;
  transition:opacity 0.25s;
}
.anim-cursor svg {
  filter:drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.drag-clone {
  position:fixed;
  pointer-events:none;
  z-index:9999;
  border-radius:7px;
  padding:5px 8px;
  font-size:10px;
  font-weight:700;
  line-height:1.35;
  opacity:0;
  transition:opacity 0.2s;
  box-shadow:0 10px 28px rgba(0,0,0,0.2),0 0 0 2px rgba(255,255,255,0.5);
  transform:rotate(-2deg) scale(1.05);
  font-family:'Inter',sans-serif;
}

/* How It Works */
.how-it-works {
  background: var(--ink-2);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step {
  position: relative;
  background: rgba(5,5,60,0.9);
  border-radius: var(--rl);
  padding: 2.5rem 1.5rem;
  border: 1px solid transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.step::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--rl);
  padding: 1px;
  background: linear-gradient(160deg, rgba(73,53,181,0.55) 0%, rgba(134,187,216,0.25) 35%, rgba(255,255,255,0.06) 60%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.step p {
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-size: 0.9375rem;
}

/* Step Connectors */
.steps-wrapper {
  position: relative;
}
.steps-wrapper .steps {
  position: relative;
  z-index: 1;
}
.step-connectors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

/* Features */
.features {
  background: #F0EFF4;
  color: var(--ink);
}
.features .section-eyebrow {
  color: var(--purple);
}
.features .feat-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.feat-row:last-child {
  margin-bottom: 0;
}
.feat-row.reverse {
  direction: rtl;
}
.feat-row.reverse > * {
  direction: ltr;
}
.feat-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
}
.feat-text p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.feat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.chip {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  background: rgba(73,53,181,0.1);
  color: var(--purple);
  border: 1px solid rgba(73,53,181,0.2);
}
.feat-browser {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #D0D4E0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.08), 0 20px 48px rgba(0,0,0,0.11);
  overflow: hidden;
}
.feat-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #E4E7EF;
}
.feat-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.feat-browser-bar span:nth-child(1) {
  background: #FF5F57;
}
.feat-browser-bar span:nth-child(2) {
  background: #FEBC2E;
}
.feat-browser-bar span:nth-child(3) {
  background: #28C840;
}
.feat-browser-bar .bar-title {
  margin-left: 4px;
  font-size: 11px;
  color: #9AA0B4;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  position: relative;
  top: -3px;
}
.feat-browser-body {
  min-height: 280px;
  background: #fff;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

/* ── MOCK UI STYLES ── */
.mock-cal {
  width: 100%;
}
.mock-cal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E4E7EF;
  margin-bottom: 12px;
}
.mock-cal-nav {
  display: flex;
  gap: 3px;
}
.mock-cal-nav span {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid #D0D4E0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #888;
  cursor: default;
}
.mock-cal-date {
  font-size: 13px;
  font-weight: 700;
  color: #1A1D2E;
}
.mock-cal-grid {
  display: grid;
  grid-template-columns: 44px 1fr 1fr 1fr;
  gap: 0;
}
.mock-time {
  font-size: 9px;
  color: #9AA0B4;
  font-weight: 600;
  padding: 6px 4px 6px 0;
  text-align: right;
  border-right: 1px solid #E4E7EF;
  height: 44px;
}
.mock-cell {
  height: 44px;
  border-bottom: 1px dashed #EEF0F5;
  border-right: 1px solid #F0F1F5;
  position: relative;
}
.mock-col-hdr {
  font-size: 9px;
  font-weight: 700;
  color: #3D4461;
  padding: 6px 8px;
  border-bottom: 1px solid #E4E7EF;
  background: #F8F9FB;
}
.mock-col-hdr-empty {
  border-bottom: 1px solid #E4E7EF;
  border-right: 1px solid #E4E7EF;
  background: #F8F9FB;
}
.mock-mtg {
  position: absolute;
  border-radius: 5px;
  padding: 3px 6px;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.3;
  left: 3px;
  right: 3px;
  z-index: 2;
}
.mock-mtg .mm-time {
  font-weight: 500;
  opacity: 0.8;
}
.mock-mtg.green {
  background: #059669;
  color: #fff;
}
.mock-mtg.purple {
  background: #7C3AED;
  color: #fff;
}
.mock-mtg.blue {
  background: #2563EB;
  color: #fff;
}
.mock-mtg.orange {
  background: #EA580C;
  color: #fff;
}
.mock-mtg.blocked {
  background: #E2E5ED;
  color: #8A94A6;
}
.mock-mtg.outline-purple {
  background: #fff;
  border: 1.5px solid #7C3AED;
  color: #5B21B6;
}
.mock-conflict {
  position: absolute;
  inset: 2px;
  border: 2px solid #EF4444;
  border-radius: 5px;
  background: rgba(239,68,68,0.08);
  z-index: 3;
}
.mock-conflict-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 8px;
  font-weight: 700;
  color: #EF4444;
  background: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid #EF4444;
  white-space: nowrap;
}

.mock-room-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-room {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #E4E7EF;
  border-radius: 10px;
  background: #FAFBFC;
}
.mock-room-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-room-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
.mock-room-name {
  font-size: 11px;
  font-weight: 700;
  color: #1A1D2E;
}
.mock-room-detail {
  font-size: 9px;
  color: #9AA0B4;
}
.mock-room-tags {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.mock-room-tag {
  font-size: 8px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 100px;
  background: rgba(73,53,181,0.08);
  color: var(--purple);
}

.mock-wizard {
  padding: 4px;
}
.mock-wiz-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
  justify-content: center;
}
.mock-wiz-step {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-wiz-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-wiz-dot.active {
  background: var(--purple);
  color: #fff;
}
.mock-wiz-dot.done {
  background: #059669;
  color: #fff;
}
.mock-wiz-dot.pending {
  background: #E4E7EF;
  color: #9AA0B4;
}
.mock-wiz-label {
  font-size: 9px;
  font-weight: 600;
  color: #555;
}
.mock-wiz-line {
  width: 30px;
  height: 2px;
  background: #E4E7EF;
  margin: 0 4px;
}
.mock-wiz-line.done {
  background: #059669;
}
.mock-wiz-card {
  background: #F8F9FB;
  border: 1px solid #E4E7EF;
  border-radius: 10px;
  padding: 16px;
}
.mock-wiz-card h4 {
  font-size: 11px;
  font-weight: 700;
  color: #1A1D2E;
  margin-bottom: 10px;
}
.mock-wiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mock-wiz-opt {
  border: 1.5px solid #E4E7EF;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  cursor: default;
  transition: all 0.2s;
}
.mock-wiz-opt.selected {
  border-color: var(--purple);
  background: rgba(73,53,181,0.05);
}
.mock-wiz-opt .opt-icon {
  width: 44px;
  height: 32px;
  margin: 0 auto 6px;
}
.mock-wiz-opt .opt-icon svg {
  width: 100%;
  height: 100%;
}
.mock-wiz-opt .opt-label {
  font-size: 9px;
  font-weight: 700;
  color: #1A1D2E;
}
.mock-wiz-opt .opt-detail {
  font-size: 8px;
  color: #9AA0B4;
}

.mock-ml {
  text-align: center;
  padding: 10px;
}
.mock-ml-envelope {
  width: 56px;
  height: 40px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--purple), #7C3AED);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-ml-envelope svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.mock-ml h4 {
  font-size: 13px;
  font-weight: 700;
  color: #1A1D2E;
  margin-bottom: 4px;
}
.mock-ml p {
  font-size: 10px;
  color: #9AA0B4;
  margin-bottom: 14px;
  line-height: 1.5;
}
.mock-ml-btn {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
}
.mock-ml-link {
  margin-top: 10px;
  font-size: 9px;
  color: #9AA0B4;
}
.mock-ml-link span {
  color: var(--purple);
  font-weight: 600;
}

.mock-agenda {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-agenda-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #E4E7EF;
  background: #FAFBFC;
}
.mock-agenda-time {
  font-size: 9px;
  font-weight: 700;
  color: var(--purple);
  white-space: nowrap;
  min-width: 60px;
  padding-top: 2px;
}
.mock-agenda-bar {
  width: 3px;
  border-radius: 2px;
  align-self: stretch;
  flex-shrink: 0;
}
.mock-agenda-bar.purple {
  background: var(--purple);
}
.mock-agenda-bar.green {
  background: #059669;
}
.mock-agenda-bar.blue {
  background: #2563EB;
}
.mock-agenda-bar.orange {
  background: #EA580C;
}
.mock-agenda-info {
  flex: 1;
}
.mock-agenda-name {
  font-size: 10px;
  font-weight: 700;
  color: #1A1D2E;
}
.mock-agenda-room {
  font-size: 9px;
  color: #9AA0B4;
}

.mock-dd {
  position: relative;
}
.mock-dd-ghost {
  position: absolute;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 8px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transform: rotate(-2deg);
  z-index: 10;
  opacity: 0.9;
}
.mock-dd-ghost.blue {
  background: #2563EB;
  color: #fff;
  border: 2px solid #2563EB;
}
.mock-dd-target {
  position: absolute;
  border: 2px dashed #2563EB;
  border-radius: 5px;
  background: rgba(37,99,235,0.06);
  z-index: 5;
}

.mock-docs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-doc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #E4E7EF;
  border-radius: 8px;
  background: #FAFBFC;
}
.mock-doc-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.mock-doc-icon.pdf {
  background: #FEE2E2;
}
.mock-doc-icon.map {
  background: #DBEAFE;
}
.mock-doc-icon.ppt {
  background: #FEF3C7;
}
.mock-doc-name {
  font-size: 10px;
  font-weight: 700;
  color: #1A1D2E;
}
.mock-doc-size {
  font-size: 9px;
  color: #9AA0B4;
}
.mock-doc-dl {
  margin-left: auto;
  font-size: 9px;
  font-weight: 600;
  color: var(--purple);
}

/* Premium Add-Ons */
.premium-addons {
  background: var(--ink-2);
}
.premium-addons > .container > p.subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.addon-card {
  position: relative;
  background: var(--ink);
  border-radius: var(--rl);
  padding: 2rem;
  border: 1px solid transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.addon-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--rl);
  padding: 1px;
  background: linear-gradient(160deg, rgba(73,53,181,0.55) 0%, rgba(134,187,216,0.25) 35%, rgba(255,255,255,0.06) 60%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.addon-card h4 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.75rem;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.addon-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* CTA */
.cta-section {
  background: var(--ink);
  text-align: center;
}
.cta-section p.subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.btn-secondary {
  color: var(--blue);
  font-weight: 600;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-secondary:hover {
  color: var(--white);
}

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Page-Specific Responsive */
@media (max-width: 930px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text p {
    margin: 0 auto 2.5rem;
  }
  .hero .cta-group {
    justify-content: center;
  }
  .hero-anim {
    max-width: 100%;
    margin: 0 auto;
  }
  .feat-row, .feat-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .feat-row .feat-browser {
    order: -1;
  }
}

@media (max-width: 768px) {
  .step-connectors {
    display: none;
  }
  .addon-grid {
    grid-template-columns: 1fr;
  }
  .hero .cta-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .cta-buttons {
    flex-direction: column;
  }
}
