﻿/* =========================================================
   sms.css — B2B SMS Marketing service page styles
   Extends: styles.css (shared Lucidae design system)
   ========================================================= */

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.sms-breadcrumb {
  background: var(--gray-100);
  padding: 0.7rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  margin-top: 72px;
}
.sms-breadcrumb a { color: var(--gold); }
.sms-breadcrumb a:hover { text-decoration: underline; }
.sms-breadcrumb span { margin: 0 0.4rem; opacity: 0.5; }

/* ─── HERO ───────────────────────────────────────────────── */
.sms-hero {
  position: relative;
  background: var(--navy);
  padding: 6rem var(--pad-h) 5rem;
  overflow: hidden;
}
.sms-hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,146,42,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 10% 20%, rgba(30,67,112,0.6) 0%, transparent 60%);
}
.sms-hero__inner {
  position: relative;
  max-width: 800px;
}
.sms-hero__eyebrow { margin-bottom: 1.25rem; }
.sms-hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.sms-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 660px;
  margin-bottom: 2rem;
}
.sms-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn--ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  transition: all var(--base);
}
.btn--ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.sms-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sms-hero__trust span:not(.sms-dot) { padding: 0 0.5rem; }
.sms-dot { opacity: 0.35; }

/* ─── WHAT GOES WRONG ────────────────────────────────────── */
.sms-wrong {
  background: var(--white);
  padding: 5rem var(--pad-h);
}
.sms-wrong__header {
  max-width: var(--max-w);
  margin: 0 auto 3rem;
  text-align: center;
}
.sms-wrong__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.sms-wrong__item {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
}
.sms-wrong__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(200,146,42,0.12);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  letter-spacing: -0.04em;
}
.sms-wrong__item h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.sms-wrong__item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── PROCESS ────────────────────────────────────────────── */
.sms-process {
  background: var(--gray-50);
  padding: 6rem var(--pad-h);
}
.sms-process__header {
  max-width: var(--max-w);
  margin: 0 auto 3.5rem;
  text-align: center;
}
.sms-steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sms-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}
.sms-step:last-of-type { border-bottom: 1px solid var(--border); }
.sms-step__num {
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(200,146,42,0.2);
  line-height: 1;
  padding-top: 0.2rem;
  letter-spacing: -0.04em;
}
.sms-step__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.sms-step__sub {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.85rem;
  font-style: italic;
}
.sms-step__desc {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.sms-step__list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sms-step__list li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.55;
}
.sms-step__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.78rem;
}
.sms-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 0;
  font-size: 0.85rem;
}
.sms-table th {
  text-align: left;
  padding: 0.65rem 1rem;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sms-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.sms-table tr:last-child td { border-bottom: none; }
.sms-table tr:nth-child(even) td { background: rgba(248,250,252,0.7); }
.sms-table-note td {
  background: rgba(200,146,42,0.06) !important;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}
.sms-callout {
  background: rgba(200,146,42,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}
.sms-callout strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.sms-callout ul { list-style: disc; padding-left: 1.25rem; }
.sms-callout ul li { font-size: 0.87rem; color: var(--text); margin-bottom: 0.35rem; line-height: 1.55; }
.sms-note {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: var(--gray-100);
  border-radius: 6px;
}
.sms-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 0.75rem;
}
.sms-label-yes { color: #2a7a2a; font-size: 0.85rem; display: block; margin-bottom: 0.5rem; }
.sms-label-no  { color: #b22222; font-size: 0.85rem; display: block; margin-bottom: 0.5rem; }

/* ─── PRICING ────────────────────────────────────────────── */
.sms-pricing {
  background: var(--navy);
  padding: 6rem var(--pad-h);
}
.sms-pricing__header {
  max-width: var(--max-w);
  margin: 0 auto 3rem;
  text-align: center;
}
.sms-pricing__header .section-title { color: var(--white); }
.sms-pricing__header .section-sub { color: rgba(255,255,255,0.6); margin: 0.85rem auto 0; text-align: center; }
.sms-pricing__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.sms-pricing__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sms-pricing__card--featured {
  background: rgba(200,146,42,0.1);
  border-color: var(--gold);
}
.sms-pricing__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.sms-pricing__badge--gold { color: var(--gold-light); }
.sms-pricing__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.sms-pricing__price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.sms-pricing__time {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sms-pricing__card ul {
  list-style: none;
  flex: 1;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sms-pricing__card ul li {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.sms-pricing__card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.sms-pricing__card .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.btn--outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: all var(--base);
}
.btn--outline:hover { background: var(--gold); color: var(--white); }

/* ─── SMS FAQ override (same section, different bg) ──────── */
.sms-faq { background: var(--gray-50); }

/* ─── NAV DROPDOWN ───────────────────────────────────────── */
.nav__item--dropdown { position: relative; }
.nav__caret {
  font-size: 0.6rem;
  display: inline-block;
  margin-left: 0.2rem;
  transition: transform var(--base);
  vertical-align: middle;
}
.nav__item--dropdown:hover .nav__caret,
.nav__item--dropdown:focus-within .nav__caret { transform: rotate(180deg); }
.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(12,30,53,0.14);
  min-width: 260px;
  padding: 0.5rem 0;
  z-index: 200;
  list-style: none;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown { display: block; }
.nav__dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text);
  transition: color var(--fast), background var(--fast);
  white-space: nowrap;
}
.nav__dropdown li:first-child a {
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.nav__dropdown li a:hover { background: var(--gold-pale); color: var(--gold); }
.nav__dropdown-active { color: var(--gold) !important; font-weight: 600 !important; }
.nav__dropdown-trigger { display: flex; align-items: center; gap: 0.15rem; white-space: nowrap; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .sms-two-col { grid-template-columns: 1fr; }
  .sms-step { grid-template-columns: 56px 1fr; gap: 0 1.25rem; }
  .sms-step__num { font-size: 2rem; }
}
@media (max-width: 768px) {
  .sms-hero__actions { flex-direction: column; align-items: flex-start; }
  .sms-steps .sms-step { grid-template-columns: 1fr; }
  .sms-step__num { font-size: 1.5rem; margin-bottom: 0.5rem; }
  .sms-table { font-size: 0.78rem; }
  .sms-table th, .sms-table td { padding: 0.5rem 0.65rem; }
  .nav__dropdown { left: 0; transform: none; }
}
