/* ================================================
   IT NICHE — Landing Page Styles
   Brand: #e57119 (Orange) | #000000 (Black)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #e57119;
  --orange-light: #f08432;
  --orange-dark: #c45e0f;
  --orange-glow: rgba(229, 113, 25, 0.15);
  --black: #000000;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --white: #ffffff;
  --white-dim: rgba(255,255,255,0.06);
  --white-border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', Lato, sans-serif;
  --font-body: Lato, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-orange: 0 0 40px rgba(229, 113, 25, 0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
p { color: var(--gray-light); font-size: 1rem; font-weight: 300; }

/* ── Layout ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid rgba(229,113,25,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; }

/* ── Divider Line ── */
.divider { height: 1px; background: var(--white-border); margin: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 100px; border: none;
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(229,113,25,0.35);
}
.btn-primary:hover {
  background: var(--orange-light);
  box-shadow: 0 6px 32px rgba(229,113,25,0.55);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white-border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-glow);
}
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Cards ── */
.card {
  background: var(--dark-2);
  border: 1px solid var(--white-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(229,113,25,0.3);
  background: var(--dark-3);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--orange-glow);
  border: 1px solid rgba(229,113,25,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; color: var(--orange); }
.card h3 { color: var(--white); margin-bottom: 10px; }
.card p { font-size: 0.92rem; }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--white-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 22px; height: 22px; color: var(--white); }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo-text span { color: var(--orange); }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; flex: 1; justify-content: center;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
  color: var(--gray-light);
  text-decoration: none;
  padding: 7px 11px; border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: var(--white-dim); }
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
  z-index: 999; padding: 32px 24px;
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--gray-light); text-decoration: none;
  padding: 14px 16px; border-radius: 12px;
  transition: var(--transition); border: 1px solid transparent;
}
.mobile-menu a:hover { color: var(--white); background: var(--white-dim); border-color: var(--white-border); }
.mobile-menu .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* ================================================
   HERO
   ================================================ */
#home {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(229,113,25,0.1) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(229,113,25,0.05) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.04;
  background-image:
    linear-gradient(var(--white) 1px, transparent 1px),
    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding: 80px 0;
}
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-glow); border: 1px solid rgba(229,113,25,0.25);
  border-radius: 100px; padding: 8px 16px; margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-badge span {
  font-family: var(--font-display); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.08em; color: var(--orange);
}
.hero-content h1 { margin-bottom: 24px; }
.hero-content h1 em {
  font-style: normal; color: var(--orange);
  position: relative;
}
.hero-content p { font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex; align-items: center; gap: 12px;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--white-border);
}
.hero-trust-stat { text-align: center; }
.hero-trust-stat strong {
  display: block; font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800; color: var(--white);
}
.hero-trust-stat span { font-size: 0.78rem; color: var(--gray); }
.hero-trust-divider { width: 1px; height: 40px; background: var(--white-border); }

/* Hero Illustration */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-illustration {
  width: 100%; max-width: 520px;
  position: relative;
}

/* ================================================
   BUILT FOR THE FUTURE
   ================================================ */
#built-for-the-future { background: var(--dark); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.features-grid .card:nth-child(4) { grid-column: 1 / 2; }
.features-grid .card:nth-child(5) { grid-column: 2 / 3; }
.features-grid .card:nth-child(6) { grid-column: 3 / 4; }

/* ================================================
   SIMPLE PROCESS
   ================================================ */
#simple-process { background: var(--dark-2); }
.process-track {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; align-items: start;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 1px; background: linear-gradient(90deg, var(--orange), rgba(229,113,25,0.2));
  z-index: 0;
}
.process-step {
  position: relative; z-index: 1;
  text-align: center; padding: 0 16px;
}
.process-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--dark);
  border: 1px solid var(--white-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
  color: var(--orange); position: relative; transition: var(--transition);
}
.process-step:hover .process-num {
  background: var(--orange); color: var(--white);
  box-shadow: var(--shadow-orange);
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; }

/* ================================================
   EVERYTHING YOU NEED
   ================================================ */
#everything-you-need { background: var(--dark); }
.features-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--dark-2);
  border: 1px solid var(--white-border);
  border-radius: var(--radius-xl); overflow: hidden;
}
.feature-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--white-border);
  transition: var(--transition);
}
.feature-item:nth-child(odd) { border-right: 1px solid var(--white-border); }
.feature-item:nth-last-child(-n+2) { border-bottom: none; }
.feature-item:hover { background: var(--dark-3); }
.feature-check {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--orange-glow);
  border: 1px solid rgba(229,113,25,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.feature-check svg { width: 15px; height: 15px; color: var(--orange); }
.feature-text {
  font-family: var(--font-display); font-size: 0.92rem;
  font-weight: 600; color: var(--white);
  line-height: 1.4; padding-top: 3px;
}

/* ================================================
   BONUS OFFER
   ================================================ */
#bonus-offer {
  background: var(--dark-2); position: relative; overflow: hidden;
}
.bonus-card {
  background: var(--dark);
  border: 1px solid rgba(229,113,25,0.3);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.bonus-card::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,113,25,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-amount {
  font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800; color: var(--orange); line-height: 1;
  margin-bottom: 8px;
}
.bonus-subtitle {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 700; color: var(--white); margin-bottom: 20px;
}
.bonus-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bonus-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--gray-light);
}
.bonus-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ================================================
   WHY IT NICHE
   ================================================ */
