/* =============================================================
   styles.css — IT Maverick Solutions
   Extracted from index.html for clean separation of concerns
   ============================================================= */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --bg: #121212;
  --surface: #1e1e1e;
  --surface-hover: #252525;
  --text: #f3f4f6;
  --text-muted: #9ca3af;
  --accent: #facc15;
  --accent-glow: rgba(250, 204, 21, 0.2);
  --white-glow: rgba(255, 255, 255, 0.08);
  --border: #333;
  --font-main: 'Inter', -apple-system, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-break: break-word;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 100px 0;
}

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

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
  background: #eab308;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 204, 21, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--text);
  background: var(--white-glow);
}

/* ── Navbar ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 0.9rem;
  font-weight: 500;
}

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

/* Active nav link — highlighted by GSAP ScrollTrigger */
.nav-links a.nav-active {
  color: var(--accent);
  position: relative;
}

.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-glow);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-btns {
  display: none;
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-orbit-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 40px;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--surface);
  border: 2px solid var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  z-index: 10;
  box-shadow: 0 0 30px var(--white-glow);
}

.orbit-item {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  z-index: 5;
  transition: transform 0.1s;
}

.orb-1 {
  top: 10%;
  left: 10%;
  color: #61dafb;
  animation: float1 4s ease-in-out infinite alternate;
}

.orb-2 {
  top: 10%;
  right: 10%;
  color: var(--accent);
  animation: float2 5s ease-in-out infinite alternate;
}

.orb-3 {
  bottom: 10%;
  left: 15%;
  color: #3ddc84;
  animation: float3 4.5s ease-in-out infinite alternate;
}

.orb-4 {
  bottom: 15%;
  right: 10%;
  color: #fff;
  animation: float4 5.5s ease-in-out infinite alternate;
}

@keyframes float1 {
  0% {
    transform: translateY(0) rotate(0);
  }

  100% {
    transform: translateY(-15px) rotate(10deg);
  }
}

@keyframes float2 {
  0% {
    transform: translateY(0) rotate(0);
  }

  100% {
    transform: translateY(15px) rotate(-10deg);
  }
}

@keyframes float3 {
  0% {
    transform: translateY(0) rotate(0);
  }

  100% {
    transform: translateY(-10px) rotate(15deg);
  }
}

