/* === CSS Variables === */
:root {
  --bg-dark: #0A0A14;
  --bg-card: #111122;
  --bg-card-hover: #181830;
  --primary: #7C3AED;
  --primary-glow: #A78BFA;
  --accent: #F43F5E;
  --text: #E2E8F0;
  --text-muted: #94A3B8;
  --border: rgba(124, 58, 237, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Nav === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 20, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* === Hero === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.5);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, var(--bg-dark) 100%),
              linear-gradient(180deg, rgba(10,10,20,0.3) 0%, rgba(10,10,20,0.7) 60%, var(--bg-dark) 100%);
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  padding: 0 24px;
  animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-glow);
  border: 1px solid rgba(167, 139, 250, 0.3);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

.title-line.accent {
  background: linear-gradient(135deg, var(--primary-glow), var(--primary), #6D28D9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  animation: fadeUp 0.8s ease-out 0.15s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 0.3s both;
}

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 0 50px rgba(124, 58, 237, 0.55);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* === Hero Scroll === */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeUp 0.8s ease-out 0.6s both;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* === Sections === */
section {
  padding: 120px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-glow);
  margin-bottom: 16px;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 500px;
}

/* === About === */
.about {
  background: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  display: flex;
  justify-content: center;
}

.about-image {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-placeholder {
  width: 80px;
  height: 80px;
  color: var(--primary-glow);
  opacity: 0.6;
}

.about-image-glow {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--primary), transparent);
  opacity: 0.15;
  animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
  to { transform: rotate(360deg); }
}

.about-text h2 {
  margin-bottom: 20px;
}

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

.about-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-glow);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === YouTube === */
.youtube {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.youtube::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.yt-card {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all var(--transition);
  cursor: pointer;
}

.yt-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.yt-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1030, #0d0d2b);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.yt-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transition: transform var(--transition);
}

.yt-card:hover .yt-play {
  transform: scale(1.1);
}

.yt-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 20px 20px 6px;
}

.yt-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0 20px 20px;
}

.yt-cta {
  text-align: center;
}

/* === Services === */
.services {
  background: var(--bg-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 28px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--primary-glow);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === Contact === */
.contact {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-card > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.contact-link svg {
  width: 20px;
  height: 20px;
  color: var(--primary-glow);
}

.contact-link:hover {
  color: var(--text);
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.social-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary-glow);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

/* === Footer === */
.footer {
  background: var(--bg-dark);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

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

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

/* ============================================ */
/* === SPOTLIGHT ALTERNATIVE PAGE ============ */
/* ============================================ */

.page-spotlight-alt {
  background: var(--bg-dark);
}

/* --- Hero --- */
.sp-hero {
  padding: 140px 32px 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.sp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.sp-hero-text {
  animation: fadeUp 0.8s ease-out;
}

.sp-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #22C55E;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.sp-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #fff;
}

.sp-hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.sp-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Chat Mockup --- */
.sp-hero-visual {
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.sp-chat-mockup {
  width: 100%;
  max-width: 420px;
  background: #111122;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 60px rgba(124, 58, 237, 0.08);
}

.sp-chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sp-chat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #334155;
}

.sp-chat-header span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
}

.sp-chat-body {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 340px;
  overflow-y: auto;
}

.sp-msg {
  font-size: 0.85rem;
  padding: 10px 14px;
  border-radius: 16px;
  max-width: 85%;
  line-height: 1.45;
  animation: fadeUp 0.4s ease-out both;
}

.sp-msg:nth-child(1) { animation-delay: 0.3s; }
.sp-msg:nth-child(2) { animation-delay: 0.6s; }
.sp-msg:nth-child(3) { animation-delay: 0.9s; }
.sp-msg:nth-child(4) { animation-delay: 1.2s; }
.sp-msg:nth-child(5) { animation-delay: 1.5s; }
.sp-msg:nth-child(6) { animation-delay: 1.8s; }

.sp-msg-user {
  align-self: flex-end;
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 6px;
}

.sp-msg-site {
  align-self: flex-start;
  background: #1a1a30;
  color: var(--text);
  border-bottom-left-radius: 6px;
}

.sp-link {
  color: #22C55E;
  text-decoration: underline;
}

/* --- Steps --- */
.sp-steps {
  background: var(--bg-card);
  position: relative;
}

.sp-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.sp-steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 40px;
}

.sp-step {
  flex: 1;
  text-align: center;
}

.sp-step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #22C55E;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.8;
}

.sp-step h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.sp-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.sp-step-arrow {
  font-size: 1.8rem;
  color: #22C55E;
  opacity: 0.4;
  padding-top: 20px;
  flex-shrink: 0;
}

/* --- Compare Table --- */
.sp-compare {
  background: var(--bg-dark);
}

.sp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

.sp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.sp-table thead th {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 20px;
  text-align: left;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sp-table thead th:first-child {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.85rem;
}

.sp-col-spotlight {
  color: #F43F5E;
}

.sp-col-alt {
  color: #22C55E;
}

.sp-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  color: var(--text-muted);
}

.sp-table tbody td:first-child {
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.sp-table tbody tr:last-child td {
  border-bottom: none;
}

.sp-table tbody tr:hover td {
  background: rgba(255,255,255,0.015);
}

/* --- Audience --- */
.sp-audience {
  background: var(--bg-card);
  position: relative;
}

.sp-audience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.sp-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.sp-audience-card {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.sp-audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.sp-audience-spotlight {
  border-top: 2px solid #F43F5E;
}

.sp-audience-alt {
  border-top: 2px solid #22C55E;
}

.sp-audience-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.sp-audience-spotlight .sp-audience-label {
  color: #F43F5E;
  background: rgba(244, 63, 94, 0.1);
}

.sp-audience-alt .sp-audience-label {
  color: #22C55E;
  background: rgba(34, 197, 94, 0.1);
}

.sp-audience-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.sp-audience-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}

.sp-audience-card .btn {
  margin-top: auto;
}

/* --- CTA --- */
.sp-cta {
  background: var(--bg-dark);
}

.sp-cta-card {
  text-align: center;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 64px 48px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.sp-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #22C55E, transparent);
}

.sp-cta-card h2 {
  margin-bottom: 16px;
}

.sp-cta-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 32px;
}

/* --- Responsive Spotlight Alt --- */
@media (max-width: 768px) {
  .sp-hero {
    padding: 120px 20px 80px;
  }

  .sp-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sp-hero-visual {
    order: -1;
  }

  .sp-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .sp-steps-grid {
    flex-direction: column;
    gap: 8px;
  }

  .sp-step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
    text-align: center;
  }

  .sp-audience-grid {
    grid-template-columns: 1fr;
  }

  .sp-cta-card {
    padding: 40px 24px;
  }

  .sp-table thead th,
  .sp-table tbody td {
    padding: 12px 14px;
    font-size: 0.82rem;
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .yt-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  section {
    padding: 80px 0;
  }
}