:root {
  /* BrandWiz rainbow logo colors */
  --pink: #d94c76;
  --pink-light: #fdd9e3;
  --orange: #d88c38;
  --orange-light: #fde6c8;
  --yellow: #f0c244;
  --yellow-light: #fdf3d0;
  --teal: #4cac87;
  --teal-light: #d4eee0;
  --blue: #4194b2;
  --blue-light: #d4e9f1;
  --purple: #7548a5;
  --purple-light: #e2d6f0;

  /* Neutrals */
  --white: #ffffff;
  --cream: #fffdf9;
  --ink: #1f1d2b;
  --ink-soft: #555262;
  --ink-light: #8a8794;
  --border: rgba(31, 29, 43, 0.08);

  --shadow-sm: 0 2px 8px rgba(31, 29, 43, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 29, 43, 0.08);
  --shadow-lg: 0 20px 50px rgba(31, 29, 43, 0.1);
  --shadow-pink: 0 12px 32px rgba(217, 76, 118, 0.25);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  background: rgba(255, 253, 249, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo {
  display: inline-block;
  height: 60px;
  transition: transform 0.2s;
}
.logo img { height: 100%; width: auto; display: block; }
.logo:hover { transform: scale(1.03); }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 600; color: var(--ink-soft); transition: color 0.2s; }
.hero-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 2px solid var(--pink);
  color: var(--ink);
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.25rem;
  text-decoration: none;
  transition: all 0.2s;
  font-variant-numeric: tabular-nums;
}
.hero-phone-cta:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 76, 118, 0.3);
}
.hero-phone-cta strong { color: inherit; }
.nav-links a:hover { color: var(--pink); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover {
  background: var(--pink) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-pink);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--cream); padding: 2rem; box-shadow: var(--shadow-md);
  flex-direction: column; gap: 1.5rem; border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; font-weight: 600; color: var(--ink); }

@media (max-width: 900px) { .nav-links { display: none; } .hamburger { display: flex; } }

/* ─── HERO ─── */
.hero { padding: 8rem 2rem 5rem; position: relative; overflow: hidden; }

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.shape { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; }
.shape-pink { width: 320px; height: 320px; background: var(--pink); top: 10%; right: 5%; animation: drift 20s ease-in-out infinite; }
.shape-orange { width: 280px; height: 280px; background: var(--orange); top: 50%; right: 15%; animation: drift 25s ease-in-out infinite -5s; }
.shape-teal { width: 360px; height: 360px; background: var(--teal); bottom: -10%; left: 10%; animation: drift 22s ease-in-out infinite -10s; }
.shape-purple { width: 240px; height: 240px; background: var(--purple); top: 20%; left: -5%; animation: drift 28s ease-in-out infinite -15s; }
.shape-yellow { width: 200px; height: 200px; background: var(--yellow); top: 60%; left: 30%; animation: drift 18s ease-in-out infinite -7s; opacity: 0.25; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-inner {
  max-width: 1280px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center;
}
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 3rem; } .hero { padding: 7rem 1.25rem 3rem; } }

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink); padding: 0.5rem 1rem;
  border-radius: 100px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 1.5rem; box-shadow: var(--shadow-sm);
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.highlight-pink, .highlight-teal, .highlight-yellow {
  position: relative; display: inline-block;
  padding: 0 0.2em;
}
.highlight-pink { background: linear-gradient(180deg, transparent 60%, var(--pink-light) 60%); }
.highlight-teal { background: linear-gradient(180deg, transparent 60%, var(--teal-light) 60%); }
.highlight-yellow { background: linear-gradient(180deg, transparent 60%, var(--yellow-light) 60%); color: var(--cream); }
.highlight-yellow { background: linear-gradient(180deg, transparent 65%, rgba(240, 194, 68, 0.6) 65%); }

.hero p { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 2rem; max-width: 540px; }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  background: var(--ink); color: var(--cream);
  padding: 1rem 2rem; border-radius: 100px;
  font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s; border: none; cursor: pointer;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--pink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: var(--yellow); color: var(--ink); }

