body {
  color: #f3f3f3
}

h1, h2, h3, h4, h5, h6 {
  color: #f3f3f3
}

p {
  color: #e0e0e0
}

.muted {
  color: #bdbdbd
}

body.light {
  color: #333
}

body.light h1, body.light h2, body.light h3, body.light h4, body.light h5, body.light h6 {
  color: #333
}

body.light p {
  color: #555
}

body.light .muted {
  color: #666
}

.btn-primary, .cta {
  color: #111
}

:root {
  --bg: #0f0f10;
  --muted: #f3f3f3;
  --accent: #ffb400;
  --card: #121214;
  --glass: rgba(255, 255, 255, 0.03);
  --radius: 16px;
  --max: 1400px;
  --fluid-min-width: 320px;
  --fluid-max-width: 1400px;
}

*, *::before, *::after {
  box-sizing: border-box
}

html {
  font-size: clamp(14px, 2.5vw, 16px);
  scroll-behavior: smooth
}

html, body {
  height: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw
}

body {
  margin: 0;
  font-family: Inter, system-ui, Arial;
  background: linear-gradient(180deg, #040405 0%, #0c0c0d 100%);
  color: #f3f3f3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  transition: all 0.3s ease;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body.light {
  background: #f9fafb;
  color: #1f2937;
}

body.light header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb
}

body.light .brand h1 {
  color: #1f2937
}

body.light nav a {
  color: #6b7280
}

body.light .menu-btn {
  color: #6b7280
}

body.light .theme-btn {
  color: #6b7280
}

body.light .hero-right {
  background: #fff;
  border: 1px solid #e5e7eb
}

body.light .project {
  background: #fff;
  border: 1px solid #e5e7eb
}

body.light .muted {
  color: #6b7280
}

body.light h1, body.light h2, body.light h3, body.light h4, body.light h5, body.light h6 {
  color: #1f2937
}

body.light p {
  color: #4b5563
}

body.light .hero-left h2 {
  color: #1f2937
}

body.light .hero-left p {
  color: #4b5563
}

body.light .card h3 {
  color: #1f2937
}

body.light .card p {
  color: #4b5563
}

body.light .project h4 {
  color: #1f2937
}

body.light footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb
}

body.light .footer-section h4 {
  color: #1f2937
}

body.light .socials a {
  color: #6b7280
}

body.light .card {
  background: #ffffff;
  border: 1px solid #e0e0e0
}

body.light header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85))
}

body.light .brand h1, body.light nav a, body.light .menu-btn, body.light .theme-btn {
  color: #333
}

body.light .hero-right {
  background: linear-gradient(180deg, rgba(255, 180, 64, 0.1), rgba(0, 0, 0, 0.05));
  border: 1px solid #e0e0e0
}

body.light .project {
  background: linear-gradient(180deg, #f0f0f0, #e8e8e8)
}

body.light .muted {
  color: #666
}

body.light h1, body.light h2, body.light h3, body.light h4, body.light p {
  color: #333
}

body.light .hero-left h2, body.light .hero-left p {
  color: #333
}

body.light .card h3, body.light .card p {
  color: #333
}

body.light .project h4 {
  color: #333
}

body.light footer {
  border-top: 1px solid #e0e0e0
}

body.light .footer-section h3, body.light .footer-section h4 {
  color: #333
}

body.light .socials a {
  color: #666
}

body.light .form-input {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  color: #333
}

body.light .form-input:focus {
  border-color: #ffb400;
  box-shadow: 0 0 0 2px rgba(255, 180, 0, 0.2)
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(12px, 4vw, 80px);
  width: 100%;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.75), rgba(7, 7, 7, 0.35));
  backdrop-filter: blur(6px);
  padding: 0 clamp(12px, 4vw, 80px)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  max-width: var(--max);
  margin: 0 auto
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand a {
  font-size: 18px;
  font-weight: 700;
  color: #f3f3f3;
  text-decoration: none;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand img {
  width: 120px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

.brand h1 {
  font-size: 18px;
  margin: 0;
  color: #f3f3f3;
  font-weight: 600
}

nav ul {
  display: none
}

@media(min-width:881px) {
  nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center
  }

  nav a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s
  }

  nav a:hover {
    color: #1f2937
  }
}

