@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-color: #030712;
  --panel-bg: rgba(15, 23, 42, 0.6);
  --border-color: rgba(255, 255, 255, 0.08);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --accent-color: #6366f1; 
  --accent-hover: #4f46e5;
  --accent-cyan: #06b6d4;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --neon-glow: 0 8px 30px rgba(99, 102, 241, 0.2);
  --glass-bg: rgba(17, 24, 39, 0.45);
  --glass-border: 1px solid rgba(255, 255, 255, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  background-color: var(--bg-color);
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

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

header {
  border-bottom: 1px solid var(--border-color);
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 110;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  z-index: 110;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo span {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  margin-left: 48px;
}

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

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

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.25s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
  transition: color 0.2s ease;
}

.btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
  box-shadow: var(--neon-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.35);
}

.hero {
  padding: 120px 0 80px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-content {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.75rem;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.hero-graphic {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 440px;
  height: 440px;
  pointer-events: none;
  z-index: 1;
  perspective: 1000px;
}

.globe {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(99, 102, 241, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 60% 60%, rgba(6, 182, 212, 0.1) 0%, transparent 70%),
    rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow:
    inset 0 0 50px rgba(99, 102, 241, 0.15),
    0 0 80px rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
  animation: globePulse 6s ease-in-out infinite;
}

.globe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(99, 102, 241, 0.08) 20px),
    repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(99, 102, 241, 0.08) 20px);
}

.globe-ring-1 {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  border: 1.5px dashed rgba(6, 182, 212, 0.35);
  transform-style: preserve-3d;
  animation: orbitSpin1 14s linear infinite;
}

.globe-ring-2 {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 1px dashed rgba(99, 102, 241, 0.35);
  transform-style: preserve-3d;
  animation: orbitSpin2 18s linear infinite;
}

.globe-ring-1 .globe-ring-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-cyan);
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.globe-ring-2 .globe-ring-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

@keyframes orbitSpin1 {
  0% { transform: rotateX(65deg) rotateY(15deg) rotateZ(0deg); }
  100% { transform: rotateX(65deg) rotateY(15deg) rotateZ(360deg); }
}

@keyframes orbitSpin2 {
  0% { transform: rotateX(-45deg) rotateY(-30deg) rotateZ(360deg); }
  100% { transform: rotateX(-45deg) rotateY(-30deg) rotateZ(0deg); }
}

@keyframes globePulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.03); opacity: 1; }
}

.services {
  padding: 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-content: center;
}

.service-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  padding: 32px 24px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(17, 24, 39, 0.6);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  box-shadow: inset 0 0 10px rgba(99, 102, 241, 0.15);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

.bottom-section {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  padding: 80px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-header p {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
  justify-content: center;
}

.portfolio-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.portfolio-img {
  width: 100%;
  height: 180px;
  background-color: rgba(15, 23, 42, 0.8);
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.05);
}

.portfolio-title {
  padding: 16px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  border-top: 1px solid var(--border-color);
  background: rgba(15, 23, 42, 0.4);
}

.btn-center {
  display: block;
  width: max-content;
  margin: 0 auto;
}

.contact-panel {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  height: max-content;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.message-bubble {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(6, 182, 212, 0.05) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.message-bubble:hover {
  border-color: rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.16) 0%, rgba(6, 182, 212, 0.08) 100%);
  transform: translateY(-2px);
}

.message-bubble.active {
  border-color: var(--accent-cyan);
}

.bubble-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
}

.bubble-content {
  flex: 1;
}

.bubble-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-cyan);
  margin-bottom: 2px;
}