.btn-secondary {
  background: var(--white); color: var(--ink);
  padding: 1rem 2rem; border-radius: 100px;
  font-weight: 700; font-size: 1rem;
  border: 2px solid var(--ink); transition: all 0.3s;
  cursor: pointer; display: inline-block;
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

/* Hero kanban-style cards */
.hero-visual { position: relative; height: 520px; }
.kanban-card {
  position: absolute; background: var(--white);
  border-radius: var(--radius-md); padding: 1.25rem;
  box-shadow: var(--shadow-md);
  width: 280px;
  transition: transform 0.3s;
}
.kanban-card:hover { transform: translateY(-4px) rotate(0deg) !important; box-shadow: var(--shadow-lg); }

.kanban-1 { top: 0; right: 5%; transform: rotate(-2deg); animation: float-card 6s ease-in-out infinite; }
.kanban-2 { top: 22%; left: 0; transform: rotate(1.5deg); animation: float-card 6s ease-in-out infinite -1.5s; }
.kanban-3 { top: 50%; right: 0; transform: rotate(-1deg); animation: float-card 6s ease-in-out infinite -3s; }
.kanban-4 { bottom: 0; left: 8%; transform: rotate(2deg); animation: float-card 6s ease-in-out infinite -4.5s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
}

.kanban-1 { --r: -2deg; }
.kanban-2 { --r: 1.5deg; }
.kanban-3 { --r: -1deg; }
.kanban-4 { --r: 2deg; }

.kanban-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem; border-radius: 6px;
  margin-bottom: 0.6rem;
}
.tag-pink { background: var(--pink-light); color: var(--pink); }
.tag-orange { background: var(--orange-light); color: var(--orange); }
.tag-teal { background: var(--teal-light); color: var(--teal); }
.tag-purple { background: var(--purple-light); color: var(--purple); }
.tag-blue { background: var(--blue-light); color: var(--blue); }
.tag-yellow { background: var(--yellow-light); color: #b89020; }

.kanban-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.kanban-meta { display: flex; align-items: center; justify-content: space-between; }
.status { font-size: 0.8rem; font-weight: 600; padding: 0.25rem 0.6rem; border-radius: 6px; }
.status-done { background: var(--teal-light); color: var(--teal); }
.status-progress { background: var(--orange-light); color: var(--orange); }

@media (max-width: 900px) { .hero-visual { height: 480px; } .kanban-card { width: 240px; } }
@media (max-width: 500px) { .kanban-card { width: 220px; padding: 1rem; } }

/* ─── STRIP ─── */
.strip-section {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-label { font-size: 0.8rem; font-weight: 600; text-align: center; color: var(--ink-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.strip-row { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.strip-row span { font-weight: 700; color: var(--ink); font-size: 1rem; }
.dot-sep { color: var(--pink) !important; font-size: 0.6rem !important; }

/* ─── SECTIONS ─── */
section { padding: 5rem 2rem; position: relative; }
.container { max-width: 1280px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.45rem 1rem; border-radius: 100px;
  margin-bottom: 1rem;
}
.tag-pink-bg { background: var(--pink-light); color: var(--pink); }
.tag-teal-bg { background: var(--teal-light); color: var(--teal); }
.tag-purple-bg { background: var(--purple-light); color: var(--purple); }
.tag-orange-bg { background: var(--orange-light); color: var(--orange); }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1rem;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--pink); font-weight: 600; }
.section-subtitle { font-size: 1.1rem; color: var(--ink-soft); max-width: 600px; margin: 0 auto; }

/* Page hero (smaller for inner pages) */
.page-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative; overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.page-hero h1 em { font-style: italic; color: var(--pink); font-weight: 600; }
.page-hero p { font-size: 1.15rem; color: var(--ink-soft); max-width: 640px; margin: 0 auto; }

/* ─── SERVICES GRID ─── */
.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--white); padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
}
.card-pink::before { background: var(--pink); }
.card-orange::before { background: var(--orange); }
.card-yellow::before { background: var(--yellow); }
.card-teal::before { background: var(--teal); }
.card-blue::before { background: var(--blue); }
.card-purple::before { background: var(--purple); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-pink:hover { border-color: var(--pink); }
.card-orange:hover { border-color: var(--orange); }
.card-yellow:hover { border-color: var(--yellow); }
.card-teal:hover { border-color: var(--teal); }
.card-blue:hover { border-color: var(--blue); }
.card-purple:hover { border-color: var(--purple); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 1.25rem;
  background: var(--cream);
}
.card-pink .service-icon { background: var(--pink-light); }
.card-orange .service-icon { background: var(--orange-light); }
.card-yellow .service-icon { background: var(--yellow-light); }
.card-teal .service-icon { background: var(--teal-light); }
.card-blue .service-icon { background: var(--blue-light); }
.card-purple .service-icon { background: var(--purple-light); }

.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; }

/* ─── WHY SECTION ─── */
.why-section {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--orange-light) 50%, var(--yellow-light) 100%);
  padding: 6rem 2rem;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1280px; margin: 0 auto; }
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.why-section .section-tag { margin-bottom: 1rem; }
.why-section .section-title { text-align: left; margin-bottom: 1.5rem; }
.why-lead { font-size: 1.15rem; color: var(--ink); margin-bottom: 1rem; font-weight: 500; }
.why-sub { color: var(--ink-soft); font-size: 1rem; }

