/* ============================================================
   KOLT – Unlimited Design & Marketing | Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Inter:wght@400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --red:        #E40146;
  --dark-red:   #8A012B;
  --black:      #000000;
  --dark:       #191919;
  --white:      #FFFFFF;
  --beige:      #EFEAE3;
  --border:     #191919;
  --max-w:      1140px;
  --radius:     8px;
  --transition: 0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover { background: var(--red); border-color: var(--red); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover { background: var(--dark-red); border-color: var(--dark-red); }

/* ── Section spacing ───────────────────────────────────────── */
.section { padding: 80px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-beige { background: var(--beige); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 16px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p { font-size: 21px; color: var(--dark); max-width: 640px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.75); }

/* ── NAV ───────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { max-width: 140px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
  transition: color var(--transition);
}
.nav-menu a:hover { color: var(--red); }
.nav-ctas { display: flex; align-items: center; gap: 12px; }
.nav-ctas .btn { padding: 10px 22px; font-size: 14px; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 24px;
}
.hero-content h1 span { color: var(--red); }
.hero-content p {
  font-size: 21px;
  color: #555;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image img { border-radius: 16px; width: 100%; }

/* ── STATS ─────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 18px; font-weight: 500; }

/* ── SERVICES / FEATURE CARDS ──────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: background var(--transition), color var(--transition);
}
.service-card:hover { background: var(--black); color: var(--white); }
.service-card:hover h3 { color: var(--white); }
.service-icon { font-size: 28px; margin-bottom: 16px; }
.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}
.service-card p { font-size: 17px; line-height: 1.6; }

/* ── ALTERNATING FEATURE ROWS ──────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-text h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 20px;
}
.feature-text p { font-size: 19px; color: #555; margin-bottom: 20px; }
.feature-list { list-style: none; }
.feature-list li {
  padding: 8px 0;
  font-size: 17px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.feature-list li::before { content: "✓"; color: var(--red); font-weight: 700; flex-shrink: 0; }
.feature-image img { border-radius: 12px; width: 100%; }

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  border: 2px solid #191919;
  border-radius: var(--radius);
  padding: 32px;
  background: var(--black);
  color: var(--white);
}
.stars { color: var(--red); font-size: 18px; margin-bottom: 16px; }
.testimonial-card blockquote { font-size: 17px; line-height: 1.7; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.author-name { font-weight: 700; font-size: 15px; }
.author-title { font-size: 13px; opacity: 0.6; }

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.toggle-label { font-weight: 600; font-size: 16px; }
.toggle-switch {
  position: relative;
  width: 56px;
  height: 28px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--red);
  border-radius: 28px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 4px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
}
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(28px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { border-color: var(--red); box-shadow: 0 8px 32px rgba(228,1,70,0.12); }
.pricing-card.featured {
  border-color: var(--red);
  background: var(--black);
  color: var(--white);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.plan-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price span { font-size: 20px; font-weight: 400; }
.plan-period { font-size: 14px; opacity: 0.6; margin-bottom: 28px; }
.plan-features { margin-bottom: 32px; }
.plan-features li {
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pricing-card.featured .plan-features li { border-color: rgba(255,255,255,0.1); }
.plan-features li::before { content: "✓"; color: var(--red); font-weight: 700; flex-shrink: 0; }
.plan-features li.unavailable { opacity: 0.4; }
.plan-features li.unavailable::before { content: "✕"; color: #999; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--dark);
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--red);
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p { padding: 0 0 24px; font-size: 17px; color: #555; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 500px; }

/* ── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 100px 24px;
}
.cta-banner h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-banner p { font-size: 20px; opacity: 0.8; margin-bottom: 40px; }
.cta-banner .btn-primary:hover { background: var(--red); border-color: var(--red); }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--black); color: var(--white); padding: 72px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 15px;
  opacity: 0.6;
  margin-top: 20px;
  max-width: 320px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 15px;
  opacity: 0.6;
  transition: opacity var(--transition), color var(--transition);
}
.footer-col ul li a:hover { opacity: 1; color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  opacity: 0.5;
}

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  background: var(--beige);
  padding: 40px 0;
  margin-bottom: 0;
}
.breadcrumb h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 8px;
}
.breadcrumb-trail { font-size: 14px; opacity: 0.6; }
.breadcrumb-trail a { color: var(--red); }

/* ── CONTACT FORM ───────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-info p { font-size: 18px; color: #555; margin-bottom: 36px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-weight: 700; margin-bottom: 2px; }
.contact-detail-text span { font-size: 15px; color: #666; }

.contact-form { background: var(--beige); padding: 44px; border-radius: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: white;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── BLOG ───────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-category {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.blog-card-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card-body p { font-size: 15px; color: #666; margin-bottom: 16px; }
.blog-meta { font-size: 13px; color: #999; }

/* ── BLOG POST ──────────────────────────────────────────────── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.post-content h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}
.post-meta { font-size: 14px; color: #999; margin-bottom: 32px; display: flex; gap: 20px; flex-wrap: wrap; }
.post-featured-img { border-radius: 12px; width: 100%; margin-bottom: 36px; }
.post-body h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin: 36px 0 16px;
}
.post-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 21px;
  font-weight: 700;
  margin: 28px 0 12px;
}
.post-body p { font-size: 17px; line-height: 1.8; color: #333; margin-bottom: 18px; }
.post-body ol, .post-body ul { padding-left: 24px; margin-bottom: 18px; }
.post-body li { font-size: 17px; line-height: 1.7; margin-bottom: 8px; }
.post-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--beige);
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ── PORTFOLIO ──────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f5f5f5;
}
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: white;
  margin-bottom: 8px;
}
.portfolio-overlay a {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
}

/* ── PORTFOLIO DETAIL ───────────────────────────────────────── */
.portfolio-detail { display: grid; grid-template-columns: 1fr 280px; gap: 60px; padding: 60px 0; }
.portfolio-detail-info h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 24px;
}
.portfolio-detail-info h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 12px;
}
.portfolio-detail-info h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 24px 0 10px;
}
.portfolio-detail-info p { font-size: 17px; line-height: 1.8; color: #444; margin-bottom: 16px; }
.portfolio-detail-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.portfolio-detail-images img { border-radius: 8px; width: 100%; }
.portfolio-meta { background: var(--beige); padding: 28px; border-radius: 12px; position: sticky; top: 90px; }
.portfolio-meta h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--black);
}
.meta-item { margin-bottom: 16px; }
.meta-item strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.5; margin-bottom: 4px; }
.meta-item span { font-size: 16px; font-weight: 600; }

