/* ─── DR.Machines · Shared Inner-Page Styles ─── */
/* Used by: products, pricing, experts, story, contact pages */

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 72px 0 64px;
  background: linear-gradient(175deg, #0c1a2e 0%, var(--navy) 60%);
  border-bottom: 1px solid rgba(0,212,255,0.08);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 640px; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--font-display); font-size: 44px; font-weight: 700;
  line-height: 1.1; letter-spacing: -1.2px; color: var(--white); margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--cyan); }
.page-hero p { color: var(--steel); font-size: 16px; line-height: 1.7; max-width: 520px; }
.page-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
@media (max-width: 600px) {
  .page-hero { padding: 52px 0 44px; }
  .page-hero h1 { font-size: 30px; }
}

/* ─── SEARCH BAR ─── */
.search-bar {
  display: flex; align-items: center; gap: 0;
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; max-width: 460px;
  transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: rgba(0,212,255,0.4); }
.search-bar i {
  padding: 0 14px; color: var(--steel-dim); font-size: 14px; flex-shrink: 0;
}
.search-bar input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--white); font-family: var(--font-body); font-size: 14px;
  padding: 12px 14px 12px 0;
}
.search-bar input::placeholder { color: var(--steel-dim); }

/* ─── FILTER TABS ─── */
.filter-bar {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 20px 0 28px;
}
.filter-btn {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--steel); background: var(--navy-mid);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 7px 16px; cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.filter-btn:hover { color: var(--white); border-color: var(--border-hover); }
.filter-btn.active {
  color: var(--cyan); background: var(--cyan-dim); border-color: rgba(0,212,255,0.3);
}

/* ─── PRODUCTS TOOLBAR ─── */
.products-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; padding: 32px 0 8px;
}
.products-count { font-size: 13px; color: var(--steel); }

