/* ============================================================
   Good Creations - Static Site Stylesheet
   Dark Professional Theme | Roboto + Chivo
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Chivo', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  background: #ffffff;
  color: #4a5568;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #e53935; text-decoration: none; transition: color 0.2s; }
a:hover { color: #ff6b6b; }

/* === VARIABLES === */
:root {
  --red: #e53935;
  --red-dark: #c62828;
  --red-light: #ff6b6b;
  --dark: #0d1117;
  --dark-2: #161b22;
  --dark-3: #21262d;
  --dark-4: #30363d;
  --border: rgba(0,0,0,0.1);
  --border-light: rgba(255,255,255,0.1);
  --text: #2d3748;
  --text-muted: #6b7280;
  --text-light: #4a5568;
  --white: #ffffff;
  --light-bg: #f3f3f3;
  --max-w: 1200px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.25;
  color: #1a202c;
  margin-bottom: 0.75em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1.25rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

strong, b { color: #1a202c; font-weight: 600; }
em { font-style: italic; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
li { margin-bottom: 0.5rem; color: var(--text-light); }

blockquote {
  border-left: 4px solid var(--red);
  padding: 1.5rem 2rem;
  background: #f8f9fa;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
}

/* === CONTAINER === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow { max-width: 860px; }
.container--wide { max-width: 1400px; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

/* Top row: logo + contact info */
.header-top {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  height: 30px;
  width: auto;
}

.header-contact-info {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.85rem;
  color: #bebebe;
}

.header-contact-info svg {
  vertical-align: -2px;
  margin-right: 4px;
  opacity: 0.7;
}

.header-contact-info a {
  color: #bebebe;
  transition: color 0.2s;
}

.header-contact-info a:hover {
  color: #ffffff;
}

/* Bottom row: navigation */
.header-nav-bar {
  padding: 0;
}

.header-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}

/* === NAV === */
.site-nav { display: flex; align-items: center; gap: 0; }

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

.nav-list > li {
  position: relative;
  margin: 0;
}

.nav-list > li > a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li.has-dropdown:hover > a { color: var(--red-light); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #1a1f27;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 0.5rem 0;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
  list-style: none;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-light);
  white-space: nowrap;
  transition: all 0.15s;
}

.dropdown li a:hover {
  color: var(--white);
  background: rgba(229,57,53,0.15);
  padding-left: 1.5rem;
}

/* CTA button in nav */
.nav-cta {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.875rem;
  margin-left: 0.5rem;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--red-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,17,23,0.55) 0%,
    rgba(13,17,23,0.4) 50%,
    rgba(229,57,53,0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
  background: rgba(229,57,53,0.15);
  border: 1px solid rgba(229,57,53,0.3);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
}

.hero-meta-num {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--red-light);
  line-height: 1;
}

.hero-meta-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

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

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,57,53,0.3);
}

.btn--outline {
  background: transparent;
  color: #2d3748;
  border-color: rgba(0,0,0,0.2);
}

.btn--outline:hover {
  border-color: #2d3748;
  color: #1a202c;
  background: rgba(0,0,0,0.04);
}

/* White outline for dark contexts (hero, footer) */
.hero .btn--outline, .site-footer .btn--outline, .section--dark .btn--outline {
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
}

.hero .btn--outline:hover, .site-footer .btn--outline:hover, .section--dark .btn--outline:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255,255,255,0.07);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

/* === SECTIONS === */
.section {
  padding: 5rem 0;
  background: #ffffff;
}