.stat-block { display: flex; flex-direction: column; gap: 1rem; }
.stat {
  background: var(--white);
  padding: 1.75rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 1.25rem;
  border-left: 6px solid;
}
.stat-pink { border-left-color: var(--pink); }
.stat-orange { border-left-color: var(--orange); }
.stat-teal { border-left-color: var(--teal); }

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.75rem; font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-pink .stat-num { color: var(--pink); }
.stat-orange .stat-num { color: var(--orange); }
.stat-teal .stat-num { color: var(--teal); }

.stat-label { font-size: 0.95rem; color: var(--ink); font-weight: 600; flex: 1; }

/* ─── OUR STORY ─── */
.story-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}
.story-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(76, 172, 135, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.story-section::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(217, 76, 118, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.story-container {
  max-width: 1080px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: center;
  text-align: left;
}
.story-tag-wrap { margin-bottom: 1.25rem; text-align: left; }
.story-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--ink);
}
.story-headline em {
  color: var(--pink);
  font-weight: 500;
  font-style: italic;
}
.story-body {
  text-align: left;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.story-body p { margin-bottom: 1.1rem; }
.story-pullquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  padding: 1.25rem 0 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem !important;
  letter-spacing: -0.01em;
}
.story-signature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin-top: 1rem;
}
.story-signature-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  font-style: italic;
}
.story-signature-role {
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 600px) {
  .story-section { padding: 3.5rem 1.5rem; }
}

/* Portrait photo for founder section */
.portrait-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  justify-self: end;
}
.portrait-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--pink), var(--orange), var(--yellow), var(--teal), var(--blue), var(--purple), var(--pink));
  opacity: 0.3;
  z-index: 0;
  filter: blur(12px);
}
.founder-portrait {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile: collapse 2-col to single column with photo on top */
@media (max-width: 800px) {
  .story-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .story-tag-wrap { text-align: center; }
  .story-pullquote { text-align: center; }
  .story-signature { align-items: center; }
  .portrait-wrap { margin: 0 auto; order: -1; justify-self: center; }
}

/* ─── PRINT PAGE ─── */
.print-page-section { padding: 4rem 5%; background: var(--white); }.print-page-section .inner { max-width: 1100px; margin: 0 auto; }
.print-page-section .sec-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--pink);
  margin-bottom: 0.6rem; display: block;
}
.print-page-section .sec-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500; color: var(--ink);
  margin-bottom: 0.5rem; letter-spacing: -0.02em; line-height: 1.2;
}
.print-page-section .sec-title em {
  font-style: italic; color: var(--pink); font-weight: 500;
}

/* Products grid */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 2.5rem;
}
.product-card {
  background: var(--cream); border: 2px solid var(--border);
  border-radius: var(--radius-md); padding: 1.5rem;
  cursor: pointer; transition: all 0.25s; position: relative; user-select: none;
}
.product-card:hover {
  border-color: var(--pink); transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(31, 29, 43, 0.08);
}
.product-card.selected {
  border-color: var(--pink); background: var(--pink-light);
}
.check-badge {
  display: none; position: absolute; top: 12px; right: 12px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--pink); align-items: center; justify-content: center;
}
.check-badge svg { width: 12px; height: 12px; }
.product-card.selected .check-badge { display: flex; }
.product-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.product-card h3 {
  font-family: 'Fraunces', Georgia, serif; font-size: 1.05rem;
  font-weight: 700; color: var(--ink); margin-bottom: 0.25rem;
}
.product-card p {
  font-size: 0.85rem; color: var(--ink-soft); line-height: 1.55;
}