/* ─── EXPERTISE CARDS (Experts page) ─── */
.expertise-section { padding: 72px 0; }
.expertise-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 40px;
}
.expertise-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; text-align: center;
  cursor: pointer; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.expertise-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--cyan); opacity: 0; transition: opacity 0.2s;
}
.expertise-card:hover {
  border-color: var(--border-hover); transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.expertise-card:hover::after { opacity: 1; }
.expertise-icon {
  width: 52px; height: 52px; border-radius: 12px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: var(--cyan-dim); color: var(--cyan);
}
.expertise-icon.amber { background: var(--amber-dim); color: var(--amber); }
.expertise-icon.green { background: rgba(74,222,128,0.1); color: var(--green); }
.expertise-card h4 {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.expertise-card p { font-size: 12.5px; color: var(--steel); line-height: 1.5; }
@media (max-width: 860px) { .expertise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .expertise-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ─── EXPERT PROFILES ─── */
.profiles-section {
  padding: 72px 0;
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.profiles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 44px;
}
.profile-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.profile-card:hover { border-color: var(--border-hover); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.profile-avatar {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid rgba(0,212,255,0.25); overflow: hidden;
  background: linear-gradient(135deg, #0052a8 0%, #00aadc 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff;
}
.profile-info { flex: 1; }
.profile-info h4 {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 2px;
}
.profile-role { font-size: 12px; color: var(--cyan); margin-bottom: 10px; font-weight: 600; }
.profile-bio { font-size: 13px; color: var(--steel); line-height: 1.6; margin-bottom: 14px; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.profile-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--steel); background: rgba(140,160,184,0.1);
  border: 1px solid rgba(140,160,184,0.15); border-radius: 4px;
  padding: 3px 8px;
}
.profile-tag.cyan { color: var(--cyan); background: var(--cyan-dim); border-color: rgba(0,212,255,0.2); }
@media (max-width: 800px) { .profiles-grid { grid-template-columns: 1fr; } }

/* ─── TRUST SECTION (Experts + Story) ─── */
.trust-section { padding: 72px 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px;
}
.trust-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px;
  transition: border-color 0.2s;
}
.trust-card:hover { border-color: var(--border-hover); }
.trust-card-icon {
  font-size: 28px; margin-bottom: 16px; display: block;
}
.trust-card h4 {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.trust-card p { font-size: 13.5px; color: var(--steel); line-height: 1.65; }
@media (max-width: 720px) { .trust-grid { grid-template-columns: 1fr; } }

/* ─── BECOME EXPERT CTA (Experts page) ─── */
.become-expert-section {
  padding: 72px 0;
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
}
.become-expert-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px;
}
.become-expert-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 14px; padding: 36px;
  transition: border-color 0.2s;
}
.become-expert-card.featured { border-color: rgba(0,212,255,0.3); }
.become-expert-card:hover { border-color: var(--border-hover); }
.become-expert-card.featured:hover { border-color: rgba(0,212,255,0.5); }
.become-expert-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 14px;
}
.become-expert-card p { font-size: 14px; color: var(--steel); line-height: 1.65; margin-bottom: 26px; }
@media (max-width: 700px) { .become-expert-grid { grid-template-columns: 1fr; } }

/* ─── TIMELINE (Story page) ─── */
.timeline-section { padding: 80px 0; }
.timeline {
  position: relative; padding-left: 40px; max-width: 820px; margin: 52px auto 0;
}
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--cyan), rgba(0,212,255,0.05));
}
.timeline-item {
  position: relative; margin-bottom: 48px; padding-left: 32px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: -47px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--cyan);
  box-shadow: 0 0 12px rgba(0,212,255,0.4);
}
.timeline-year {
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  color: var(--cyan); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-item h4 {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.timeline-item p { font-size: 14px; color: var(--steel); line-height: 1.65; max-width: 620px; }

/* ─── FAQ ACCORDION (Pricing page) ─── */
.faq-section { padding: 72px 0; }
.faq-list { margin-top: 44px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 4px; text-align: left;
  color: var(--white); font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--cyan); }
.faq-q-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--steel); transition: transform 0.25s, border-color 0.2s, color 0.2s;
}
.faq-item.open .faq-q-icon {
  transform: rotate(45deg); border-color: var(--cyan); color: var(--cyan);
}
.faq-a {
  overflow: hidden; max-height: 0; transition: max-height 0.3s ease;
}
.faq-a-inner {
  padding: 0 4px 20px; font-size: 14px; color: var(--steel); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ─── COMPARISON TABLE (Pricing page) ─── */
.comparison-section { padding: 72px 0 80px; background: var(--navy-deep); }
.comparison-table-wrap { overflow-x: auto; margin-top: 44px; }
.comparison-table {
  width: 100%; border-collapse: collapse; min-width: 640px;
}
.comparison-table th {
  padding: 14px 20px; text-align: left;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--steel); text-transform: uppercase; letter-spacing: 1.2px;
  border-bottom: 2px solid var(--border);
}
.comparison-table th.featured-col { color: var(--cyan); }
.comparison-table td {
  padding: 13px 20px; font-size: 13.5px; color: var(--white);
  border-bottom: 1px solid rgba(140,160,184,0.08);
}
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
.comparison-table td:first-child { color: var(--steel); }
.comparison-table .check { color: var(--cyan); font-size: 14px; }
.comparison-table .dash { color: var(--steel-dim); }
.comparison-table .amber-check { color: var(--amber); }
.ct-section-row td {
  background: rgba(0,212,255,0.04); font-family: var(--font-display);
  font-size: 11px; font-weight: 700; color: var(--steel); letter-spacing: 1.5px;
  text-transform: uppercase; padding: 10px 20px;
}

/* ─── CONTACT PAGE ─── */
.contact-section { padding: 72px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start;
}
.contact-form-panel h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-field { margin-bottom: 20px; }
.contact-label {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--steel); margin-bottom: 8px;
}
.contact-input, .contact-select, .contact-textarea {
  width: 100%; background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 8px; color: var(--white); font-family: var(--font-body);
  font-size: 14px; padding: 12px 14px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-input:focus, .contact-select:focus, .contact-textarea:focus {
  border-color: rgba(0,212,255,0.5); box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}
.contact-input::placeholder, .contact-textarea::placeholder { color: var(--steel-dim); }
.contact-select { appearance: none; cursor: pointer; }
.contact-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.contact-submit {
  display: inline-block; background: var(--cyan); color: var(--navy);
  border: none; border-radius: 8px; padding: 13px 32px;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.1s; width: 100%;
  margin-top: 4px;
}
.contact-submit:hover { background: #33DDFF; }
.contact-submit:active { transform: scale(0.99); }
.contact-success {
  display: none; background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.3);
  border-radius: 10px; padding: 20px 22px; text-align: center;
}
.contact-success i { color: var(--green); font-size: 28px; margin-bottom: 12px; display: block; }
.contact-success h4 {
  font-family: var(--font-display); font-size: 17px; color: var(--white); margin-bottom: 6px;
}
.contact-success p { font-size: 13.5px; color: var(--steel); }

.contact-info-panel h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 24px;
}
.info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--cyan-dim); color: var(--cyan);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.info-item-text { flex: 1; }
.info-item-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--steel); margin-bottom: 3px; }
.info-item-value { font-size: 14px; color: var(--white); line-height: 1.5; }
.info-item-value a { color: var(--cyan); text-decoration: none; }
.info-item-value a:hover { text-decoration: underline; }

