/* ========================================
   True Capture - Complete Stylesheet
   ======================================== */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #48c6ef;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #667eea;
}

/* ========================================
   Header & Navigation
   ======================================== */

.header {
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.8;
}

.wordmark {
  height: 60px;
  width: auto;
}

.mobile-toggle {
  display: none;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.mobile-toggle:hover {
  background: #222;
  border-color: #444;
}

.navlinks {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-tab {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.2s;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-tab:hover {
  background: rgba(72, 198, 239, 0.1);
  border-color: rgba(72, 198, 239, 0.3);
}

.nav-tab.active {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  border-color: transparent;
  color: #fff;
}

.navlinks > a {
  /* Old styles removed - now using .nav-tab */
}

/* ========================================
   Layout Containers
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* ========================================
   Hero Logo
   ======================================== */

.hero-logo-container {
  text-align: center;
  margin: 2rem 0;
}

.hero-logo {
  max-width: 500px;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 350px;
  }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
  background: #000;
}

.page-workflow .hero {
  padding: 4rem 2rem 0 2rem;
}

.page-order-services .hero {
  padding: 4rem 2rem 1rem 2rem;
}

.hero.wave-bg {
  position: relative;
  background-image: url('tapes-hero.webp?v=1');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
  border-radius: 12px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero.wave-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.82) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero.wave-bg > * {
  position: relative;
  z-index: 1;
}

.kicker {
  color: #48c6ef;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
}

.muted {
  color: #aaa;
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.page-workflow .hero .muted {
  margin-bottom: 0.5rem;
}

/* ========================================
   Pills (Feature Tags)
   ======================================== */

.pills {
  display: flex;
  column-gap: 1.5rem;
  row-gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pill {
  background: #000;
  border: 1px solid #3b5a9e;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ========================================
   Buttons
   ======================================== */

.btnrow {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  color: white;
  border: none;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn.secondary {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
}

.btn.secondary:hover {
  background: #222;
  border-color: #444;
}

/* ========================================
   Signal Separator (Regular)
   ======================================== */

.signal-separator {
  width: 100%;
  height: auto;
  margin: 7rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-workflow .signal-separator {
  margin: 7rem 0;
}

.page-order-services .signal-separator {
  margin: 7rem 0;
}

.signal-separator svg {
  width: 100%;
  height: 100%;
  stroke: #48c6ef;
}

.waveform-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 120px;
}

/* ========================================
   Cards
   ======================================== */

.card {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s;
}

.card:hover {
  border-color: #333;
}

.card h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #fff;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.card p {
  color: #aaa;
  line-height: 1.7;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.card ul:not(.workflow-list):not(.comparison-list) li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #aaa;
}

.card ul:not(.workflow-list):not(.comparison-list) li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #48c6ef;
  font-weight: 700;
}

.card pre {
  white-space: pre-wrap;
  margin: 1rem 0;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.8;
  color: #aaa;
  background: #0a0a0a;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #222;
}

/* ========================================
   Formats Accordion Section
   ======================================== */

.formats-section {
  margin: 3rem 0;
}

.formats-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.format-accordion {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.format-item {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid #333;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.format-item:hover {
  border-color: #48c6ef;
}

.format-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: #fff;
  transition: background-color 0.2s ease;
}

.format-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #333;
  flex-shrink: 0;
}

.format-header:hover {
  background: rgba(72, 198, 239, 0.05);
}

.format-title-group {
  flex: 1;
}

.format-title-group h3 {
  font-size: 1.25rem;
  margin: 0 0 0.25rem 0;
  color: #fff;
}

.format-subtitle {
  font-size: 0.875rem;
  color: #888;
  margin: 0;
}

.format-chevron {
  flex-shrink: 0;
  margin-left: 1rem;
  stroke: #48c6ef;
  transition: transform 0.3s ease;
}

.format-item.active .format-chevron {
  transform: rotate(180deg);
}

.format-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.format-item.active .format-content {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.format-content p {
  color: #aaa;
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   Comparison Section
   ======================================== */

.comparison-section {
  margin: 3rem 0;
  position: relative;
  z-index: 10;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.comparison-card {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 2rem;
}

.comparison-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.comparison-card h2 .inline-logo {
  height: 2.34em;
  width: auto;
  vertical-align: middle;
  margin-left: 0.5rem;
  opacity: 0.9;
}

.workflow-good h2 .inline-logo {
  height: 2.34em;
  width: auto;
  vertical-align: middle;
  margin-left: 0.5rem;
  opacity: 0.9;
}


.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  border-bottom: 1px solid #222;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.comparison-list li.check::before {
  content: '✓';
  background: rgba(72, 198, 239, 0.2);
  color: #48c6ef;
  border: 2px solid #48c6ef;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.comparison-list li.cross::before {
  content: '✕';
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 2px solid #ef4444;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.comparison-list li strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.comparison-list li span {
  display: block;
  color: #888;
  font-size: 0.875rem;
  line-height: 1.5;
}

.comparison-good {
  border-color: rgba(72, 198, 239, 0.3);
}

.comparison-bad {
  border-color: rgba(239, 68, 68, 0.3);
}

/* ========================================
   Why Professional Equipment Matters Section
   ======================================== */

.why-matters-section {
  background: linear-gradient(135deg, #0a3a4a 0%, #0d2838 100%);
  border: 1px solid rgba(72, 198, 239, 0.3);
  border-radius: 12px;
  padding: 3rem 2rem;
  margin: 3rem 0;
  text-align: left;
  position: relative;
  z-index: 10;
}

.why-matters-section h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.why-matters-intro {
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.why-matters-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.7;
}

/* ========================================
   Hero Image Section
   ======================================== */

.hero-image-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  background-image: url('family-watching-tv.webp?v=2');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
  margin: 3rem 0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-image-content {
  text-align: center;
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero-image-content h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-image-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-image-content .btn {
  margin-top: 1rem;
}

/* ========================================
   Workflow Comparison Cards
   ======================================== */

.workflow-diagram {
  white-space: pre-wrap;
  margin: 1rem 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  font-size: 13px;
  line-height: 2;
  color: #aaa;
  background: #0a0a0a;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #222;
}

.workflow-good {
  border-color: rgba(72, 198, 239, 0.3);
}

.workflow-good:hover {
  border-color: rgba(72, 198, 239, 0.5);
}

.workflow-bad {
  border-color: rgba(239, 68, 68, 0.4);
}

.workflow-bad:hover {
  border-color: rgba(239, 68, 68, 0.6);
}

.workflow-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.workflow-list li {
  padding: 0.85rem 0;
  padding-left: 2.75rem;
  position: relative;
  color: #aaa;
  line-height: 1.5;
}

.workflow-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.workflow-list-good li::before {
  content: '✓';
  background: rgba(72, 198, 239, 0.2);
  color: #48c6ef;
  border: 2px solid #48c6ef;
}

.workflow-list-bad li::before {
  content: '✕';
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 2px solid #ef4444;
}

/* ========================================
   Equipment Section
   ======================================== */

.equipment-section {
  margin: 3rem 0;
}

.card.equipment-section {
  margin: 14px 0;
  padding: 2rem;
  position: relative;
  background-image: url('equipment.webp?v=1');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.card.equipment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.88) 100%);
  z-index: 0;
  pointer-events: none;
}

.card.equipment-section > * {
  position: relative;
  z-index: 1;
}

.equipment-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  text-align: center;
}

.equipment-intro {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.equipment-transparency {
  color: #888;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.card .equipment-category,
.equipment-section .equipment-category {
  color: #48c6ef !important;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  text-transform: none;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.equipment-card {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.equipment-card:hover {
  border-color: #333;
}

.equipment-card h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.equipment-card h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.equipment-card p {
  color: #888;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

.equipment-card p.muted {
  color: #aaa;
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ========================================
   Grid Layouts
   ======================================== */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  position: relative;
  z-index: 10;
}

/* ========================================
   Callout Box
   ======================================== */

.callout {
  background: rgba(102, 126, 234, 0.1);
  border-left: 4px solid #667eea;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.callout strong {
  color: #fff;
}

/* ========================================
   Divider
   ======================================== */

.divider {
  height: 1px;
  background: #222;
  margin: 2rem 0;
}

/* ========================================
   Embedded Form
   ======================================== */

.embed {
  width: 100%;
  max-width: 100%;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.embed iframe {
  width: 100%;
  min-height: 1200px;
  border: none;
  display: block;
  background: #111;
}

/* ========================================
   Table
   ======================================== */

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.table th {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 2px solid #333;
  color: #aaa;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table td {
  padding: 0.75rem;
  border-bottom: 1px solid #222;
  color: #aaa;
}

.table tr:last-child td {
  border-bottom: none;
}

.table a {
  color: #48c6ef;
  transition: color 0.2s;
}

.table a:hover {
  color: #667eea;
}

/* ========================================
   Form Embed & Contact Sections
   ======================================== */

.form-embed {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #222;
  background: #0a0a0a;
}

.form-embed iframe {
  display: block;
  width: 100%;
  border: none;
}

.form-link {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #888;
}

.form-link a {
  color: #48c6ef;
  text-decoration: none;
  word-break: break-all;
}

.form-link a:hover {
  text-decoration: underline;
}

.callout {
  background: rgba(72, 198, 239, 0.1);
  border-left: 4px solid #48c6ef;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.callout strong {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 1.5rem 0;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item strong {
  color: #48c6ef;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #48c6ef;
}

.contact-item span {
  color: #aaa;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: #0a0a0a;
  border-top: 1px solid #222;
  margin-top: 4rem;
  padding: 3rem 0;
  position: relative;
  z-index: 10;
}

.footer-logo-container {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo-container a {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo-container a:hover {
  opacity: 0.8;
  transform: scale(1.05);
  cursor: pointer;
}

.footer-logo {
  max-width: 200px;
  height: auto;
}

.footer-stacked {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-location {
  font-size: 0.875rem;
  color: #fff;
  margin: 0;
  font-weight: 500;
}

.footer-heading {
  font-size: 0.875rem;
  color: #fff;
  margin: 0;
  font-weight: 600;
}

.footer-text {
  font-size: 0.875rem;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

.small {
  font-size: 0.875rem;
  color: #888;
  line-height: 1.8;
  text-align: center;
}

.footer .small a {
  color: #aaa;
  transition: color 0.2s;
}

.footer .small a:hover {
  color: #48c6ef;
}

/* ========================================
   Mobile Responsive - Tablet
   ======================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  /* Navigation */
  .navlinks {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111;
    border-top: 1px solid #222;
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .navlinks.open {
    display: flex;
  }
  
  .nav-tab {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  /* Layout */
  .container {
    padding: 1rem;
  }
  
  .hero {
    padding: 3rem 1rem;
  }
  
  /* Cards & Grid */
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .format-header {
    padding: 1rem;
  }
  
  .format-thumbnail {
    width: 60px;
    height: 60px;
  }
  
  .format-title-group h3 {
    font-size: 1.1rem;
  }
  
  .format-subtitle {
    font-size: 0.8rem;
  }
  
  .why-matters-section {
    padding: 2rem 1.5rem;
  }
  
  .why-matters-section h2 {
    font-size: 1.5rem;
  }
  
  .why-matters-intro {
    font-size: 1rem;
  }
  
  .hero-image-section {
    min-height: 400px;
    margin: 2rem 0;
  }
  
  .hero-image-content h2 {
    font-size: 1.75rem;
  }
  
  .hero-image-content p {
    font-size: 1rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  /* Footer - no changes needed, already stacked */
  
  /* Embedded form */
  .embed iframe {
    min-height: 1400px;
  }
  
  /* Workflow comparison - responsive fonts */
  .grid-2 .card pre {
    font-size: 11px !important;
  }
}

/* ========================================
   Mobile Responsive - Phone
   ======================================== */

@media (max-width: 480px) {
  /* Typography */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  /* Spacing */
  .hero {
    padding: 2rem 1rem;
  }
  
  .card {
    padding: 1rem;
  }
  
  /* Buttons */
  .btnrow {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Pills */
  .pills {
    justify-content: flex-start;
  }
  
  /* Embedded form */
  .embed iframe {
    min-height: 1600px;
  }
  
  /* Workflow comparison - smaller fonts */
  .grid-2 .card pre {
    font-size: 10px !important;
  }
  
  .grid-2 .card h2 {
    font-size: 1.25rem;
  }
  
  .grid-2 .card h3 {
    font-size: 1.1rem;
  }
}

/* ========================================
   Accessibility
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #48c6ef;
  outline-offset: 2px;
}