.section--alt { background: var(--light-bg); }
.section--dark { background: var(--dark); color: #e2e8f0; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4, .section--dark h5, .section--dark h6 { color: #ffffff; }
.section--dark p, .section--dark li { color: #cbd5e1; }
.section--dark strong, .section--dark b { color: #ffffff; }
.section--darker { background: #0a0e13; color: #e2e8f0; }
.section--darker h1, .section--darker h2, .section--darker h3, .section--darker h4 { color: #ffffff; }
.section--darker p, .section--darker li { color: #cbd5e1; }
.section--card { background: var(--light-bg); }
.section--border-t { border-top: 1px solid var(--border); }

/* Light-section contrast guard (post-dark-theme migration) */
.section:not(.section--dark):not(.section--darker) h1,
.section:not(.section--dark):not(.section--darker) h2,
.section:not(.section--dark):not(.section--darker) h3,
.section:not(.section--dark):not(.section--darker) h4,
.section:not(.section--dark):not(.section--darker) h5,
.section:not(.section--dark):not(.section--darker) h6 {
  color: #1a202c;
}

.section:not(.section--dark):not(.section--darker) p,
.section:not(.section--dark):not(.section--darker) li {
  color: #4a5568;
}

.section:not(.section--dark):not(.section--darker) .text-muted,
.section:not(.section--dark):not(.section--darker) small {
  color: #6b7280;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* === VALUE PROPS GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229,57,53,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(229,57,53,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a202c;
}

.feature-card p { color: #6b7280; margin: 0; font-size: 0.95rem; }

/* === CASE STUDY SPLIT === */
.case-study-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.case-study-split:last-child { border-bottom: none; }
.case-study-split.reverse { direction: rtl; }
.case-study-split.reverse > * { direction: ltr; }

.cs-logo { height: 60px; object-fit: contain; width: auto; margin-bottom: 1.5rem; }

.cs-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cs-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.cs-stat::before {
  content: "★";
  color: var(--red);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.cs-screenshot {
  border-radius: 12px;
  border: 4px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  width: 100%;
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--red);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(229,57,53,0.15);
}

.pricing-card.featured {
  border-color: var(--red);
}

.pricing-header {
  background: #f3f3f3;
  padding: 1.75rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-header h3 {
  font-size: 1.2rem;
  color: var(--red-dark);
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-family: 'Roboto', sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #1a202c;
  line-height: 1;
}

.pricing-price sup {
  font-size: 1.25rem;
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.pricing-body { padding: 1.5rem; }

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.9rem;
  color: #4a5568;
  margin: 0;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* === BLOG CARDS === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229,57,53,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.blog-card-img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  background: #f3f3f3;
}

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

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.cat-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-light);
  background: rgba(229,57,53,0.12);
  border: 1px solid rgba(229,57,53,0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  flex: 1;
}

.blog-card-title a {
  color: #1a202c;
  line-height: 1.4;
}

.blog-card-title a:hover { color: var(--red-light); }

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.read-more {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.read-more:hover { color: var(--red-light); gap: 0.55rem; }
.read-more::after { content: "→"; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: #1a202c;
  font-size: 0.9rem;
}

/* === CONTACT SECTION === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

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

.contact-list-icon {
  color: var(--red);
  font-size: 1.1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Contact Form */
.contact-form {
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #1a202c;
  font-family: 'Chivo', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: #ffffff;
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* === FOOTER === */
.site-footer {
  background: #0a0e13;
  color: #e2e8f0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 0 0;
}

.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4 { color: #ffffff; }
.site-footer p, .site-footer li { color: #8b949e; }
.site-footer strong { color: #ffffff; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--red-light); }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.6rem;
  margin-left: 0;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-credit a { color: var(--red-light); }
.footer-credit a:hover { color: var(--red); }

/* === PAGE HERO (non-homepage) === */
.page-hero {
  padding: 9rem 0 4rem;
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #e2e8f0;
}

.page-hero h1 { margin-bottom: 0.75rem; color: #ffffff; }

.page-hero p {
  font-size: 1.15rem;
  color: #8b949e;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .breadcrumb a { color: #8b949e; }
.page-hero .breadcrumb a:hover { color: var(--red-light); }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--red-light); }
.breadcrumb span { color: var(--text-muted); }

/* === POST CONTENT === */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0;
}

.post-content {
  min-width: 0;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.post-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-content ul, .post-content ol {
  color: var(--text-light);
  font-size: 1.05rem;
}

.post-content img {
  border-radius: var(--radius);
  margin: 2rem auto;
}

.post-content a { color: var(--red-light); text-decoration: underline; }
.post-content a:hover { color: var(--red); }

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.post-featured-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  aspect-ratio: 16/7;
  object-fit: cover;
}

/* Sidebar */
.post-sidebar { position: sticky; top: 90px; }

.sidebar-widget {
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { margin: 0 0 0.5rem; }
.sidebar-links a { font-size: 0.875rem; color: var(--text-muted); }
.sidebar-links a:hover { color: var(--red-light); }

/* === SERVICE PAGE === */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.service-benefits li:last-child { border-bottom: none; }

.service-benefits li::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* === OUR WORK GALLERY === */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f3f3;
  border: 1px solid #e2e8f0;
}

.portfolio-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s;
}

.portfolio-item:hover .portfolio-img { transform: scale(1.04); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.85));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-label {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, #f3f3f3 0%, rgba(229,57,53,0.06) 100%);
  border-top: 1px solid rgba(229,57,53,0.15);
  border-bottom: 1px solid rgba(229,57,53,0.15);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--text-muted); max-width: 560px; margin: 0 auto 2rem; }

/* === UTILITY === */
.text-center { text-align: center; }
.text-red { color: var(--red-light); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.divider {
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* Blog listing page header info */
.posts-count {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  font-size: 0.875rem;
  color: #6b7280;
  transition: all 0.2s;
}

.pagination a:hover,
.pagination a.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Related posts */
.related-posts {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

/* Page content (from WP export) */
.page-body {
  padding: 4rem 0;
}

.page-body .container--narrow {
  max-width: 860px;
}

.page-body h1, .page-body h2, .page-body h3 {
  margin-top: 2rem;
}

.page-body p { color: var(--text-light); font-size: 1.05rem; }
.page-body ul, .page-body ol { color: var(--text-light); }
.page-body a { color: var(--red-light); }
.page-body img { border-radius: var(--radius); margin: 1.5rem auto; }

/* Thank you page */
.thank-you-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  color: var(--red);
}

/* ============================================================
   MOBILE / RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-intro { grid-template-columns: 1fr; }
  .case-study-split { grid-template-columns: 1fr; gap: 2rem; }
  .case-study-split.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .header-contact-info { display: none; }
  .header-top-inner { justify-content: center; }

  .site-nav {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,17,23,0.98);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .site-nav.open { transform: translateX(0); }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-list > li { width: 100%; }

  .nav-list > li > a {
    padding: 0.9rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0.5rem 1rem;
    display: none;
  }

  .has-dropdown.open .dropdown { display: block; }

  .dropdown li a {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 0;
  }

  .nav-cta { margin-left: 0; margin-top: 1.5rem; width: 100%; text-align: center; }

  .hamburger { display: flex; }

  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-meta { gap: 1rem; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section { padding: 3.5rem 0; }
}

/* === TABLE STYLES (for press clippings etc) === */
.page-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.page-body th {
  background: #f3f3f3;
  color: #1a202c;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid #e2e8f0;
}

.page-body td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  color: #4a5568;
}

.page-body tr:hover td { background: #f8f9fa; }

/* === FIGURE / FIGCAPTION === */
.page-body figure { margin: 2rem 0; }
.page-body figcaption {
  font-size: 0.825rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* wp-block styles */
.wp-block-image { margin: 2rem auto; }
.wp-block-separator { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.wp-block-pullquote blockquote {
  border-left: none;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  text-align: center;
  padding: 1.5rem;
}

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