.selection-summary {
  display: none; margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--pink-light), var(--orange-light));
  border: 1px solid rgba(217, 76, 118, 0.2);
  border-radius: var(--radius-md); padding: 1rem 1.25rem;
}
.selection-summary.show {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.selection-summary p {
  font-size: 0.92rem; color: var(--ink); font-weight: 700; margin: 0;
}
.selection-summary span {
  font-size: 0.82rem; color: var(--ink-soft);
}
.scroll-to-form {
  background: var(--ink); color: var(--cream);
  padding: 0.55rem 1.25rem; border-radius: 100px; border: none;
  cursor: pointer; font-size: 0.82rem; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif; transition: transform 0.2s;
}
.scroll-to-form:hover { transform: translateY(-1px); }

/* Form */
.print-form-section { padding: 4rem 5%; background: var(--cream); }
.form-wrap { max-width: 800px; margin: 0 auto; }
.form-intro-title {
  font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500; color: var(--ink); margin-bottom: 0.4rem; letter-spacing: -0.02em;
}
.form-intro-title em {
  font-style: italic; color: var(--pink); font-weight: 500;
}
.form-intro-sub {
  font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7;
  margin-bottom: 2rem;
}
.form-intro-sub a { color: var(--pink); font-weight: 600; }

.pform { display: flex; flex-direction: column; gap: 1.1rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; }
.fg label {
  font-size: 0.82rem; font-weight: 700; color: var(--ink);
}
.fg input, .fg select, .fg textarea {
  padding: 0.85rem 1rem; border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem;
  color: var(--ink); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--pink); box-shadow: 0 0 0 3px rgba(217, 76, 118, 0.1);
}
.fg textarea { resize: vertical; min-height: 90px; }
.fg select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555262' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}

.specs-container { display: flex; flex-direction: column; gap: 1.5rem; }
.no-products-msg {
  text-align: center; padding: 2rem; background: var(--white);
  border: 2px dashed var(--border); border-radius: var(--radius-md);
  color: var(--ink-soft); font-size: 0.92rem;
}
.spec-block {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}
.spec-block-header {
  display: flex; align-items: center; gap: 12px;
  padding: 1.1rem 1.5rem; background: var(--ink); color: var(--cream);
}
.spec-block-emoji { font-size: 1.25rem; }
.spec-block-title {
  font-family: 'Fraunces', Georgia, serif; font-size: 1.05rem;
  font-weight: 700; color: var(--cream);
}
.spec-block-body {
  padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 1rem;
}

.global-notes {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-md); padding: 1.5rem;
}
.global-notes-title {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.75rem;
}

.submit-btn {
  background: var(--ink); color: var(--cream); padding: 1rem;
  border-radius: 100px; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s; width: 100%;
}
.submit-btn:hover {
  transform: translateY(-2px); box-shadow: 0 10px 30px rgba(31, 29, 43, 0.2);
}
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note {
  font-size: 0.78rem; color: var(--ink-soft); text-align: center;
  line-height: 1.6;
}
.form-note a { color: var(--pink); font-weight: 600; }

.success-box {
  display: none; text-align: center; padding: 3rem 2rem;
  background: var(--white); border-radius: var(--radius-lg);
  border: 2px solid var(--border);
}
.success-box.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.success-box h3 {
  font-family: 'Fraunces', Georgia, serif; font-size: 1.6rem;
  font-weight: 700; color: var(--ink); margin-bottom: 0.75rem;
}
.success-box p {
  font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7;
}
.success-box strong { color: var(--ink); }
.success-box a { color: var(--pink); font-weight: 700; }

@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .frow { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .print-page-section { padding: 3rem 1.25rem; }
  .print-form-section { padding: 3rem 1.25rem; }
}