.map-placeholder {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; margin-bottom: 24px;
}
.map-placeholder svg { width: 100%; display: block; }

.hours-table { width: 100%; margin-top: 16px; }
.hours-table td { padding: 6px 0; font-size: 13px; }
.hours-table td:first-child { color: var(--steel); width: 45%; }
.hours-table td:last-child { color: var(--white); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── PAGE CTA STRIP ─── */
.page-cta-strip {
  padding: 64px 0; text-align: center;
  border-top: 1px solid var(--border);
}
.page-cta-strip h2 {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: var(--white); margin-bottom: 12px; letter-spacing: -0.3px;
}
.page-cta-strip p { color: var(--steel); font-size: 15px; margin-bottom: 28px; }
.page-cta-strip .btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── PRICING HERO ─── */
.pricing-hero { padding: 72px 0 52px; }
.pricing-hero .eyebrow { margin-bottom: 16px; }
.pricing-hero h1 {
  font-family: var(--font-display); font-size: 44px; font-weight: 700;
  line-height: 1.1; letter-spacing: -1px; color: var(--white); margin-bottom: 16px;
}
.pricing-hero h1 em { font-style: normal; color: var(--cyan); }
.pricing-hero p { color: var(--steel); font-size: 16px; line-height: 1.7; max-width: 520px; }

.free-banner {
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.25);
  border-radius: 10px; padding: 14px 18px; font-size: 14px; color: var(--steel);
  margin-top: 20px; max-width: 520px; line-height: 1.6;
}
.free-banner strong { color: var(--green); }

/* ─── PLAN GRID & CARDS ─── */
.plan-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 8px;
}
.plan-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px; position: relative;
  display: flex; flex-direction: column;
}
.plan-card.featured {
  border-color: rgba(0,212,255,0.35);
  background: linear-gradient(160deg, rgba(0,212,255,0.06) 0%, var(--navy-mid) 60%);
}
.plan-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--cyan); color: var(--navy-deep);
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
}
.plan-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.plan-price {
  font-family: var(--font-display); font-size: 48px; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: 4px;
}
.plan-price sup { font-size: 22px; font-weight: 600; vertical-align: super; }
.plan-period { font-size: 12px; color: var(--steel); margin-bottom: 20px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--steel); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li i.fa-check { color: var(--green); flex-shrink: 0; }
.plan-features li.muted { opacity: 0.45; }
.plan-features li.muted i { color: var(--steel-dim); }

/* ─── ENTERPRISE SECTION ─── */
.ent-section { margin-bottom: 56px; }
.ent-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px;
}
.ent-feature {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px; display: flex; align-items: flex-start; gap: 14px;
}
.ent-feature-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: var(--cyan-dim); color: var(--cyan);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.ent-feature-icon.amber { background: var(--amber-dim); color: var(--amber); }
.ent-feature-icon.green { background: rgba(74,222,128,0.1); color: var(--green); }
.ent-feature-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.ent-feature-sub { font-size: 11px; color: var(--steel); }

/* ─── PRICE TABLE ─── */
.price-table-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
}
.price-table-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 20px 24px 16px; border-bottom: 1px solid var(--border); gap: 16px; flex-wrap: wrap;
}
.price-table-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); }
.price-table-note-sm { font-size: 11px; color: var(--steel-dim); margin-top: 2px; }
.price-legend { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.price-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--steel); }
.price-legend-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); }
.price-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 560px; }
.price-table thead th {
  padding: 10px 14px; text-align: left; font-family: var(--font-display);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--steel); background: var(--navy-deep); border-bottom: 1px solid var(--border);
}
.price-table tbody td {
  padding: 9px 14px; color: var(--steel); border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.plan-pill {
  display: inline-block; background: var(--navy-deep); border: 1px solid var(--border);
  border-radius: 5px; padding: 2px 8px; font-size: 11px; color: var(--steel); white-space: nowrap;
}
.plan-pill.unlim { border-color: rgba(0,212,255,0.3); color: var(--cyan); background: var(--cyan-dim); }
.row-unlimited td { background: rgba(0,212,255,0.03); }
.highlight { color: var(--cyan) !important; font-weight: 600; }
.th-badge {
  background: var(--amber); color: var(--navy-deep);
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  padding: 2px 6px; border-radius: 4px; margin-left: 4px; vertical-align: middle;
}
.price-table-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px; border-top: 1px solid var(--border);
  background: var(--navy-deep); gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--steel);
}

