/* ============================================================
   FAST PIZZA DELIVERY GUIDE — Main Stylesheet
   Style: Dynamic / App-Inspired | Colors: Black + Yellow
   Mobile-First | Card-Based UI | Bold Typography
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --yellow:       #FFD600;
  --yellow-light: #FFE566;
  --yellow-dark:  #E6C000;
  --black:        #0A0A0A;
  --black-soft:   #111111;
  --black-card:   #181818;
  --black-border: #252525;
  --gray-dark:    #2A2A2A;
  --gray-mid:     #555555;
  --gray-light:   #999999;
  --white:        #FFFFFF;
  --white-dim:    #F0F0F0;
  --text-primary: #FFFFFF;
  --text-secondary: #BBBBBB;
  --text-muted:   #777777;

  --font-display:   'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:      'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-card:  0 4px 24px rgba(0,0,0,0.45);
  --shadow-hover: 0 8px 40px rgba(255,214,0,0.18);
  --shadow-glow:  0 0 40px rgba(255,214,0,0.25);

  --transition:      all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: all 0.15s ease;

  --max-width:   1200px;
  --section-pad: 80px 20px;
}

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

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

body {
  background: var(--black);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section Commons ── */
.section { padding: var(--section-pad); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

.section-cta { text-align: center; margin-top: 40px; }

.text-yellow { color: var(--yellow); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--black-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon { font-size: 1.5rem; line-height: 1; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--white);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  background: rgba(255,214,0,0.08);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
}

.dropdown-menu li a:hover { color: var(--yellow); background: rgba(255,214,0,0.08); }

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 20px 80px;
  max-width: 750px;
  padding-left: 40px;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--yellow);
}

.stat-unit { font-size: 1.2rem; }

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--black-border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(45deg);
  margin: 8px auto 0;
  animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(255,214,0,0.3);
}

.btn-primary:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,214,0,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.card-link:hover { gap: 10px; }
.card-link span { font-size: 1rem; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--yellow);
  overflow: hidden;
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PIZZA CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

.pizza-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.pizza-card:hover {
  border-color: rgba(255,214,0,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.pizza-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.pizza-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pizza-card:hover .pizza-card__img-wrap img { transform: scale(1.06); }

.pizza-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.badge--blue { background: #4A9EFF; color: var(--white); }
.badge--green { background: #4AE08A; color: var(--black); }

.pizza-card__body { padding: 24px; }

.pizza-card__body h3 {
  font-family: var(--font-condensed);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.pizza-card__body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-list {
  margin-bottom: 20px;
  list-style: none;
}

.feature-list li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 4px 0;
}

/* ============================================================
   HIGHLIGHT STRIP
   ============================================================ */
.highlight-strip {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 32px 20px;
}

.highlight-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.highlight-item strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.highlight-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   DELIVERY EXPECTATIONS
   ============================================================ */
.delivery-expect__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.delivery-expect__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.delivery-expect__text > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.expect-items { display: flex; flex-direction: column; gap: 24px; }

.expect-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.expect-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.expect-content h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.expect-content p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Delivery Timeline */
.delivery-timeline {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.timeline-connector {
  width: 2px;
  height: 32px;
  background: var(--black-border);
  margin-left: 11px;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--black-border);
  background: var(--black-card);
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
}

.timeline-dot.active {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 0 12px rgba(255,214,0,0.4);
}

.timeline-content { flex: 1; }

.timeline-time {
  display: inline-block;
  background: rgba(255,214,0,0.1);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
  font-family: var(--font-condensed);
  letter-spacing: 0.5px;
}

.timeline-content h5 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ============================================================
   HOW TO ORDER - STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(255,214,0,0.3);
  transform: translateY(-4px);
}

.step-num {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 2px 10px;
  border-radius: 100px;
}

.step-icon { font-size: 2.2rem; margin: 8px 0 12px; }

.step-card h4 {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: rgba(255,214,0,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.blog-card__img-link {
  display: block;
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card__img-link--large { height: 300px; }

.blog-card__img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img-link img { transform: scale(1.05); }

.blog-card__category {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.blog-card__featured-label {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.blog-card__body { padding: 20px; }

.blog-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.blog-card__meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-card__body h2,
.blog-card__body h3,
.blog-card__body h4 {
  font-family: var(--font-condensed);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-card__body h2 { font-size: 1.4rem; }

.blog-card__body h2 a,
.blog-card__body h3 a,
.blog-card__body h4 a {
  color: var(--white);
  transition: var(--transition-fast);
}

.blog-card__body h2 a:hover,
.blog-card__body h3 a:hover,
.blog-card__body h4 a:hover { color: var(--yellow); }

.blog-card__body p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* ============================================================
   CONVENIENCE BANNER
   ============================================================ */
.convenience-banner {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  text-align: center;
}

.convenience-banner__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.convenience-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.convenience-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.85));
}

.convenience-banner__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.convenience-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.convenience-banner__content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.accordion { max-width: 800px; margin: 0 auto; }

.accordion-item {
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 8px;
  transition: var(--transition);
}

.accordion-item.open {
  border-color: rgba(255,214,0,0.3);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--black-card);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: var(--transition-fast);
}

.accordion-trigger:hover { background: var(--gray-dark); }
.accordion-item.open .accordion-trigger { background: var(--gray-dark); color: var(--yellow); }

.accordion-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--yellow);
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-panel p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  background: var(--black-card);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: 60px 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 16px;
}

.footer-address {
  font-size: 0.83rem !important;
  color: var(--text-muted) !important;
  line-height: 1.9 !important;
}

.footer-address a { color: var(--text-muted); transition: var(--transition-fast); }
.footer-address a:hover { color: var(--yellow); }

.footer-nav h5 {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-nav ul { list-style: none; }

.footer-nav ul li { margin-bottom: 8px; }

.footer-nav ul li a {
  color: var(--text-muted);
  font-size: 0.87rem;
  transition: var(--transition-fast);
}

.footer-nav ul li a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.footer-legal-links a:hover { color: var(--yellow); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(255,214,0,0.3);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: var(--yellow-light); }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  padding-top: 70px;
  overflow: hidden;
}

.page-hero--short { min-height: 340px; }
.page-hero--article { min-height: 460px; }

.page-hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.3) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.page-hero__content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 600px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 600;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ============================================================
   CONTENT WITH SIDEBAR LAYOUT
   ============================================================ */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

/* ============================================================
   ARTICLE BODY
   ============================================================ */
.article-intro { margin-bottom: 40px; }

.lead-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-left: 3px solid var(--yellow);
  padding-left: 20px;
}

.article-section { margin-bottom: 48px; }

.article-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--black-border);
}