/* ─── INDUSTRIES ─── */
.industries-section { background: var(--white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.industry-pill {
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}
.pill-pink { background: var(--pink-light); }
.pill-orange { background: var(--orange-light); }
.pill-yellow { background: var(--yellow-light); }
.pill-teal { background: var(--teal-light); }
.pill-blue { background: var(--blue-light); }
.pill-purple { background: var(--purple-light); }

.industry-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pill-pink:hover { border-color: var(--pink); }
.pill-orange:hover { border-color: var(--orange); }
.pill-yellow:hover { border-color: var(--yellow); }
.pill-teal:hover { border-color: var(--teal); }
.pill-blue:hover { border-color: var(--blue); }
.pill-purple:hover { border-color: var(--purple); }

.industry-emoji { font-size: 2.25rem; margin-bottom: 0.5rem; display: block; }
.industry-pill h4 {
  font-size: 0.95rem; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
}

/* ─── CTA SECTION ─── */
.cta-section { padding: 3rem 2rem 5rem; }
.cta-banner {
  background: var(--ink); color: var(--cream);
  padding: 5rem 3rem;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative; overflow: hidden;
  max-width: 1200px; margin: 0 auto;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
.cta-shape-1 { width: 400px; height: 400px; background: var(--pink); top: -20%; right: -10%; }
.cta-shape-2 { width: 350px; height: 350px; background: var(--purple); bottom: -25%; left: -5%; }

.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  position: relative;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.cta-banner p {
  font-size: 1.1rem; opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 580px; margin-left: auto; margin-right: auto;
  position: relative;
}

@media (max-width: 600px) { .cta-banner { padding: 3rem 1.5rem; } }

/* ─── FOOTER ─── */
footer {
  background: var(--cream); padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.footer-brand .footer-logo { height: 75px; width: auto; display: block; margin-bottom: 1rem; }
.footer-brand p { color: var(--ink-soft); font-size: 0.95rem; max-width: 320px; }

.footer-col h5 {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: var(--ink-soft); font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem; color: var(--ink-soft);
}

/* ─── FORMS (for contact / calculator pages) ─── */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 3rem; box-shadow: var(--shadow-md);
  max-width: 640px; margin: 0 auto;
  border-top: 6px solid var(--pink);
}
@media (max-width: 600px) { .form-card { padding: 2rem 1.5rem; } }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  transition: all 0.2s; color: var(--ink);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--pink); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-hint { display: block; font-size: 0.78rem; font-style: italic; color: var(--ink-soft); margin-top: 0.4rem; line-height: 1.4; }

/* ─── PROCESS (How It Works) ─── */
.process-section {
  background: var(--cream);
  padding: 5rem 2rem;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  position: relative;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(31, 29, 43, 0.08);
}
.process-step.step-pink   { border-top: 4px solid var(--pink); }
.process-step.step-orange { border-top: 4px solid var(--orange); }
.process-step.step-teal   { border-top: 4px solid var(--teal); }
.process-step.step-purple { border-top: 4px solid var(--purple); }
.process-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.04em;
  opacity: 0.4;
}
.process-step.step-pink .process-num   { color: var(--pink); }
.process-step.step-orange .process-num { color: var(--orange); }
.process-step.step-teal .process-num   { color: var(--teal); }
.process-step.step-purple .process-num { color: var(--purple); }
.process-step h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.process-step p em { font-style: italic; color: var(--ink); }
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .process-section { padding: 3.5rem 1.5rem; }
  .process-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* Included with every client / one-off callout */
.included-callout {
  background: linear-gradient(135deg, var(--pink-light), var(--orange-light));
  border-left: 4px solid var(--pink);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 0 auto 2rem;
  max-width: 760px;
}
.included-headline {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.included-headline strong { color: var(--ink); font-weight: 700; }
.included-sub {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.included-sub em {
  font-style: italic;
  color: var(--pink);
  font-weight: 600;
}

/* "Don't see it? Ask." closing line below the gallery */
.and-more-line {
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px dashed var(--border);
}
.and-more-line em {
  font-style: italic;
  color: var(--pink);
  font-weight: 600;
}

/* Rep time section — visually grouped sub-section in the calculator */
.rep-time-section {
  margin: 1.75rem 0 1.25rem;
  padding: 1.5rem 1.5rem 0.5rem;
  background: var(--cream);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-md);
}
.rep-time-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.rep-time-intro {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

/* Calculator add-on toggle button */
.addon-toggle-wrap { margin: 1.75rem 0 1.25rem; }
.addon-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.25rem;
  border: 2px dashed var(--pink);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}
.addon-toggle:hover {
  background: var(--pink-light);
  border-style: solid;
  transform: translateY(-1px);
}
.addon-toggle .addon-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: transparent;
  transition: all 0.2s;
}
.addon-toggle .addon-label { display: flex; flex-direction: column; gap: 0.15rem; }
.addon-toggle .addon-label strong { font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.addon-toggle .addon-label small { font-size: 0.8rem; color: var(--ink-soft); }
.addon-toggle.active {
  background: var(--pink);
  border-style: solid;
  border-color: var(--pink);
}
.addon-toggle.active .addon-check {
  background: var(--white);
  border-color: var(--white);
  color: var(--pink);
}
.addon-toggle.active .addon-label strong,
.addon-toggle.active .addon-label small { color: var(--white); }
.addon-toggle.active .addon-label small { opacity: 0.9; }

/* Calculator */
.calc-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 3rem; box-shadow: var(--shadow-md);
  max-width: 760px; margin: 0 auto;
  border-top: 6px solid var(--teal);
}
@media (max-width: 600px) { .calc-card { padding: 2rem 1.5rem; } }
.calc-result {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--blue-light) 100%);
  padding: 2rem; border-radius: var(--radius-md);
  margin-top: 2rem; text-align: center;
}
.calc-result h3 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem; color: var(--teal);
  margin-bottom: 0.5rem; font-weight: 700;
}
.calc-result p { color: var(--ink); }

