/* ===== Sincerely Mary — VA Portfolio (purple/orange theme) ===== */

:root {
  --primary: #5C4DE5;
  --primary-dark: #4A3DCC;
  --primary-light: #7B6BFF;
  --primary-soft: #EFEDFF;
  --accent: #FFA62B;
  --accent-dark: #F08C00;
  --accent-soft: #FFF1DD;
  --dark: #1A1A2E;
  --text: #2D2D3F;
  --muted: #6E6E83;
  --bg: #FFFFFF;
  --bg-soft: #F8F9FC;
  --bg-cream: #FFF8E7;
  --border: #E5E7EB;
  --star: #FFC107;

  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 12px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 12px 32px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.12);
  --shadow-purple: 0 16px 40px rgba(92, 77, 229, 0.25);

  --container: 1200px;
  --transition: 0.25s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--dark); color: #fff; padding: 12px 20px; z-index: 999;
}
.skip-link:focus { left: 0; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 2rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 5rem 0; }
@media (min-width: 768px) { section { padding: 6.5rem 0; } }

.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head .lede { margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  font-family: var(--font-body);
}
.btn-accent {
  background: var(--accent);
  color: var(--dark);
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 166, 43, 0.3);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}
.btn-ghost {
  background: transparent;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  padding: 12px 0;
}
.btn-ghost .play-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.btn-ghost:hover .play-icon { transform: scale(1.08); }
.btn-arrow::after { content: '→'; transition: transform var(--transition); }
.btn-arrow:hover::after { transform: translateX(4px); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.site-header.on-purple {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  position: absolute;
  top: 0; left: 0; right: 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.on-purple .logo { color: #fff; }
.nav-list {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-list a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}
.on-purple .nav-list a { color: rgba(255, 255, 255, 0.85); }
.nav-list a:hover, .nav-list a.active { color: var(--primary); }
.on-purple .nav-list a:hover, .on-purple .nav-list a.active { color: var(--accent); }
.nav-list a.active::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
}
.nav-cta {
  background: var(--accent);
  color: var(--dark) !important;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-cta:hover {
  background: var(--accent-dark);
  color: #fff !important;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.on-purple .nav-toggle span { background: #fff; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 24px;
    gap: 18px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .on-purple .nav-list a { color: var(--text); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ===== Hero (purple) ===== */
.hero {
  position: relative;
  background: var(--primary);
  color: #fff;
  padding: 9rem 0 6rem;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 200px; height: 200px;
  top: 10%; right: 8%;
  background: rgba(255, 255, 255, 0.04);
}
.hero::after {
  width: 320px; height: 320px;
  bottom: -120px; left: -100px;
  background: rgba(255, 255, 255, 0.03);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 3rem; }
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero .lede {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 50ch;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.hero-circle {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, var(--accent-dark) 100%);
  z-index: 1;
}
.hero-circle.small {
  width: 80px; height: 80px;
  top: 15%; right: 10%;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}
.hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 16%;
  right: 0;
  background: #fff;
  color: var(--dark);
  padding: 14px 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  font-weight: 600;
}
.hero-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1;
}
.hero-badge span { font-size: 0.85rem; color: var(--muted); }
.hero-customer {
  position: absolute;
  bottom: -20px;
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  padding: 10px 16px 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}
.avatar-stack img + img { margin-left: -10px; }
.hero-customer span { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

.hero-side-dots {
  position: absolute;
  right: 32px; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}
.hero-side-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.hero-side-dots span:first-child { background: var(--accent); }
@media (max-width: 900px) {
  .hero { padding: 7rem 0 4rem; }
  .hero-circle { width: 280px; height: 280px; }
  .hero-side-dots { display: none; }
  .hero-customer { position: static; margin-top: 1rem; display: inline-flex; }
}

/* Squiggle */
.squiggle {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
}

/* ===== Services / cards row ===== */
.brand-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.brand-mark .swirl {
  width: 60px; height: 60px;
  background: var(--primary-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.service-card:hover, .service-card.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-purple);
}
.service-card .icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: var(--primary-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}
.service-card:hover .icon, .service-card.active .icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--accent);
}
.service-card h3 { margin-bottom: 0.75rem; transition: color var(--transition); }
.service-card:hover h3, .service-card.active h3 { color: #fff; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.service-card:hover p, .service-card.active p { color: rgba(255, 255, 255, 0.85); }

/* ===== About section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.about-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-photo-circle {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, var(--accent-dark) 100%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}
.about-photo-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px dashed var(--primary-light);
  border-radius: 50%;
  opacity: 0.5;
}
.about-photo-circle img {
  width: 95%; height: 95%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}
.about-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 1.5rem;
}
.about-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.about-nav button:hover { background: var(--accent-dark); color: #fff; }

.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-left: 4px solid var(--accent);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.stat-card.purple { border-left-color: var(--primary); background: var(--primary-soft); }
.stat-card.cream { border-left-color: var(--accent); background: var(--accent-soft); }
.stat-card .stat-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.stat-card.cream .stat-icon { color: var(--accent-dark); }
.stat-card strong { display: block; font-family: var(--font-display); font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.stat-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ===== Process ===== */
.process-section {
  background: var(--bg-soft);
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.04) 1px, transparent 0);
  background-size: 24px 24px;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  align-items: start;
}
@media (min-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.process-step {
  text-align: center;
  position: relative;
}
.process-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-purple);
  position: relative;
  z-index: 2;
}
.process-step h4 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.process-step p { color: var(--muted); font-size: 0.95rem; max-width: 28ch; margin: 0 auto; }
.process-arrow {
  display: none;
  position: absolute;
  top: 40px;
  right: -20%;
  width: 40%;
  color: var(--accent);
}
@media (min-width: 900px) {
  .process-step:not(:last-child) .process-arrow { display: block; }
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.testimonial-card .stars {
  color: var(--star);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.testimonial-card blockquote {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong { display: block; color: var(--dark); font-size: 0.95rem; }
.testimonial-author span { color: var(--muted); font-size: 0.8rem; }

/* ===== Portfolio / Filters ===== */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: var(--bg-soft);
  color: var(--muted);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.filter-btn:hover { color: var(--primary); border-color: var(--primary); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.portfolio-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.portfolio-thumb {
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-meta {
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.portfolio-meta strong { display: block; color: var(--dark); font-size: 1rem; margin-bottom: 2px; }
.portfolio-meta span { color: var(--muted); font-size: 0.85rem; }
.portfolio-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.portfolio-item:hover .portfolio-arrow {
  background: var(--accent);
  color: var(--dark);
  transform: rotate(-45deg);
}

/* ===== CTA band (purple with portrait) ===== */
.cta-band {
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 30%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .cta-grid { grid-template-columns: 1.2fr 1fr; gap: 3rem; }
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 50ch; }
.cta-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cta-photo img {
  max-height: 360px;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

/* ===== Newsletter ===== */
.newsletter-section {
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .newsletter-grid { grid-template-columns: 1fr 1.2fr; }
}
.newsletter-form {
  display: flex;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow-sm);
  max-width: 520px;
  border: 1px solid var(--border);
}
.newsletter-form input {
  flex: 1;
  padding: 12px 22px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
}
.newsletter-form button {
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: all var(--transition);
}
.newsletter-form button:hover { background: var(--primary-dark); }

/* ===== Footer ===== */
.site-footer {
  background: #fff;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a { color: var(--text); font-size: 0.95rem; font-weight: 500; }
.footer-nav a:hover { color: var(--primary); }
.footer-bottom {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-bottom span { margin: 0 8px; opacity: 0.5; }

/* ===== Page hero (inner pages) ===== */
.page-hero {
  background: var(--primary);
  color: #fff;
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero .lede { color: rgba(255,255,255,0.85); margin: 0 auto; }
.page-hero::before, .page-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::before {
  width: 240px; height: 240px;
  bottom: -100px; right: -60px;
  background: rgba(255,166,43,0.15);
}
.page-hero::after {
  width: 160px; height: 160px;
  top: 20%; left: -40px;
  background: rgba(255,255,255,0.06);
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.pricing-card.featured {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.02);
  box-shadow: var(--shadow-purple);
}
.pricing-card h3 { margin-bottom: 0.5rem; }
.pricing-card.featured h3 { color: #fff; }
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}
.pricing-card.featured .price { color: var(--accent); }
.pricing-card .price small {
  font-size: 0.85rem; color: var(--muted); font-weight: 400; display: block; margin-top: 4px;
}
.pricing-card.featured .price small { color: rgba(255,255,255,0.8); }
.pricing-card ul {
  text-align: left;
  margin: 1.5rem 0 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.pricing-card.featured ul { border-top-color: rgba(255,255,255,0.2); }
.pricing-card ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}
.pricing-card.featured ul li { color: rgba(255,255,255,0.9); }
.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.pricing-card.featured ul li::before { color: var(--accent); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { color: var(--muted); margin: 0; }

/* ===== About inner page ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 800px;
  margin: 2rem auto 0;
}
@media (min-width: 640px) { .tools-grid { grid-template-columns: repeat(4, 1fr); } }
.tool-tag {
  background: #fff;
  padding: 18px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.tool-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .value-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.value-item { text-align: center; padding: 1rem; }
.value-item .icon-circle {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: var(--primary-soft);
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.value-item h4 { margin-bottom: 0.5rem; }
.value-item p { color: var(--muted); font-size: 0.95rem; }

/* ===== Contact form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.3fr; gap: 4rem; } }
.contact-info h3 { margin-bottom: 1.25rem; }
.contact-item {
  margin-bottom: 1.5rem;
  padding-left: 56px;
  position: relative;
}
.contact-item .icon {
  position: absolute;
  left: 0; top: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item strong { display: block; font-size: 0.95rem; color: var(--dark); margin-bottom: 2px; }
.contact-item span, .contact-item a { color: var(--muted); font-size: 0.95rem; }

.social-links { display: flex; gap: 12px; margin-top: 1rem; }
.social-links a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition);
}
.social-links a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-group label .required { color: var(--accent-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-soft);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--dark);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error {
  color: var(--accent-dark);
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--accent-dark);
}
.form-group.has-error .form-error { display: block; }
.form-success {
  background: var(--primary-soft);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--dark);
  display: none;
}
.form-success.visible { display: block; }
.calendly-embed {
  margin-top: 2rem;
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 2px dashed var(--primary-light);
  color: var(--muted);
}

/* ===== Cases ===== */
.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 768px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
.case-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case-card .industry {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.case-card h3 { margin-bottom: 1rem; }
.case-card .case-section { margin-bottom: 1rem; }
.case-card .case-section strong {
  display: block;
  font-size: 0.85rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.case-card .case-section p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.case-card .outcome {
  background: var(--accent-soft);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1.25rem;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.logo-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}
.logo-bar span {
  background: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--border);
}

/* Utility */
.text-center { text-align: center; }
.bg-soft { background: var(--bg-soft); }
.bg-cream { background: var(--bg-cream); }