.article-section h3 {
  font-family: var(--font-condensed);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--yellow);
  margin-top: 28px;
  margin-bottom: 10px;
}

.article-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.article-section ul,
.article-section ol {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-left: 24px;
  margin-bottom: 16px;
}

.article-section li { margin-bottom: 6px; }

.article-footer { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--black-border); }

.article-category-tag {
  display: inline-block;
  background: rgba(255,214,0,0.12);
  color: var(--yellow);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.article-meta span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ============================================================
   TAGS
   ============================================================ */
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.tag {
  display: inline-block;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tag:hover,
.tag--active {
  background: rgba(255,214,0,0.1);
  border-color: var(--yellow);
  color: var(--yellow);
}

.tag-cloud { display: flex; gap: 8px; flex-wrap: wrap; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { position: sticky; top: 90px; }

.sidebar--legal { position: static; }

.sidebar-widget {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.sidebar-widget--yellow {
  background: rgba(255,214,0,0.06);
  border-color: rgba(255,214,0,0.2);
}

.sidebar-widget h4 {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--yellow);
}

.sidebar-nav { list-style: none; }
.sidebar-nav li { margin-bottom: 8px; }
.sidebar-nav li a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-nav li a::before {
  content: '→';
  color: var(--yellow);
  font-size: 0.8rem;
  opacity: 0;
  transition: var(--transition-fast);
}
.sidebar-nav li a:hover { color: var(--yellow); }
.sidebar-nav li a:hover::before { opacity: 1; }
.sidebar-nav li a.active { color: var(--yellow); }

.tip-list { list-style: none; }
.tip-list li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 5px 0;
  border-bottom: 1px solid var(--black-border);
}
.tip-list li:last-child { border-bottom: none; }

.sidebar-cards { display: flex; flex-direction: column; gap: 10px; }

.sidebar-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.sidebar-card:hover { border-color: var(--yellow); }

.sidebar-card img {
  width: 52px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.sidebar-card span {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

.sidebar-blog { display: flex; flex-direction: column; gap: 10px; }

.sidebar-blog-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--black-border);
  transition: var(--transition-fast);
}

.sidebar-blog-item:last-child { border-bottom: none; }
.sidebar-blog-item:hover span { color: var(--yellow); }
.sidebar-blog-item--active span { color: var(--yellow); }

.sidebar-blog-item img {
  width: 52px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.sidebar-blog-item span {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.4;
  transition: var(--transition-fast);
}

/* ============================================================
   NUMBERED STEPS
   ============================================================ */
.numbered-steps { display: flex; flex-direction: column; gap: 40px; }

.num-step {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.num-step__header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--gray-dark);
  border-bottom: 1px solid var(--black-border);
}

.num-step__num {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.num-step__header h3 {
  font-family: var(--font-condensed);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: var(--white);
}

.num-step__body { padding: 24px; }

.num-step__body p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ============================================================
   COMPARISON CARDS
   ============================================================ */
.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}

.comp-card {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 16px;
}

.comp-card--pro { border-color: rgba(255,214,0,0.3); }

.comp-card h5 {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 10px;
  color: var(--white);
}

.comp-card ul {
  list-style: none;
  padding: 0;
}

.comp-card ul li {
  color: var(--text-secondary);
  font-size: 0.83rem;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.comp-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 0.75rem;
}

/* ============================================================
   TIP BOX
   ============================================================ */
.tip-box {
  background: rgba(255,214,0,0.07);
  border: 1px solid rgba(255,214,0,0.2);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.87rem;
  color: var(--text-secondary);
  margin: 16px 0;
}

/* ============================================================
   CHECK LIST
   ============================================================ */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* ============================================================
   STYLED LIST
   ============================================================ */
.styled-list {
  list-style: none;
  padding: 0;
}

.styled-list li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  line-height: 1.6;
}

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

.styled-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.styled-list li strong { color: var(--white); }

/* ============================================================
   TIMELINE HORIZONTAL
   ============================================================ */
.timeline-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  margin: 16px 0;
  overflow-x: auto;
}