/* ─── PERKS GRID ─── */
.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.perk-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.perk-icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--cyan-dim); color: var(--cyan);
  display: flex; align-items: center; justify-content: center; font-size: 16px; margin-bottom: 14px;
}
.perk-icon.amber { background: var(--amber-dim); color: var(--amber); }
.perk-card h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.perk-card p { font-size: 13px; color: var(--steel); line-height: 1.6; margin: 0; }

/* ─── STORY HERO ─── */
.story-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  padding: 80px 0 56px; align-items: start;
}
.story-hero .eyebrow { margin-bottom: 18px; }
.story-hero h1 {
  font-family: var(--font-display); font-size: 40px; font-weight: 700;
  line-height: 1.1; letter-spacing: -1px; color: var(--white); margin-bottom: 20px;
}
.story-hero h1 em { font-style: normal; color: var(--cyan); }
.story-hero p { color: var(--steel); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.story-quote {
  background: rgba(0,212,255,0.05); border-left: 3px solid var(--cyan);
  border-radius: 0 8px 8px 0; padding: 14px 18px;
  font-family: var(--font-display); font-size: 15px; color: var(--steel);
  line-height: 1.6; margin: 20px 0;
}
.story-quote em { font-style: italic; color: var(--cyan); }
@media (max-width: 860px) {
  .story-hero { grid-template-columns: 1fr; gap: 40px; padding: 52px 0 40px; }
}

/* ─── EXPERT CARDS ─── */
.expert-card {
  display: flex; align-items: flex-start; gap: 20px;
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px; margin-bottom: 20px;
}
.expert-avatar {
  width: 64px; height: 64px; border-radius: 16px; flex-shrink: 0;
  background: var(--cyan-dim); border: 2px solid rgba(0,212,255,0.3);
  color: var(--cyan); font-family: var(--font-display); font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.expert-info { flex: 1; }
.expert-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.expert-spec { font-size: 13px; color: var(--steel); margin-bottom: 6px; }
.expert-bio { font-size: 13px; color: var(--steel); line-height: 1.65; margin: 10px 0; }
.expert-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.expert-tag {
  background: var(--navy-deep); border: 1px solid var(--border);
  border-radius: 5px; padding: 3px 9px; font-size: 11px; color: var(--steel);
}
.stars { color: var(--cyan); font-size: 14px; }
.review-count { font-size: 12px; color: var(--steel-dim); }

/* ─── ADMIN CARD (review cards) ─── */
.admin-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.stat-num { font-family: var(--font-display); font-weight: 700; color: var(--cyan); }

/* ─── CTA GRID (story/contact) ─── */
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.cta-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px;
}
.cta-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.cta-card p { font-size: 14px; color: var(--steel); line-height: 1.65; margin-bottom: 18px; }
@media (max-width: 680px) {
  .cta-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
  .ent-features { grid-template-columns: 1fr 1fr; }
}

/* ─── APPS PAGE ─── */
.apps-hero { padding: 72px 0 48px; }
.apps-hero .eyebrow { margin-bottom: 12px; }
.apps-hero h1 {
  font-family: var(--font-display); font-size: 44px; font-weight: 700;
  line-height: 1.1; letter-spacing: -1px; color: var(--white); margin-bottom: 16px;
}
.apps-hero p { color: var(--steel); font-size: 16px; line-height: 1.7; max-width: 520px; }
.app-sub { font-size: 13px; color: var(--steel-dim); margin-top: 6px; }
.apps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 60px; }
.app-card {
  background: var(--navy-mid); border: 1px solid var(--border); border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.app-os-icon { font-size: 32px; margin-bottom: 4px; }
.app-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); margin: 0; }
.app-qr {
  width: 100px; height: 100px; background: #fff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #333; text-align: center; padding: 8px; font-family: var(--font-mono);
}
.app-qr-note { font-size: 11px; color: var(--steel-dim); margin-top: 6px; }
.app-store-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-deep); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 16px; text-decoration: none; color: var(--white);
  transition: border-color 0.2s;
}
.app-store-btn:hover { border-color: rgba(0,212,255,0.4); }
.asb-small { font-size: 10px; color: var(--steel); display: block; }
.asb-big { font-family: var(--font-display); font-size: 15px; font-weight: 700; display: block; }