@media(max-width:880px) {
  #menu a {
    color: #f3f3f3 !important;
    display: block;
    padding: 12px 16px !important;
    border-radius: 8px;
    font-size: 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
  }

  #menu a:last-child {
    border-bottom: none
  }

  #menu a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffb400 !important;
    transform: translateX(4px)
  }
}

@media(max-width:640px) {
  #menu a {
    padding: 14px 18px !important;
    font-size: 17px !important
  }
}

@media(max-width:480px) {
  #menu a {
    padding: 12px 16px !important;
    font-size: 16px !important
  }
}

@media(max-width:375px) {
  #menu a {
    padding: 10px 14px !important;
    font-size: 15px !important
  }
}

@media(max-width:320px) {
  #menu a {
    padding: 8px 12px !important;
    font-size: 14px !important
  }
}

.cta {
  background: #fbbf24;
  color: #1f2937;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s
}

.cta:hover {
  background: #f59e0b
}

.theme-btn {
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
  padding: clamp(4px, 1.5vw, 8px) clamp(6px, 2vw, 12px);
  border-radius: 6px;
  cursor: pointer;
  font-size: clamp(12px, 3vw, 16px);
  transition: all 0.3s;
  min-width: 40px;
  min-height: 40px
}

.theme-btn:hover {
  background: rgba(255, 255, 255, 0.2)
}

.theme-btn {
  border: 0;
  background: transparent;
  color: #f3f3f3;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
  min-width: 40px;
  min-height: 40px
}

.theme-btn:hover {
  background: rgba(255, 255, 255, 0.1)
}

.menu-btn {
  border: 0;
  background: transparent;
  color: #f3f3f3;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  padding: 8px
}

.nav-buttons {
  display: flex;
  gap: 16px;
  align-items: center
}

.nav-buttons .theme-btn {
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 16px
}

.nav-buttons .cta {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px
}

.nav-buttons .menu-btn {
  padding: 8px;
  font-size: 14px;
  font-weight: 500
}

@media(min-width:881px) {
  .menu-btn {
    display: none
  }
}

@media(max-width:880px) {
  .menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px
  }
}

@media(max-width:768px) {
  .nav {
    padding: 12px 20px
  }

  .brand h1 {
    font-size: 16px
  }

  .cta {
    padding: 6px 12px;
    font-size: 13px
  }

  .menu-btn {
    font-size: 13px
  }
}

@media(max-width:480px) {
  .nav {
    padding: 10px 16px
  }

  .brand {
    gap: 8px
  }

  .brand h1 {
    font-size: 15px
  }

  .cta {
    padding: 5px 10px;
    font-size: 12px
  }

  .menu-btn {
    font-size: 12px;
    padding: 6px
  }

  .nav-buttons {
    gap: 12px
  }
}

@media(max-width:375px) {
  .nav {
    padding: 8px 14px
  }

  .brand {
    gap: 6px
  }

  .brand h1 {
    font-size: 14px
  }

  .cta {
    padding: 4px 8px;
    font-size: 11px
  }

  .menu-btn {
    font-size: 11px;
    padding: 5px
  }

  .nav-buttons {
    gap: 10px
  }
}

@media(max-width:320px) {
  .nav {
    padding: 6px 12px
  }

  .brand {
    gap: 4px
  }

  .brand h1 {
    font-size: 13px
  }

  .cta {
    padding: 3px 6px;
    font-size: 10px
  }

  .menu-btn {
    font-size: 10px;
    padding: 4px
  }

  .nav-buttons {
    gap: 8px
  }
}

#menu {
  transition: all 0.3s ease
}

@media(max-width:880px) {
  nav ul {
    display: none
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px
  }
}



@media(max-width:768px) {
  .wrap {
    padding: 16px 20px
  }
}

@media(max-width:640px) {
  .wrap {
    padding: 12px 16px
  }
}