.th-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.th-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--black-border);
  border: 2px solid var(--black-border);
}

.th-dot.active {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 0 10px rgba(255,214,0,0.4);
}

.th-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

.th-line {
  flex: 1;
  height: 2px;
  background: var(--black-border);
  min-width: 20px;
}

/* ============================================================
   MINI CARDS
   ============================================================ */
.cards-mini { margin: 16px 0; }

.mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-fast);
}

.mini-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.mini-card__icon { font-size: 1.6rem; }

.mini-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.mini-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: var(--black-card);
  border: 1px solid rgba(255,214,0,0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin-top: 48px;
}

.cta-block h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cta-block p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.cta-block__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   INFO CARDS
   ============================================================ */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.info-card {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-fast);
}

.info-card:hover { border-color: rgba(255,214,0,0.3); }

.info-card__icon { font-size: 1.6rem; margin-bottom: 10px; }

.info-card h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--white);
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============================================================
   CHARACTERISTICS GRID
   ============================================================ */
.char-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--black-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 20px 0;
}

.char-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: var(--black-card);
}

.char-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.char-value {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ============================================================
   SIZE GUIDE TABLE
   ============================================================ */
.size-guide { margin: 20px 0; border-radius: var(--radius-md); overflow: hidden; }

.size-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.size-row--header {
  background: var(--gray-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: var(--yellow);
  text-transform: uppercase;
}

.size-row--header span,
.size-row span {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--black-border);
}

.size-row--header span { color: var(--yellow); }

.size-row--highlight { background: rgba(255,214,0,0.05); }
.size-row--highlight span { color: var(--white); }

.size-name { font-weight: 700; color: var(--white) !important; }

.table-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* ============================================================
   SCENARIO CARDS
   ============================================================ */
.scenario-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.scenario-cards--small { grid-template-columns: repeat(2, 1fr); }

.scenario-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-fast);
}

.scenario-card:hover { border-color: rgba(255,214,0,0.3); transform: translateY(-3px); }

.scenario-icon { font-size: 1.8rem; margin-bottom: 10px; }

.scenario-card h3,
.scenario-card h4 {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.scenario-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============================================================
   TIME COMPARISON
   ============================================================ */
.time-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin: 24px 0;
}

.time-col {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.time-col--yellow { border-color: rgba(255,214,0,0.3); background: rgba(255,214,0,0.04); }

.time-col h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--white);
}

.time-col ul {
  list-style: none;
  margin-bottom: 16px;
}

.time-col ul li {
  color: var(--text-secondary);
  font-size: 0.83rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.time-total {
  background: var(--black-soft);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.time-total--yellow {
  background: var(--yellow);
  color: var(--black);
}

.time-divider {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  text-align: center;
}

/* ============================================================
   TIME TABLE
   ============================================================ */
.time-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 20px 0;
}

.tt-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--black-card);
  border-bottom: 1px solid var(--black-border);
}