.apps-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 64px; }
.apps-feat {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.apps-feat .feature-icon { margin-bottom: 12px; }
.apps-feat h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.apps-feat p { font-size: 13px; color: var(--steel); line-height: 1.6; margin: 0; }

/* Phone showcase */
.phone-showcase {
  display: grid; grid-template-columns: 1fr 340px; gap: 56px;
  align-items: center; margin-bottom: 72px;
}
.phone-copy h2 { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--white); margin-bottom: 14px; letter-spacing: -0.5px; }
.phone-copy p { color: var(--steel); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.phone-mock-switch { display: flex; gap: 6px; margin-bottom: 20px; flex-wrap: wrap; }
.phone-tab {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 6px; padding: 6px 14px; cursor: pointer; color: var(--steel);
  transition: all 0.15s;
}
.phone-tab.active { background: var(--cyan-dim); border-color: rgba(0,212,255,0.35); color: var(--cyan); }

.phone-frame {
  width: 280px; height: 560px; background: #0a0a14;
  border-radius: 36px; border: 2px solid #222;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6); overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
.phone-notch {
  width: 90px; height: 22px; background: #0a0a14;
  border-radius: 0 0 14px 14px; margin: 0 auto; position: relative; z-index: 10;
}
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 16px 0; font-size: 10px; color: #666; font-family: var(--font-mono);
}
.phone-screen { flex: 1; overflow: hidden; position: relative; background: var(--navy); }
.phone-pane { display: none; height: 100%; flex-direction: column; overflow-y: auto; }
.phone-pane.active { display: flex; }

/* Pane: topbar */
.pv-topbar { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pv-logo { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--cyan); }
.pv-burger { color: var(--steel); font-size: 14px; }
.pv-body { flex: 1; padding: 12px 14px; overflow-y: auto; }
.pv-input {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 8px; padding: 9px 12px; font-size: 11px;
  color: var(--steel); display: flex; align-items: center; gap: 6px; margin-bottom: 14px;
}
.pv-home-tile {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px; margin-bottom: 8px;
}
.pv-home-tile h5 { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--white); margin: 0 0 4px; }
.pv-home-tile p { font-size: 10px; color: var(--steel); margin: 0; }
.pv-recent { font-size: 10px; color: var(--steel-dim); margin-bottom: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.pv-menu-item { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 11px; color: var(--steel); }
.pv-menu-item:last-child { border-bottom: none; }
.pv-lock { font-size: 28px; text-align: center; padding: 16px 0 12px; }
.pv-signin h5 { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--white); text-align: center; margin: 0 0 14px; }
.pv-btn {
  background: var(--cyan); color: var(--navy-deep);
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  border: none; border-radius: 8px; padding: 10px; width: 100%; cursor: pointer; margin-bottom: 8px;
}
.pv-or { text-align: center; font-size: 10px; color: var(--steel-dim); margin: 6px 0; }
.pv-signin-foot { font-size: 10px; color: var(--steel-dim); text-align: center; margin-top: 10px; }
.pv-chat-head { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--white); }
.pv-chat-body { flex: 1; padding: 10px 14px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; }
.pv-msg { max-width: 80%; padding: 8px 10px; border-radius: 10px; font-size: 10px; line-height: 1.5; }
.pv-msg.bot { background: var(--navy-mid); color: var(--steel); align-self: flex-start; border-bottom-left-radius: 2px; }
.pv-msg.user { background: var(--cyan); color: var(--navy-deep); align-self: flex-end; border-bottom-right-radius: 2px; }
.pv-chip-row { display: flex; gap: 4px; flex-wrap: wrap; padding: 6px 14px; }
.pv-chip { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 14px; padding: 4px 10px; font-size: 9px; color: var(--steel); cursor: pointer; white-space: nowrap; }
.pv-chat-input { display: flex; align-items: center; gap: 6px; padding: 8px 10px; border-top: 1px solid rgba(255,255,255,0.06); }
.pv-ci-box { flex: 1; background: var(--navy-mid); border-radius: 8px; padding: 7px 10px; font-size: 10px; color: var(--steel-dim); }
.pv-ci-send { background: var(--cyan); color: var(--navy-deep); border: none; border-radius: 7px; width: 28px; height: 28px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.phone-tabbar { display: flex; border-top: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.4); }
.phone-tab-bar-btn { flex: 1; padding: 8px 4px; text-align: center; font-size: 9px; color: var(--steel-dim); cursor: pointer; transition: color 0.15s; }
.phone-tab-bar-btn.active { color: var(--cyan); }

@media (max-width: 900px) {
  .phone-showcase { grid-template-columns: 1fr; }
  .phone-frame { margin: 0 auto; }
  .apps-features { grid-template-columns: 1fr 1fr; }
}