#why-it-niche { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-card {
  background: var(--dark-2); border: 1px solid var(--white-border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(229,113,25,0.3);
  background: var(--dark-3);
}
.why-number {
  font-family: var(--font-display); font-size: 2.8rem;
  font-weight: 800; color: var(--orange);
  margin-bottom: 4px; line-height: 1;
}
.why-card h3 { color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 0.92rem; }

/* ================================================
   WHO WE WORK WITH
   ================================================ */
#who-we-work-with { background: var(--dark-2); }
.industries-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.industry-item {
  background: var(--dark); border: 1px solid var(--white-border);
  border-radius: var(--radius); padding: 24px 16px;
  text-align: center; transition: var(--transition); cursor: default;
}
.industry-item:hover {
  border-color: rgba(229,113,25,0.4); background: var(--dark-3);
  transform: translateY(-2px);
}
.industry-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--orange-glow); border: 1px solid rgba(229,113,25,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.industry-icon svg { width: 22px; height: 22px; color: var(--orange); }
.industry-name {
  font-family: var(--font-display); font-size: 0.82rem;
  font-weight: 600; color: var(--white); line-height: 1.3;
}

/* ================================================
   CLIENT VOICES
   ================================================ */
#client-voices { background: var(--dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--dark-2); border: 1px solid var(--white-border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition); position: relative;
}
.testimonial:hover {
  border-color: rgba(229,113,25,0.25);
  transform: translateY(-3px);
}
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 16px;
}
.star { color: var(--orange); font-size: 1rem; }
.testimonial blockquote {
  font-size: 0.95rem; color: var(--gray-light);
  font-style: italic; line-height: 1.7; margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  color: var(--white); font-size: 0.9rem; flex-shrink: 0;
}
.author-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.88rem; color: var(--white);
}
.author-title { font-size: 0.78rem; color: var(--gray); }

/* ================================================
   FAQ
   ================================================ */
#common-questions { background: var(--dark-2); }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--dark); border: 1px solid var(--white-border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(229,113,25,0.3); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; cursor: pointer; gap: 16px;
  font-family: var(--font-display); font-size: 0.98rem;
  font-weight: 600; color: var(--white); user-select: none;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: var(--white-dim); border: 1px solid var(--white-border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--orange-glow); border-color: rgba(229,113,25,0.3);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--gray-light); transition: var(--transition); }
.faq-item.open .faq-icon svg { color: var(--orange); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.92rem; border-top: 1px solid var(--white-border);
  padding-top: 16px;
}

/* ================================================
   FINAL CTA
   ================================================ */
#final-cta {
  background: var(--dark);
  position: relative; overflow: hidden; text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(229,113,25,0.12) 0%, transparent 65%);
}
.cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-content h2 { margin-bottom: 16px; }
.cta-content p { font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 0.82rem; color: var(--gray); }

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--white-border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-brand p { font-size: 0.88rem; margin-top: 14px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem; color: var(--gray);
  text-decoration: none; transition: var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--white-border);
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.8rem; color: var(--gray);
  text-decoration: none; transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid .card:nth-child(n) { grid-column: auto; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { max-width: 100%; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-visual { order: -1; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-track::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .features-list { grid-template-columns: 1fr; }
  .feature-item:nth-child(odd) { border-right: none; }
  .feature-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--white-border); }
  .feature-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .process-track { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { flex-direction: column; gap: 20px; }
  .hero-trust-divider { width: 80px; height: 1px; }
}


/* ===== Header Responsive Fixes ===== */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

header, .navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.navbar,
.nav-container,
.container {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

.navbar {
  border-radius: 0 0 20px 20px;
}

.navbar a,
.nav-link {
  transition: all .3s ease;
}

.navbar a:hover,
.nav-link:hover {
  transform: translateY(-2px);
}

.hero {
  padding-top: 120px !important;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .navbar,
  .nav-container {
    width: calc(100% - 1rem);
    padding: 0.75rem 1rem !important;
  }

  .hero {
    padding-top: 100px !important;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem) !important;
    line-height: 1.15;
  }

  .hero p {
    font-size: 1rem !important;
  }
}

@media (max-width: 768px) {
  .navbar {
    border-radius: 0 0 16px 16px;
  }

  .hero {
    text-align: center;
    padding-top: 90px !important;
  }

  section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .btn,
  button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
  }

  .navbar,
  .nav-container {
    padding: 0.65rem 0.85rem !important;
  }
}