.tt-header {
  background: var(--gray-dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tt-header span { color: var(--yellow); }

.tt-row span {
  padding: 12px 16px;
  color: var(--text-secondary);
  font-size: 0.87rem;
}

.tt-best { background: rgba(74,224,138,0.06); }
.tt-best span { color: var(--text-secondary); }

.tt-worst { background: rgba(255,100,100,0.06); }

/* ============================================================
   CATEGORY BADGE
   ============================================================ */
.category-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.category-badge--blue { background: #4A9EFF; color: var(--white); }
.category-badge--green { background: #4AE08A; color: var(--black); }

/* ============================================================
   PAGE HEADER SIMPLE (No hero image)
   ============================================================ */
.page-header-simple {
  padding: 120px 20px 60px;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
}

.page-header-simple--legal {
  padding: 100px 20px 40px;
}

.page-header-simple h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.page-header-simple p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
}

.legal-date {
  display: inline-block;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 4px;
  margin-top: 8px;
}

/* ============================================================
   BLOG LAYOUT (Index page)
   ============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.blog-main { display: flex; flex-direction: column; gap: 32px; }

/* ============================================================
   LEGAL LAYOUT
   ============================================================ */
.legal-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 48px;
  align-items: start;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  color: var(--yellow);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content li { margin-bottom: 6px; }

.legal-content a { color: var(--yellow); }
.legal-content a:hover { text-decoration: underline; }

.legal-intro {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 32px;
}

.legal-intro p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.legal-contact {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 16px;
}

.legal-contact p {
  line-height: 1.9;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.about-main h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  margin-top: 40px;
  color: var(--white);
}

.about-main h2:first-child { margin-top: 0; }

.about-main p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-main a.text-link {
  color: var(--yellow);
  font-weight: 600;
}

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

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.about-list li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  padding: 10px 0 10px 20px;
  position: relative;
  border-bottom: 1px solid var(--black-border);
}

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

.about-list li::before {
  content: '🍕';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.about-list li strong { color: var(--white); }

/* Contact Card */
.contact-card {
  background: var(--black-card);
  border: 1px solid rgba(255,214,0,0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--black-border);
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.contact-item span,
.contact-item a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: var(--transition-fast);
}

.contact-item a:hover { color: var(--yellow); }

/* ============================================================
   CONTACT SECTION (About Page)
   ============================================================ */
.contact-section { background: var(--black-soft); }

.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 12px 16px;
  transition: var(--transition-fast);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,214,0,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

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

/* ============================================================
   RELATED POSTS
   ============================================================ */
.related-posts {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--black-border);
}

.related-posts h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-yellow { color: var(--yellow); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .highlight-inner { grid-template-columns: repeat(2, 1fr); }
  .delivery-expect__inner { grid-template-columns: 1fr; }
  .delivery-expect__visual { max-width: 480px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .scenario-cards { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-side { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-card { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 56px 20px; }

  /* Navbar */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--black-border);
    z-index: 999;
  }

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

  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--gray-dark);
    border: none;
    padding: 4px 0 4px 16px;
    box-shadow: none;
    margin-top: 4px;
  }

  /* Hero */
  .hero-content { padding: 100px 20px 60px; max-width: 100%; }
  .hero-title { font-size: 2.8rem; }
  .hero-ctas { flex-direction: column; }
  .hero-stats { gap: 16px; }

  /* Grids */
  .cards-grid--3,
  .cards-grid--2 { grid-template-columns: 1fr; }

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

  .steps-grid { grid-template-columns: 1fr; }

  .delivery-expect__inner { grid-template-columns: 1fr; }

  /* Content layout */
  .content-with-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar { position: static; }

  /* Blog */
  .blog-layout { grid-template-columns: 1fr; }

  /* Legal */
  .legal-layout { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-side { display: flex; flex-direction: column; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Comparison */
  .comparison-cards { grid-template-columns: 1fr; }

  /* Info cards */
  .info-cards { grid-template-columns: 1fr; }

  /* Scenario cards */
  .scenario-cards { grid-template-columns: 1fr; }
  .scenario-cards--small { grid-template-columns: 1fr; }

  /* Char grid */
  .char-grid { grid-template-columns: 1fr; }

  /* Size guide */
  .size-row { grid-template-columns: repeat(3, 1fr); font-size: 0.75rem; }
  .size-row span:nth-child(4),
  .size-row span:nth-child(5) { display: none; }

  /* Time comparison */
  .time-comparison { grid-template-columns: 1fr; }
  .time-divider { display: none; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .page-hero__content h1 { font-size: 2rem; }
  .highlight-inner { grid-template-columns: 1fr; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
}