/* ── SOCIAL ICONS ───────────────────────────────────────────── */
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  transition: background var(--transition), border-color var(--transition);
}
.social-link:hover { background: var(--red); border-color: var(--red); }

/* ── PAGE HERO (non-home) ───────────────────────────────────── */
.page-hero {
  background: var(--beige);
  padding: 72px 0;
  text-align: center;
}
.page-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}
.page-hero p { font-size: 20px; color: #666; max-width: 600px; margin: 0 auto 12px; }
.page-hero-breadcrumb { font-size: 14px; color: #999; }
.page-hero-breadcrumb a { color: var(--red); }

/* ── CUSTOMER SUPPORT ───────────────────────────────────────── */
.support-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.support-img img { border-radius: 16px; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 60px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { display: none; }
  .portfolio-detail { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .support-layout { grid-template-columns: 1fr; }
  .nav-menu, .nav-ctas { display: none; }
  .nav-toggle { display: flex; }

  /* mobile menu open */
  .nav-open .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 40px 24px;
    gap: 24px;
    align-items: flex-start;
    z-index: 999;
    font-size: 20px;
    overflow-y: auto;
  }
  .nav-open .nav-ctas {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 32px;
    left: 24px;
    right: 24px;
    z-index: 999;
  }
  .portfolio-detail-images { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── UTILITY ─────────────────────────────────────────────────── */
.text-red { color: var(--red); }
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