@media(max-width:480px) {
  .wrap {
    padding: 10px 14px
  }
}

@media(max-width:375px) {
  .wrap {
    padding: 8px 12px
  }
}

@media(max-width:320px) {
  .wrap {
    padding: 6px 10px
  }
}

.hero {
  display: grid;
  grid-template-columns: 1fr min(520px, 40vw);
  gap: clamp(20px, 5vw, 40px);
  align-items: center;
  padding: clamp(40px, 10vw, 80px) 0;
}

.hero-left h2 {
  font-size: 56px;
  margin: 0 0 16px;
  color: #1f2937;
  line-height: 1.1
}

.hero-left p {
  color: #4b5563;
  margin: 0 0 28px;
  font-size: 20px;
  line-height: 1.5
}

@media(max-width:768px) {
  .hero-left h2 {
    font-size: 36px
  }

  .hero-left p {
    font-size: 18px
  }

  .hero-cta {
    flex-direction: column;
    gap: 8px
  }

  .hero-cta button {
    width: 100%
  }
}

@media(max-width:480px) {
  .hero-left h2 {
    font-size: 28px;
    line-height: 1.2
  }

  .hero-left p {
    font-size: 16px
  }

  .btn-primary, .btn-light {
    padding: 12px 20px;
    font-size: 16px
  }
}

@media(max-width:375px) {
  .hero-left h2 {
    font-size: 24px
  }

  .hero-left p {
    font-size: 15px
  }

  .btn-primary, .btn-light {
    padding: 10px 16px;
    font-size: 14px
  }
}

@media(max-width:320px) {
  .hero-left h2 {
    font-size: 22px
  }

  .btn-primary, .btn-light {
    padding: 8px 12px;
    font-size: 13px
  }
}

.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap
}

.btn-primary {
  background: var(--accent);
  color: #111;
  padding: 16px 28px;
  border-radius: 12px;
  border: 0;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  min-height: 44px
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 180, 0, 0.4)
}

.btn-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 24px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  min-height: 44px
}

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

body.light .btn-light {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #333
}

body.light .btn-light:hover {
  border-color: rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.05)
}

.hero-right {
  background: linear-gradient(180deg, rgba(255, 180, 64, 0.08), rgba(0, 0, 0, 0.2));
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.stats {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 10px
}

.stat {
  flex: 1;
  background: #121214;
  padding: 14px;
  border-radius: 12px;
  text-align: center
}

.stat b {
  display: block;
  font-size: 18px;
  color: var(--accent)
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 3vw, 18px);
  margin: clamp(30px, 6vw, 40px) 0
}

@media(max-width:880px) {
  .services {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:640px) {
  .services {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

@media(max-width:480px) {
  .services {
    gap: 12px
  }
}

@media(max-width:375px) {
  .services {
    gap: 10px
  }
}

.card {
  background: #121214;
  padding: clamp(20px, 4vw, 32px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  overflow: hidden
}

@media(max-width:480px) {
  .card {
    padding: 16px;
    border-radius: 12px
  }
}

@media(max-width:375px) {
  .card {
    padding: 14px;
    border-radius: 10px
  }
}

@media(max-width:320px) {
  .card {
    padding: 12px;
    border-radius: 8px
  }
}

.card h3 {
  margin: 0 0 12px;
  font-size: 20px
}

.card p {
  margin: 0;
  color: #bdbdbd;
  font-size: 16px;
  line-height: 1.5
}

.projects {
  margin: 40px 0
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(16px, 3vw, 20px)
}

@media(max-width:640px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px
  }
}

@media(max-width:480px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }
}

@media(max-width:375px) {
  .projects-grid {
    gap: 10px
  }
}

@media(max-width:320px) {
  .projects-grid {
    gap: 8px
  }
}

.project {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #111, #0b0b0b);
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.project img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12
}

.project h4 {
  position: relative;
  margin: 0;
  color: #f3f3f3
}

.about {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
  padding: clamp(20px, 4vw, 28px) 0
}

.about-text {
  min-width: 0
}

.about-image {
  max-width: 450px
}

.about img {
  width: 100%;
  height: clamp(280px, 35vw, 400px);
  border-radius: 12px;
  object-fit: cover
}

.about-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap
}

@media(max-width:880px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px
  }

  .about-image {
    order: -1;
    max-width: 100%
  }

  .about-buttons {
    justify-content: center
  }
}

@media(max-width:640px) {
  .about-buttons {
    flex-direction: column;
    gap: 12px
  }

  .about-buttons .btn-primary, .about-buttons .btn-light {
    width: 100%;
    text-align: center
  }
}

@media(max-width:375px) {
  .about-buttons {
    gap: 10px
  }

  .about-buttons .btn-primary, .about-buttons .btn-light {
    padding: 14px 20px;
    font-size: 16px
  }
}

@media(max-width:320px) {
  .about-buttons {
    gap: 8px
  }

  .about-buttons .btn-primary, .about-buttons .btn-light {
    padding: 12px 16px;
    font-size: 14px
  }
}

footer {
  margin-top: 60px;
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.03)
}

@media(max-width:480px) {
  footer {
    padding: 30px 0 15px
  }
}

@media(max-width:375px) {
  footer {
    padding: 25px 0 12px
  }
}

@media(max-width:320px) {
  footer {
    padding: 20px 0 10px
  }
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(24px, 5vw, 40px);
  margin-bottom: 30px
}

@media(max-width:640px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center
  }
}

@media(max-width:480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

@media(max-width:375px) {
  .footer-content {
    gap: 24px
  }
}

@media(max-width:320px) {
  .footer-content {
    gap: 20px
  }
}

.footer-section h3 {
  margin: 0 0 8px;
  font-size: 18px
}

.footer-section h4 {
  margin: 0 0 16px;
  font-size: 16px;
  color: var(--accent)
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer-section ul li {
  margin-bottom: 8px
}

.footer-section ul li a {
  color: #bdbdbd;
  text-decoration: none;
  transition: color 0.3s
}

.footer-section ul li a:hover {
  color: #fbbf24
}

.footer-section .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px
}

.footer-section .brand img {
  width: 200px;
  height: 80px;
  border-radius: 8px
}

.footer-section .brand h3 {
  margin: 0;
  font-size: 18px
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px
}

.socials a {
  color: #bdbdbd;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s
}

.socials a:hover {
  color: #fbbf24;
  border-color: #fbbf24
}

@media(max-width:880px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px
  }

  .hero-right {
    order: -1;
    max-width: 420px;
    margin: 0 auto
  }

  .hero-cta {
    justify-content: center
  }
}

@media(max-width:640px) {
  .hero {
    gap: 24px
  }

  .hero-cta {
    flex-direction: column;
    gap: 16px;
    width: 100%
  }

  .hero-cta .btn-primary, .hero-cta .btn-light {
    width: 100%;
    text-align: center;
    padding: 16px 24px
  }
}

@media(max-width:480px) {
  .hero {
    padding: clamp(20px, 8vw, 40px) 0
  }

  .hero-right {
    max-width: 100%
  }

  .hero-left h2 {
    font-size: clamp(24px, 7vw, 32px)
  }

  .hero-left p {
    font-size: clamp(14px, 3vw, 18px)
  }

  .card {
    margin: 0 10px;
    max-width: calc(100vw - 20px)
  }
}

@media(max-width:375px) {
  .hero {
    padding: 16px 0
  }

  .hero-left h2 {
    font-size: clamp(20px, 6vw, 28px)
  }

  .hero-left p {
    font-size: clamp(13px, 2.5vw, 16px)
  }
}

@media(max-width:320px) {
  .hero {
    padding: 12px 0
  }

  .hero-left h2 {
    font-size: clamp(18px, 5vw, 24px)
  }

  .hero-left p {
    font-size: clamp(12px, 2vw, 14px)
  }
}

@media(orientation:landscape) and (max-height:500px) {
  .hero {
    padding: 20px 0
  }

  .hero-left h2 {
    font-size: clamp(24px, 6vw, 36px)
  }

  .hero-left p {
    font-size: clamp(14px, 2.5vw, 16px)
  }
}

@media(min-width:1400px) {
  .wrap {
    padding: 20px 40px
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important
  }
}

.reveal {
  opacity: 1;
  transform: none
}

.muted {
  color: #bdbdbd;
  font-size: 14px
}

.gap-12 {
  height: 12px
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(12px, 3vw, 16px);
  margin-top: clamp(16px, 3vw, 20px);
  width: 100%;
  max-width: 100%
}

.form-input {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #121214;
  color: #f3f3f3;
  font-size: 16px;
  transition: all 0.3s;
  min-height: 48px;
  width: 100%;
  max-width: 100%
}

.form-input:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2)
}


.demo-form {
  position: relative;
  z-index: 2;
  overflow: visible
}

.card {
  position: relative;
  z-index: 1;
  overflow: visible
}

@media(max-width:480px) {
  select.form-input {
    transform: translateX(0);
    max-width: calc(100vw - 60px)
  }

  .form-textarea {
    grid-column: 1/-1;
    resize: vertical;
    font-family: inherit;
    min-height: 100px
  }

  .form-submit {
    grid-column: 1/-1;
    justify-self: start;
    min-width: 140px;
    padding: 14px 24px
  }

  @media(max-width:880px) {
    .demo-form {
      grid-template-columns: 1fr;
      gap: 14px
    }
  }

  @media(max-width:768px) {
    .demo-form {
      grid-template-columns: 1fr;
      gap: 16px
    }

    .form-submit {
      justify-self: stretch;
      width: 100%;
      padding: 16px
    }
  }

  @media(max-width:640px) {
    .demo-form {
      gap: 14px
    }

    .form-input {
      padding: 15px;
      font-size: 16px;
      min-height: 50px
    }

    .form-textarea {
      min-height: 110px
    }
  }

  @media(max-width:480px) {
    .demo-form {
      gap: 12px
    }

    .form-input {
      padding: 14px;
      font-size: 16px;
      min-height: 50px
    }

    .form-textarea {
      min-height: 120px
    }
  }

  @media(max-width:375px) {
    .demo-form {
      gap: 10px
    }

    .form-input {
      padding: 12px;
      font-size: 15px;
      min-height: 48px
    }

    .form-textarea {
      min-height: 100px
    }
  }

  @media(max-width:320px) {
    .demo-form {
      gap: 8px
    }

    .form-input {
      padding: 10px;
      font-size: 14px;
      min-height: 46px
    }

    .form-textarea {
      min-height: 90px
    }
  }

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

  .stats {
    display: flex;
    gap: clamp(8px, 2vw, 12px);
    flex-wrap: wrap
  }

  .stat {
    flex: 1;
    min-width: 90px;
    background: var(--card);
    padding: clamp(12px, 2.5vw, 16px);
    border-radius: 12px;
    text-align: center
  }

  @media(max-width:480px) {
    .stats {
      gap: 8px
    }

    .stat {
      min-width: 80px;
      padding: 10px 8px
    }

    .stat b {
      font-size: 16px
    }

    .stat small {
      font-size: 11px
    }
  }

  @media(max-width:375px) {
    .stats {
      gap: 6px
    }

    .stat {
      min-width: 70px;
      padding: 8px 6px
    }

    .stat b {
      font-size: 15px
    }

    .stat small {
      font-size: 10px
    }
  }

  @media(max-width:320px) {
    .stats {
      gap: 4px
    }

    .stat {
      min-width: 65px;
      padding: 6px 4px
    }

    .stat b {
      font-size: 14px
    }

    .stat small {
      font-size: 9px
    }
  }

  .socials {
    display: flex;
    gap: clamp(8px, 2vw, 12px);
    flex-wrap: wrap
  }

  @media(max-width:480px) {
    .socials {
      justify-content: center;
      gap: 8px
    }

    .socials a {
      padding: 6px 10px;
      font-size: 14px
    }
  }
}