/* Industry detail (for industries page) */
.industry-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.industry-detail {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 6px solid;
  transition: all 0.3s;
}
.industry-detail:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.industry-detail.detail-pink { border-top-color: var(--pink); }
.industry-detail.detail-orange { border-top-color: var(--orange); }
.industry-detail.detail-yellow { border-top-color: var(--yellow); }
.industry-detail.detail-teal { border-top-color: var(--teal); }
.industry-detail.detail-blue { border-top-color: var(--blue); }
.industry-detail.detail-purple { border-top-color: var(--purple); }
.industry-detail .industry-emoji { font-size: 2.5rem; margin-bottom: 1rem; text-align: left; }
.industry-detail h3 { font-size: 1.4rem; margin-bottom: 0.75rem; font-weight: 700; }
.industry-detail p { color: var(--ink-soft); margin-bottom: 1rem; }
.industry-detail ul { list-style: none; padding: 0; }
.industry-detail li {
  font-size: 0.9rem; color: var(--ink-soft);
  padding-left: 1.25rem; position: relative;
  margin-bottom: 0.4rem;
}
.industry-detail li::before { content: '✦'; position: absolute; left: 0; color: var(--pink); }

/* ─── SERVICES DETAIL PAGE ─── */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.service-detail-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 6px solid;
  transition: all 0.3s;
  position: relative;
}
.service-detail-card.card-pink { border-top-color: var(--pink); }
.service-detail-card.card-orange { border-top-color: var(--orange); }
.service-detail-card.card-yellow { border-top-color: var(--yellow); }
.service-detail-card.card-teal { border-top-color: var(--teal); }
.service-detail-card.card-blue { border-top-color: var(--blue); }
.service-detail-card.card-purple { border-top-color: var(--purple); }
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.service-detail-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.service-lead {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.service-list li {
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  border-bottom: 1px dashed var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}
.service-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border);
}
.pricing-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-amount {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

/* ─── ANCHOR BAR (handouts page) ─── */
.page-anchor-bar {
  padding: 1.5rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 50;
}
.anchor-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  transition: all 0.2s;
}
.anchor-pill:hover {
  background: var(--pink-light);
  border-color: var(--pink);
  color: var(--pink);
}