@keyframes float4 {
  0% {
    transform: translateY(0) rotate(0);
  }

  100% {
    transform: translateY(20px) rotate(-5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 650px;
  margin-inline: auto;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.typewriter-text {
  border-right: 2px solid var(--accent);
  padding-right: 5px;
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* ── Logo Carousel (Trusted By) ────────────────────────────── */
.trusted-by {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.trusted-inner {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.trusted-inner:hover {
  animation-play-state: paused;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #555;
  margin: 0 40px;
  transition: color 0.3s;
  cursor: default;
}

.trust-logo:hover {
  color: var(--text);
}

.trust-logo i {
  font-size: 1.5rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Dual Core Services ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.service-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.panel-tech {
  border-top: 3px solid var(--accent);
}

.panel-tech:hover {
  box-shadow: 0 0 40px var(--accent-glow);
  border-color: var(--accent);
}

.panel-tech .panel-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 204, 21, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.panel-tech:hover .panel-bg {
  opacity: 1;
}

.panel-tech:hover .tech-rain {
  opacity: 0.1;
}

.tech-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><text y="15" fill="%23facc15" font-size="10" font-family="monospace">1 0</text></svg>');
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.panel-comp {
  border-top: 3px solid #fff;
}

.panel-comp:hover {
  box-shadow: 0 0 40px var(--white-glow);
  border-color: #fff;
}

.panel-comp .panel-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.panel-comp:hover .panel-bg {
  opacity: 1;
}

.panel-content {
  position: relative;
  z-index: 10;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.panel-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.panel-tech .panel-icon {
  background: rgba(250, 204, 21, 0.1);
  color: var(--accent);
}

.panel-comp .panel-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-list li {
  padding-left: 0;
}

.service-list h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-tech h4::before {
  content: '/>';
  color: var(--accent);
  font-family: monospace;
  font-size: 0.9rem;
}

.panel-comp h4::before {
  content: '§';
  color: #888;
  font-family: serif;
  font-size: 1.1rem;
}

.service-list p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Founder Corner ────────────────────────────────────────── */
.founder-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.founder-stats-panel {
  background: var(--surface);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 36px;
  border-top: 3px solid var(--accent);
}

.founder-stats-panel .role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 204, 21, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.founder-stats-panel h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.founder-stats-panel .sub-role {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

.founder-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.kpi-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 16px 14px;
}

.kpi-item .kpi-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.kpi-item .kpi-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: monospace;
}

.bio-title {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.bio-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.bio-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.skills-box {
  margin-bottom: 40px;
}

.skill {
  margin-bottom: 15px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 0.9rem;
  font-weight: 600;
}

.progress-bg {
  width: 100%;
  height: 6px;
  background: var(--surface);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 1.5s cubic-bezier(0.1, 0.5, 0.1, 1);
}

.pb-comp {
  background: #fff;
}

/* ── Internships / Growth ──────────────────────────────────── */
.growth-section {
  background: var(--surface);
  padding: 80px 0 0 0;
  border-top: 1px solid var(--border);
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

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

.stat-item {
  text-align: left;
}

.stat-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.intern-list {
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.intern-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
}

.intern-list i {
  color: var(--accent);
}

.ticker-wrap {
  width: 100%;
  background: var(--accent);
  color: #000;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.ticker-move {
  display: inline-block;
  animation: ticker 20s linear infinite;
}

.ticker-item {
  display: inline-block;
  padding: 0 40px;
}

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

  100% {
    transform: translateX(-50%);
  }
}

/* ── Why Us ────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.why-card {
  background: var(--surface);
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: #555;
}

.why-icon {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 5% 30px;
  background: #0a0a0a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h2 {
  font-size: 1.5rem;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.footer-brand h2 span {
  color: var(--accent);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links h4 {
  margin-bottom: 20px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 15px;
}

/* ── Mobile Menu Overlay ──────────────────────────────────── */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.mobile-menu-overlay.active {
  display: block;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 992px) {

  .services-grid,
  .founder-wrap,
  .growth-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-wrap {
    display: flex;
    flex-direction: column-reverse;
  }

  .founder-image-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-orbit-container {
    width: 250px;
    height: 250px;
  }

  .section {
    padding: 70px 0;
  }

  .bio-heading {
    font-size: 2rem;
  }

  .stat-num {
    font-size: 2.8rem;
  }

  .growth-stats {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    border-left: 1px solid var(--border);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
    z-index: 1001;
    overflow-y: auto;
  }

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

  .nav-links a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-btns {
    display: none !important;
  }

  .nav-links .mobile-nav-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .nav-links .mobile-nav-btns .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px !important;
    font-size: 0.85rem !important;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1002;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom div:last-child {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .trusted-by {
    padding: 30px 0;
  }

  .trust-logo {
    font-size: 1rem;
    margin: 0 25px;
  }

  .section {
    padding: 60px 0;
  }

  .service-panel {
    padding: 30px 24px;
  }

  .panel-header h3 {
    font-size: 1.2rem;
  }

  .founder-stats-panel {
    padding: 28px 24px;
  }

  .why-card {
    padding: 30px 24px;
  }

  .why-grid {
    gap: 20px;
  }

  footer {
    padding: 40px 5% 24px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 12px 4%;
  }

  .nav-logo {
    font-size: 1.25rem;
  }

  .container {
    padding: 0 4%;
  }

  .hero {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 0.92rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .hero-orbit-container {
    width: 200px;
    height: 200px;
    margin-bottom: 24px;
  }

  .orbit-center {
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
  }

  .orbit-item {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }

  .section {
    padding: 50px 0;
  }

  .service-panel {
    padding: 24px 18px;
  }

  .founder-kpis {
    gap: 10px;
  }

  .kpi-item {
    padding: 12px 10px;
  }

  .kpi-item .kpi-num {
    font-size: 1.4rem;
  }

  .bio-heading {
    font-size: 1.6rem;
  }

  .bio-text {
    font-size: 1rem;
  }

  .stat-num {
    font-size: 2.2rem;
  }

  .ticker-wrap {
    font-size: 0.78rem;
  }

  .why-card {
    padding: 24px 18px;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    gap: 8px;
  }

  .footer-bottom div:last-child {
    gap: 8px;
    font-size: 0.72rem;
  }

  footer {
    padding: 30px 4% 20px;
  }

  .footer-links h4 {
    margin-bottom: 12px;
    font-size: 0.9rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 3%;
  }

  nav {
    padding: 10px 3%;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .section {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.88rem;
  }

  .hero-orbit-container {
    width: 170px;
    height: 170px;
    margin-bottom: 20px;
  }

  .orbit-center {
    width: 68px;
    height: 68px;
    font-size: 1rem;
  }

  .orbit-item {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .service-panel {
    padding: 20px 14px;
  }

  .panel-header {
    gap: 10px;
    margin-bottom: 20px;
  }

  .panel-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .panel-header h3 {
    font-size: 1.05rem;
  }

  .founder-stats-panel {
    padding: 22px 16px;
  }

  .founder-stats-panel h3 {
    font-size: 1.6rem;
  }

  .kpi-item .kpi-num {
    font-size: 1.2rem;
  }

  .kpi-item .kpi-label {
    font-size: 0.72rem;
  }

  .bio-heading {
    font-size: 1.4rem;
  }

  .bio-text {
    font-size: 0.92rem;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .why-card {
    padding: 20px 14px;
  }

  .why-card h3 {
    font-size: 1.05rem;
  }

  .why-card p {
    font-size: 0.88rem;
  }

  footer {
    padding: 28px 3% 16px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-brand h2 {
    font-size: 1.25rem;
  }

  .footer-brand p {
    font-size: 0.82rem;
  }

  .footer-links h4 {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 0.82rem;
  }

  .footer-bottom {
    margin-top: 24px;
    padding-top: 14px;
    font-size: 0.7rem;
  }

  .footer-bottom div:last-child {
    font-size: 0.68rem;
    gap: 6px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}