.bubble-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.bubble-indicator {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.bubble-indicator i {
  transition: transform 0.25s ease;
}

.contact-form-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.contact-form-wrapper.open {
  max-height: 500px;
  opacity: 1;
}

.contact-info {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-item i {
  color: var(--accent-color);
  width: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: 8px;
  color: white;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s ease;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: rgba(99, 102, 241, 0.5);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

select.form-control option {
  background-color: var(--bg-color);
  color: white;
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.stats {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  margin-top: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  text-align: center;
}

.stat-num {
  font-size: 2.75rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.page-header {
  text-align: center;
  padding: 110px 0 80px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(3, 7, 18, 1) 100%);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
  font-size: 1.05rem;
}

.page-header.header-services {
  background:
    linear-gradient(135deg, rgba(0, 40, 100, 0.9) 0%, rgba(5, 10, 21, 0.95) 40%, rgba(0, 80, 160, 0.7) 100%),
    url('assets/images/service.png');
  background-size: cover;
  background-position: center;
}

.page-header.header-portfolio {
  background:
    linear-gradient(135deg, rgba(10, 20, 60, 0.9) 0%, rgba(5, 10, 21, 0.95) 40%, rgba(30, 60, 150, 0.7) 100%),
    url('assets/images/portfolio.png');
  background-size: cover;
  background-position: center;
}

.page-header.header-about {
  background:
    linear-gradient(135deg, rgba(20, 10, 60, 0.9) 0%, rgba(5, 10, 21, 0.95) 40%, rgba(60, 20, 120, 0.6) 100%),
    url('assets/images/about.png');
  background-size: cover;
  background-position: center;
}

.page-header.header-contact {
  background:
    linear-gradient(135deg, rgba(0, 40, 50, 0.9) 0%, rgba(5, 10, 21, 0.95) 40%, rgba(0, 100, 80, 0.6) 100%),
    url('assets/images/contact.png');
  background-size: cover;
  background-position: center;
}

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

.about-globe-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-globe-container {
  position: relative;
  width: 340px;
  height: 340px;
  max-width: 100%;
  aspect-ratio: 1;
}

.about-text h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-weight: 800;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 60px;
  justify-content: center;
}

.team-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.25);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid rgba(99, 102, 241, 0.2);
}

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.team-card p {
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-contact-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  max-width: 360px;
  width: calc(100% - 48px);
}

.floating-bubble {
  margin-bottom: 0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--neon-glow);
  background: rgba(17, 24, 39, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px !important;
  padding: 12px 24px !important;
  border: 1px solid rgba(99, 102, 241, 0.3) !important;
  width: auto;
  display: flex;
  align-items: center;
}

.floating-bubble:hover {
  border-color: rgba(99, 102, 241, 0.5) !important;
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.3), var(--neon-glow);
}

.floating-bubble.active {
  border-color: var(--accent-cyan) !important;
}

.bubble-content-compact {
  margin-right: 8px;
}

.bubble-title-text {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.floating-form-wrapper {
  width: 100%;
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
  max-height: 0;
}

.floating-form-wrapper.open {
  max-height: 440px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 8px;
}

.contact-form-card {
  padding: 24px;
}

.contact-form-card h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

.testimonial-box {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--accent-color);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
}

.testimonial-author {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  font-style: normal;
}

@media (max-width: 900px) {
  .hero {
    padding: 80px 0 60px;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero h1 {
    font-size: 2.75rem;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-graphic {
    display: none;
  }
  .bottom-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu-wrapper {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 290px;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
    margin-left: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 105;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu-wrapper.active {
    right: 0;
  }

  .nav-menu-wrapper nav {
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.1rem;
    display: block;
    padding: 8px 0;
  }

  .nav-actions {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: stretch;
  }

  .nav-actions .btn {
    width: 100%;
    padding: 12px;
  }

  .form-control {
    font-size: 16px;
  }

  .page-header {
    padding: 80px 0 60px;
    margin-bottom: 40px;
  }

  .page-header h1 {
    font-size: 2.25rem;
  }

  .about-text h2 {
    font-size: 1.85rem;
    text-align: center;
  }

  .about-text p {
    font-size: 0.95rem;
    text-align: center;
  }

  .about-text div {
    text-align: center;
  }

  .about-globe-container {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero p {
    font-size: 1rem;
  }

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

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .floating-contact-container {
    bottom: 16px;
    right: 16px;
    width: calc(100% - 32px);
  }
}