/* ─── CONTACT PAGE ─── */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.contact-info-card h4 {
  font-size: 0.95rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
}
.contact-info-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.contact-info-card a {
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  section .container > div[style*="grid-template-columns: 1fr 1.5fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ─── WATERCOLOR SPLASH ACCENTS ─── */
.splash-accent {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.splash-hero-tr {
  top: 60px; right: -80px;
  width: 480px; height: auto;
  opacity: 0.35;
}

.splash-page-hero {
  top: 40px; right: -60px;
  width: 380px; height: auto;
  opacity: 0.3;
}

.splash-page-hero-left {
  top: 60px; left: -80px;
  width: 320px; height: auto;
  opacity: 0.25;
  transform: scaleX(-1);
}

.splash-divider {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  padding: 1rem 0;
  pointer-events: none;
}
.splash-divider img {
  height: 60px; width: auto;
  opacity: 0.5;
}

.splash-cta {
  position: absolute;
  bottom: -40px; right: -50px;
  width: 320px; height: auto;
  opacity: 0.25;
  pointer-events: none;
}

@media (max-width: 700px) {
  .splash-hero-tr { width: 300px; opacity: 0.25; }
  .splash-page-hero { width: 240px; opacity: 0.2; }
  .splash-page-hero-left { width: 200px; opacity: 0.2; }
  .splash-cta { width: 200px; }
}

/* Hero needs higher z-index handling for splash overlay */
.hero, .page-hero, .cta-banner { position: relative; }
.hero-inner, .page-hero > div, .cta-banner > h2, .cta-banner > p, .cta-banner > a, .cta-banner > div { position: relative; z-index: 2; }

/* "Add-On Services" section (Content / Social / Website) */
.also-section { background: var(--white); padding: 5rem 2rem; }
.also-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.also-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.also-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(31, 29, 43, 0.08);
}
.also-card.card-purple { border-top: 4px solid var(--purple); }
.also-card.card-blue   { border-top: 4px solid var(--blue); }
.also-card.card-teal   { border-top: 4px solid var(--teal); }
.also-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.also-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.also-card > p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.also-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.also-card ul li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 0.3rem 0 0.3rem 1.1rem;
  position: relative;
  line-height: 1.5;
}
.also-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--ink);
  font-weight: 700;
}
@media (max-width: 900px) {
  .also-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .also-section { padding: 3.5rem 1.5rem; }
}

/* Print/Design tab toggle */
.form-tabs-wrap {
  background: var(--cream);
  padding: 1.5rem 2rem 0;
  display: flex;
  justify-content: center;
}
.form-tabs {
  display: inline-flex;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  gap: 4px;
}
.form-tab {
  background: transparent;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.form-tab:hover {
  color: var(--ink);
}
.form-tab[data-active="true"] {
  background: var(--ink);
  color: var(--cream);
}
.form-panel { display: none; }
.form-panel[data-active="true"] { display: block; }
@media (max-width: 600px) {
  .form-tab { padding: 0.6rem 1rem; font-size: 0.85rem; }
  .form-tabs-wrap { padding: 1rem 1rem 0; }
}

/* ─── FORM CTA CARDS (replaces forms with "open in new tab" buttons) ─── */
.form-cta-card {
  text-align: center;
  padding: 3rem 2.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(31,29,43,0.04);
  position: relative;
}
.form-cta-card.form-cta-card-light { background: var(--white); }
.form-cta-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--teal), var(--blue), var(--purple));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.cta-card-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.cta-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cta-card-title em {
  font-style: italic;
  color: var(--pink);
}
.cta-card-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 1.75rem;
}
.cta-card-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 460px;
  text-align: left;
}
.cta-card-features li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  line-height: 1.55;
}
.cta-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 20px; height: 20px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 20px;
}
.cta-card-features li strong { color: var(--ink); font-weight: 600; }
.cta-card-btn {
  font-size: 1rem !important;
  padding: 1rem 2rem !important;
  margin-bottom: 1rem;
}
.cta-card-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0;
  font-style: italic;
}
.cta-card-note strong { color: var(--ink); font-style: normal; font-weight: 600; }
@media (max-width: 600px) {
  .form-cta-card { padding: 2.25rem 1.5rem; }
  .cta-card-features { max-width: 100%; }
}

/* Monday embed iframe wrapper */
.monday-embed-wrap {
  width: 100%;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 700px;
}
.monday-embed-wrap iframe {
  width: 100%;
  min-height: 700px;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 600px) {
  .monday-embed-wrap, .monday-embed-wrap iframe { min-height: 800px; }
}
