/* ============================================
   PIZZA LOGISTICS HUB - MAIN STYLESHEET
   Theme: Industrial Logistics
   Colors: Dark Grey BG | Yellow Accents | White Text
   ============================================ */

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

:root {
  --bg-primary:    #1a1a1a;
  --bg-secondary:  #222222;
  --bg-card:       #2a2a2a;
  --bg-dark:       #111111;
  --accent:        #f5c518;
  --accent-hover:  #e0b010;
  --accent-light:  #ffd84d;
  --white:         #ffffff;
  --grey-light:    #cccccc;
  --grey-mid:      #888888;
  --grey-border:   #3a3a3a;
  --font-heading:  'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:     'Inter', 'Segoe UI', Arial, sans-serif;
  --max-width:     1200px;
  --radius:        4px;
  --transition:    0.25s ease;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

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

/* ---------- LAYOUT UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--dark { background-color: var(--bg-dark); }
.section--alt  { background-color: var(--bg-secondary); }

.section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
  margin-bottom: 14px;
}

.section__title {
  margin-bottom: 16px;
  color: var(--white);
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--grey-mid);
  max-width: 640px;
  margin-bottom: 48px;
}

.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.text-center .section__subtitle { margin-left: auto; margin-right: auto; }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-dark);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Desktop Nav */
.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav-desktop a:hover,
.nav-desktop a.active {
  background: rgba(245,197,24,0.12);
  color: var(--accent);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-bottom: 2px solid var(--accent);
  z-index: 999;
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav-mobile a:hover,
.nav-mobile a.active {
  background: rgba(245,197,24,0.12);
  color: var(--accent);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-dark);
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.95) 40%, rgba(17,17,17,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.12);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 5px 14px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--white);
}

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

.hero p {
  font-size: 1.1rem;
  color: var(--grey-light);
  max-width: 580px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}
.btn-primary:hover {
  background: var(--accent-light);
  color: var(--bg-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245,197,24,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: rgba(245,197,24,0.1);
  color: var(--accent-light);
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero stats bar */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--grey-border);
  padding-top: 32px;
}

.hero-stat {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid var(--grey-border);
  margin-right: 24px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; }

.hero-stat__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.hero-stat__label {
  font-size: 0.8rem;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  display: block;
}

/* ---------- CARDS ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--white);
}

.card p { font-size: 0.95rem; }

/* ---------- FEATURE ROWS ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--grey-border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }

.feature-visual {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--grey-border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-text h3 {
  margin-bottom: 16px;
  color: var(--white);
}
.feature-text p { margin-bottom: 16px; }

/* Feature list */
.feature-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--grey-light);
}
.feature-list li::before {
  content: '▸';
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- INFO BLOCKS ---------- */
.info-block {
  background: var(--bg-card);
  border: 1px solid var(--grey-border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 24px;
}

.info-block h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.info-block p { font-size: 0.95rem; margin-bottom: 0; }

/* ---------- PROCESS STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--grey-border) 100%);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--accent);
}

.step h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--white);
}
.step p { font-size: 0.85rem; color: var(--grey-mid); }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(245,197,24,0.05); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: var(--bg-dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  border-top: 1px solid var(--grey-border);
  padding-top: 20px;
}

.faq-answer-inner p { font-size: 0.95rem; color: var(--grey-light); }

/* ---------- PAGE HERO (Inner pages) ---------- */
.page-hero {
  background: var(--bg-dark);
  border-bottom: 2px solid var(--grey-border);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
  margin-bottom: 14px;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  font-size: 1.1rem;
  max-width: 640px;
  color: var(--grey-light);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--grey-mid);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--grey-mid); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ---------- TABLE ---------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.data-table th {
  background: var(--bg-dark);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--accent);
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--grey-border);
  color: var(--grey-light);
}
.data-table tr:hover td { background: rgba(245,197,24,0.04); }
.data-table tr:last-child td { border-bottom: none; }

/* ---------- HIGHLIGHT BOX ---------- */
.highlight-box {
  background: linear-gradient(135deg, rgba(245,197,24,0.08) 0%, rgba(245,197,24,0.03) 100%);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}

.highlight-box h3 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.highlight-box p { font-size: 1rem; margin-bottom: 0; }

/* ---------- DISCLAIMER BANNER ---------- */
.disclaimer {
  background: rgba(245,197,24,0.05);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--grey-mid);
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.disclaimer-icon { color: var(--accent); flex-shrink: 0; font-size: 1rem; margin-top: 2px; }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-border);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-item-text span, .contact-item-text a {
  color: var(--grey-light);
  font-size: 0.95rem;
}

.map-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--grey-mid);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

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

.about-sidebar {
  position: sticky;
  top: 84px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.sidebar-card-header {
  background: var(--accent);
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-dark);
}

.sidebar-card-body { padding: 20px; }

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--grey-light);
  font-size: 0.9rem;
  transition: all var(--transition);
  margin-bottom: 2px;
}
.sidebar-nav-link:hover, .sidebar-nav-link.active {
  background: rgba(245,197,24,0.1);
  color: var(--accent);
}
.sidebar-nav-link::before {
  content: '▸';
  color: var(--accent);
  font-size: 0.75rem;
}

/* ---------- PRIVACY ---------- */
.prose {
  max-width: 800px;
}
.prose h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--white);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-border);
}
.prose h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--accent);
}
.prose p { font-size: 0.97rem; }
.prose ul {
  list-style: none;
  margin: 12px 0 20px 0;
  padding: 0;
}
.prose ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.95rem;
  color: var(--grey-light);
}
.prose ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-dark);
  border-top: 2px solid var(--grey-border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--grey-border);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--grey-mid);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--grey-mid);
  margin: 0;
}

.footer-disclaimer {
  background: rgba(255,255,255,0.03);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--grey-mid);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ---------- TAG / BADGE ---------- */
.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  background: rgba(245,197,24,0.15);
  color: var(--accent);
  border: 1px solid rgba(245,197,24,0.3);
}

/* ---------- DIVIDER ---------- */
.divider {
  height: 1px;
  background: var(--grey-border);
  margin: 40px 0;
}

.divider--accent {
  background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
}

/* ---------- GRID LAYOUTS ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---------- STAT CARDS ---------- */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.stat-card .number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stat-card .label {
  font-size: 0.82rem;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  display: block;
}
.stat-card .sublabel {
  font-size: 0.78rem;
  color: var(--grey-mid);
  margin-top: 6px;
  display: block;
}

/* ---------- NOTICE BOX ---------- */
.notice {
  background: var(--bg-card);
  border: 1px solid var(--grey-border);
  border-left: 4px solid #e74c3c;
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.notice--info { border-left-color: var(--accent); }
.notice-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.notice-body strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.notice-body p { font-size: 0.9rem; margin: 0; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }

  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--grey-border); padding-bottom: 20px; margin-right: 0; padding-right: 0; }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }

  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-text { order: 1; }
  .feature-row.reverse .feature-visual { order: 2; }

  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--grey-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }