/*
 * Portfolio Styles
 * Dark theme, clean and intentional
 */

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

:root {
  /* Colors - muted, not generic purple/blue */
  --bg-dark: #0f0f0f;
  --bg-card: #171717;
  --bg-hover: #1f1f1f;
  
  --text-white: #f5f5f5;
  --text-gray: #a1a1a1;
  --text-muted: #6b6b6b;
  
  /* Accent - teal/cyan, more unique */
  --accent: #14b8a6;
  --accent-dim: rgba(20, 184, 166, 0.15);
  --accent-hover: #0d9488;
  
  --border: #262626;
  --border-light: #333333;
  
  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Spacing - slightly irregular */
  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 56px;
  --space-2xl: 96px;
  
  /* Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  font-size: 15px;
}

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

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

/* Simple Icons styling */
.si {
  font-size: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

.navbar {
  display: flex;
  gap: 28px;
}

.navbar a {
  font-size: 14px;
  color: var(--text-gray);
  transition: color 0.2s;
  position: relative;
}

.navbar a:hover,
.navbar a.active {
  color: var(--text-white);
}

.navbar a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.header-btn {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.1s;
}

.header-btn:hover {
  background: var(--accent-hover);
}

.header-btn:active {
  transform: scale(0.98);
}

#menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-white);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}

.btn i {
  font-size: 18px;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

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

.btn-secondary:hover {
  background: var(--bg-hover);
  border-color: var(--text-muted);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

section {
  padding: var(--space-2xl) 5%;
}

.section-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.5px;
}

/* ==========================================================================
   Home Section
   ========================================================================== */

.home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  padding-top: 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.home-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: var(--space-sm);
}

.home-title {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: var(--space-md);
}

.home-role {
  font-size: 22px;
  color: var(--text-gray);
  margin-bottom: var(--space-lg);
}

.typing {
  color: var(--accent);
  font-weight: 500;
}

.typing::after {
  content: '|';
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.home-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-gray);
  max-width: 500px;
  margin-bottom: var(--space-lg);
}

.home-socials {
  display: flex;
  gap: 12px;
  margin-bottom: var(--space-lg);
}

.home-socials a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 20px;
  color: var(--text-gray);
  transition: all 0.2s;
}

.home-socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.home-btns {
  display: flex;
  gap: 14px;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.home-stats {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

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

.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.stat-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Home Image */
.home-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.home-image .image-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
}

.home-image .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
}

.floating-badge {
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  animation: float 4s ease-in-out infinite;
}

.badge-1 {
  top: -8px;
  left: -8px;
  animation-delay: 0s;
}

.badge-2 {
  top: 45%;
  right: -18px;
  animation-delay: -1.3s;
}

.badge-3 {
  bottom: 5%;
  left: 10%;
  animation-delay: -2.6s;
}

.badge-4 {
  top: 20%;
  left: -20px;
  animation-delay: -0.8s;
}

.badge-5 {
  bottom: 30%;
  right: -12px;
  animation-delay: -2s;
}

.badge-6 {
  top: -5px;
  right: 20%;
  animation-delay: -3.2s;
}

.badge-7 {
  bottom: 15%;
  left: -15px;
  animation-delay: -1.6s;
}

.badge-8 {
  top: 10%;
  right: -5px;
  animation-delay: -2.4s;
}

.badge-9 {
  bottom: -8px;
  right: 35%;
  animation-delay: -0.5s;
}

.badge-10 {
  top: 60%;
  left: 2%;
  animation-delay: -1.8s;
}

.badge-11 {
  top: -5px;
  left: 35%;
  animation-delay: -2.8s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border);
}

.about-image .image-wrapper {
  width: 280px;
  height: 320px;
  margin: 0 auto;
}

.about-image .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

.about-content .section-tag {
  margin-bottom: var(--space-xs);
}

.about-content .section-title {
  margin-bottom: var(--space-md);
}

.about-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: var(--space-md);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.about-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: center;
  transition: border-color 0.2s;
}

.about-card:hover {
  border-color: var(--accent);
}

.about-card i {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.about-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-card p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   Skills Section
   ========================================================================== */

.skills {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.skills .section-tag,
.skills .section-title {
  text-align: center;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: left;
  transition: border-color 0.2s;
}

.skill-card:hover {
  border-color: var(--border-light);
}

.skill-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-md);
}

.skill-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.skill-icon i {
  font-size: 18px;
  color: var(--accent);
}

.skill-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-tags span {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-gray);
  background: var(--bg-dark);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  text-align: left;
}

.service-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: var(--accent);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.service-icon i {
  font-size: 26px;
  color: var(--accent);
}

.service-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.service-card > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: var(--space-md);
}

.service-list {
  list-style: none;
}

.service-list li {
  font-size: 13px;
  color: var(--text-gray);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ==========================================================================
   Projects Section
   ========================================================================== */

.projects {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  text-align: left;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.project-card:hover {
  border-color: var(--border-light);
}

.project-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.project-img {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}

.project-card:not(.featured) .project-img {
  height: 180px;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.project-card:hover .project-img img {
  transform: scale(1.03);
}

.project-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 4px 10px;
  border-radius: 4px;
}

.project-info {
  padding: var(--space-lg);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-sm);
}

.project-tags span {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  background: var(--bg-dark);
  padding: 3px 8px;
  border-radius: 4px;
}

.project-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.project-info p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: var(--space-md);
}

.project-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.project-link:hover {
  gap: 8px;
}

.projects-more {
  margin-top: var(--space-xl);
}

/* ==========================================================================
   Education Section
   ========================================================================== */

.education {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.edu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  position: relative;
  transition: border-color 0.2s;
}

.edu-card:hover {
  border-color: var(--border-light);
}

.edu-year {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 4px;
}

.edu-img {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
}

.edu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edu-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.edu-place {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 4px;
}

.edu-detail {
  font-size: 13px;
  color: var(--text-muted);
}

/* Coding Profiles */
.profiles-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.profiles-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}

.profile-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.profile-card i {
  font-size: 32px;
  color: var(--text-gray);
  transition: color 0.2s;
}

.profile-card:hover i {
  color: var(--accent);
}

.profile-name {
  font-size: 15px;
  font-weight: 600;
}

.profile-handle {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-xl);
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.contact-info > p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-item i {
  width: 44px;
  height: 44px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}

.contact-item a,
.contact-item p {
  font-size: 14px;
  color: var(--text-white);
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-socials {
  display: flex;
  gap: 10px;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-gray);
  transition: all 0.2s;
}

.contact-socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Contact Form */
.contact-form {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-white);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  text-align: center;
  padding: var(--space-xl) 5%;
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

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

.footer-content > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--space-lg);
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-gray);
  transition: all 0.2s;
}

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

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.footer-nav a {
  font-size: 14px;
  color: var(--text-gray);
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
  .navbar {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: var(--space-md);
    gap: 0;
    display: none;
  }
  
  .navbar.active {
    display: flex;
  }
  
  .navbar a {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
  }
  
  .navbar a:hover {
    background: var(--bg-card);
  }
  
  .navbar a.active::after {
    display: none;
  }
  
  #menu-icon {
    display: block;
  }
  
  .header-btn {
    display: none;
  }
  
  .home {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }
  
  .home-content {
    order: 2;
  }
  
  .home-image {
    order: 1;
  }
  
  .home-desc {
    margin: 0 auto var(--space-lg);
  }
  
  .home-socials,
  .home-btns {
    justify-content: center;
  }
  
  .home-stats {
    justify-content: center;
  }
  
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-content .section-tag,
  .about-content .section-title {
    text-align: center;
  }
  
  .about-text {
    text-align: left;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 44px;
    --space-2xl: 72px;
  }
  
  .home-image .image-wrapper {
    width: 260px;
    height: 260px;
  }
  
  .about-cards {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .project-card.featured {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 24px;
    --space-xl: 36px;
    --space-2xl: 56px;
  }
  
  body {
    font-size: 14px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .home-title {
    font-size: 34px;
  }
  
  .home-stats {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .floating-badge {
    display: none;
  }
}
