/* ============================================================
   Gym Flooring Guide — Main Stylesheet
   gymflooringguide.com
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --color-dark: #1B1B1F;
  --color-cream: #F5F4F0;
  --color-heading: #2C2C2C;
  --color-accent: #D4551A;
  --color-green: #3A7D44;
  --color-card: #E8E4DE;
  --color-white: #ffffff;
  --color-text: #3d3d3d;
  --color-muted: #6b6b6b;
  --color-border: #d0ccc6;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;

  --max-width: 1120px;
  --max-width-article: 800px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.14);
  --transition: 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #b8441a;
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.5rem;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

strong { font-weight: 700; color: var(--color-heading); }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--article {
  max-width: var(--max-width-article);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section--sm {
  padding: 2.5rem 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--color-muted); font-size: 0.9rem; }

/* --- Navigation --- */
.site-nav {
  background-color: var(--color-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-logo span {
  color: var(--color-accent);
}

.nav-logo:hover {
  color: var(--color-white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  color: #c8c8cc;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  background-color: var(--color-dark);
  background-image: linear-gradient(135deg, #1B1B1F 0%, #2c2c38 100%);
  color: var(--color-white);
  padding: 5rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,85,26,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 span {
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #c0bfbb;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #d0cfc8;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: #b8441a;
  border-color: #b8441a;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212,85,26,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.btn-dark:hover {
  background-color: #2e2e34;
  color: var(--color-white);
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-card) 0%, #d5d0c9 100%);
}

.card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--color-card) 0%, #d0ccc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.card p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex: 1;
}

/* --- Featured Article --- */
.featured-article {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: 3rem;
}

.featured-article-img {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2c2c38 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  min-height: 280px;
}

.featured-article-body {
  padding: 2.5rem;
}

.featured-article-body .card-tag {
  font-size: 0.78rem;
}

.featured-article-body h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}

/* --- Comparison Table --- */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  font-size: 0.9rem;
}

.comparison-table th {
  background-color: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 1rem;
  text-align: left;
  white-space: nowrap;
}

.comparison-table th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

.comparison-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

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

.comparison-table tr:nth-child(even) {
  background-color: #faf9f7;
}

.comparison-table tr:hover {
  background-color: #f0ede8;
}

.comparison-table .best-value {
  background-color: #f0f8f1;
}

/* --- Pros/Cons --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.pros, .cons {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.pros {
  background-color: #f0f8f1;
  border-left: 4px solid var(--color-green);
}

.cons {
  background-color: #fff7f4;
  border-left: 4px solid #c0392b;
}

.pros h4, .cons h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pros h4 { color: var(--color-green); }
.cons h4 { color: #c0392b; }

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros ul li, .cons ul li {
  font-size: 0.9rem;
  padding: 0.25rem 0;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.4;
}

.pros ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.cons ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
}

/* --- Product Recommendation Box --- */
.product-box {
  background: var(--color-white);
  border: 2px solid var(--color-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.75rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

.product-box:hover {
  box-shadow: var(--shadow-hover);
}

.product-box.top-pick {
  border-color: var(--color-accent);
}

.product-badge {
  background: var(--color-accent);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.product-badge.budget {
  background: var(--color-green);
}

.product-badge.premium {
  background: #8b5e3c;
}

.product-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

.product-info {
  flex: 1;
}

.product-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.product-price {
  color: var(--color-green);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-accent);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
}

.product-cta:hover {
  background: #b8441a;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

/* --- Info Boxes --- */
.info-box {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.info-box .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-box-body h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.info-box-body p {
  font-size: 0.9rem;
  margin: 0;
}

.info-box.tip {
  background: #fffbf0;
  border-left: 4px solid #f0a500;
}

.info-box.tip h4 { color: #c47f00; }

.info-box.warning {
  background: #fff7f4;
  border-left: 4px solid #c0392b;
}

.info-box.warning h4 { color: #c0392b; }

.info-box.note {
  background: #f0f5ff;
  border-left: 4px solid #3a6fd8;
}

.info-box.note h4 { color: #2d5abf; }

/* --- FAQ --- */
.faq-list {
  margin: 2rem 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question::-webkit-details-marker { display: none; }

details[open] .faq-question::after { content: '−'; }
.faq-question::after {
  content: '+';
  color: var(--color-accent);
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-answer {
  padding-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* --- TOC --- */
.toc {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.toc h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.75rem;
  color: var(--color-muted);
}

.toc ol {
  margin: 0;
  padding-left: 1.25rem;
}

.toc li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
}

.toc a {
  color: var(--color-heading);
}

.toc a:hover {
  color: var(--color-accent);
}

/* --- Article Header --- */
.article-header {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 4rem 1.25rem 3rem;
  text-align: center;
}

.article-header h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.article-meta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #9d9c97;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* --- Article Content --- */
.article-content {
  padding: 3rem 0 4rem;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  border-top: 3px solid var(--color-accent);
  display: inline-block;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.article-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.25rem;
}

.article-content li {
  margin-bottom: 0.4rem;
  font-size: 0.975rem;
}

.article-content .lead {
  font-size: 1.15rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  border-left: 4px solid var(--color-accent);
  padding-left: 1rem;
}

/* --- Section Heading --- */
.section-heading {
  margin-bottom: 0.5rem;
}

.section-heading + .section-subtitle {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2c2c38 100%);
  color: var(--color-white);
  padding: 4rem 1.25rem;
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: #c0bfbb;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--color-dark);
  color: #9d9c97;
  padding: 3rem 1.25rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand .nav-logo {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  color: #9d9c97;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: #9d9c97;
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.83rem;
  color: var(--color-muted);
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.35rem;
  color: var(--color-border);
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

/* --- Stat Boxes --- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.stat-box {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-box .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-box .stat-label {
  font-size: 0.82rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Step List --- */
.step-list {
  counter-reset: steps;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.step-list li {
  counter-increment: steps;
  padding: 1rem 1rem 1rem 3.5rem;
  margin-bottom: 0.75rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  font-size: 0.95rem;
}

.step-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0;
}

/* --- Related Articles --- */
.related-articles {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3rem;
}

.related-articles h3 {
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.related-articles ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-articles ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.related-articles ul li:last-child {
  border-bottom: none;
}

/* --- About Page --- */
.about-hero {
  background: linear-gradient(135deg, var(--color-dark), #2c2c38);
  color: white;
  padding: 5rem 1.25rem;
  text-align: center;
}

.about-hero h1 { color: white; margin-bottom: 1rem; }

.about-content {
  padding: 4rem 0;
}

.about-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* --- Policy Pages --- */
.policy-header {
  background: var(--color-dark);
  color: white;
  padding: 3.5rem 1.25rem;
  text-align: center;
}

.policy-header h1 { color: white; margin-bottom: 0.5rem; }

.policy-content {
  padding: 3rem 0 5rem;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.policy-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* ============================================================
   Responsive / Mobile
   ============================================================ */

@media (max-width: 900px) {
  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-article-img {
    min-height: 200px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark);
    padding: 1rem 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.7rem 1.5rem;
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: relative;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .product-box {
    flex-direction: column;
  }

  .product-icon {
    width: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 3.5rem 1.25rem 3rem;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
  }
}

/* --- Print --- */
@media print {
  .site-nav, .site-footer, .cta-section { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}


/* Product Images */
.product-image { max-width: 250px; height: auto; border-radius: 8px; margin: 0 auto 1rem; display: block; }
.product-image-link { display: block; text-align: center; }

