*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --brand-50: #eef6ff;
  --brand-100: #d9eaff;
  --brand-200: #bcdaff;
  --brand-300: #8ec2ff;
  --brand-400: #599fff;
  --brand-500: #3377ff;
  --brand-600: #1a55f5;
  --brand-700: #1341e1;
  --brand-800: #1636b6;
  --brand-900: #18358f;
  --brand-950: #0c1f5c;
  --teal-50: #effdf9;
  --teal-100: #c8fbed;
  --teal-200: #91f5db;
  --teal-300: #52e9c6;
  --teal-400: #25d3ad;
  --teal-500: #10b893;
  --teal-600: #069577;
  --teal-700: #077862;
  --teal-800: #0a5f50;
  --teal-900: #0c4e42;
  --ink-50: #f5f7fa;
  --ink-100: #eaeef4;
  --ink-200: #d0d8e4;
  --ink-300: #aebccb;
  --ink-400: #8295ad;
  --ink-500: #627691;
  --ink-600: #4d5e78;
  --ink-700: #404e62;
  --ink-800: #374253;
  --ink-900: #0a1929;
  --ink-950: #050f1c;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  overflow-x: hidden;
  background-color: var(--ink-900);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  line-height: 1.2;
}

::selection {
  background-color: rgba(51, 119, 255, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ink-900);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-500), var(--teal-500));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--brand-600), var(--teal-600));
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-500), var(--teal-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-dark {
  background: rgba(10, 25, 41, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: all 0.5s ease;
}

#navbar.scrolled {
  background: rgba(10, 25, 41, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) { .nav-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .nav-container { padding: 0 2rem; } }

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-500), var(--teal-500));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(51, 119, 255, 0.3);
  transition: transform 0.5s ease;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
}

.logo:hover .logo-icon {
  transform: rotate(12deg) scale(1.1);
}

.logo-text h1 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.logo-text p {
  font-size: 10px;
  color: var(--brand-300);
  letter-spacing: 0.5px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border-radius: 12px;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand-400), var(--teal-400));
  transition: all 0.5s ease;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--brand-500), var(--teal-500));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(51, 119, 255, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-call:hover {
  box-shadow: 0 10px 30px rgba(51, 119, 255, 0.5);
  transform: scale(1.05);
}

.btn-call svg {
  width: 16px;
  height: 16px;
}

.nav-call {
  display: none;
}

@media (min-width: 1024px) {
  .nav-call { display: flex; }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 70%;
  max-width: 340px;
  background: rgba(10, 25, 41, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.4s ease-out;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-logo h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-close svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  flex: 1;
  overflow-y: auto;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  text-align: right;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.mobile-link.active {
  background: linear-gradient(90deg, rgba(51, 119, 255, 0.2), rgba(16, 184, 147, 0.2));
  color: #fff;
  border-right: 2px solid var(--brand-400);
}

.mobile-link.active::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-400);
}

.mobile-menu-footer {
  padding: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 1rem 2.5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: zoomInOut 20s ease-in-out infinite;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 25, 41, 0.8), rgba(10, 25, 41, 0.7), rgba(10, 25, 41, 0.9));
}

.hero-bg-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-blob {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-blob-1 {
  top: 25%;
  right: 25%;
  background: rgba(51, 119, 255, 0.2);
}

.hero-blob-2 {
  bottom: 25%;
  left: 25%;
  background: rgba(16, 184, 147, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 960px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.2s forwards;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--teal-400);
}

.hero-badge span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.4s forwards;
}

@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 768px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.6s forwards;
}

@media (min-width: 640px) { .hero-desc { font-size: 1.25rem; } }

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.8s forwards;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--brand-500), var(--teal-500));
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(51, 119, 255, 0.4);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  box-shadow: 0 20px 60px rgba(51, 119, 255, 0.6);
  transform: scale(1.05);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateY(4px);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--ink-900);
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-glass:hover {
  transform: scale(1.05);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: fadeIn 1s ease-out 1.2s forwards;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.dot-teal { background: var(--teal-400); }
.dot-blue { background: var(--brand-400); }

.hero-meta-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-meta-phone:hover {
  color: var(--brand-200);
}

.hero-meta-phone svg {
  width: 16px;
  height: 16px;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-scroll-mouse {
  width: 28px;
  height: 48px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6px;
}

.hero-scroll-dot {
  width: 6px;
  height: 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.6);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

.about {
  position: relative;
  padding: 6rem 0;
  background: #fff;
  overflow: hidden;
}

@media (min-width: 1024px) { .about { padding: 8rem 0; } }

.about-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.about-blob-1 {
  top: 0;
  left: 0;
  width: 288px;
  height: 288px;
  background: var(--brand-50);
}

.about-blob-2 {
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: var(--teal-50);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.section-badge svg {
  width: 16px;
  height: 16px;
}

.section-badge-blue {
  background: var(--brand-50);
  color: var(--brand-600);
}

.section-badge-teal {
  background: var(--teal-50);
  color: var(--teal-600);
}

.section-badge-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--teal-300);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--ink-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }

.section-title-light {
  color: #fff;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--ink-500);
  max-width: 768px;
  margin: 0 auto;
}

.section-desc-light {
  color: rgba(255, 255, 255, 0.6);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-para {
  font-size: 1.125rem;
  color: var(--ink-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .about-features { grid-template-columns: 1fr 1fr; }
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-700);
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-500);
  position: relative;
}

.check-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

.about-image-wrap {
  position: relative;
}

.about-image-card {
  position: relative;
}

.about-image-glow {
  position: absolute;
  inset: -16px;
  background: linear-gradient(135deg, var(--brand-500), var(--teal-500));
  border-radius: 24px;
  opacity: 0.2;
  filter: blur(40px);
}

.about-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

@media (min-width: 1024px) { .about-img { height: 480px; } }

.about-image-card:hover .about-img {
  transform: scale(1.1);
}

.about-image-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 41, 0.6), transparent);
}

.about-image-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(10, 25, 41, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-image-label-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-500), var(--teal-500));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-label-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.about-image-label h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.about-image-label p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.about-image-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.about-image-badge-num {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-500), var(--teal-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 6rem;
  }
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(10, 25, 41, 0.05);
  border: 1px solid var(--ink-100);
  transition: all 0.4s ease;
}

.stat-card:hover {
  box-shadow: 0 20px 40px rgba(10, 25, 41, 0.1);
  transform: translateY(-8px);
}

@media (min-width: 1024px) { .stat-card { padding: 2rem; } }

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}

.stat-card:hover .stat-icon {
  transform: rotate(12deg);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.stat-icon-blue { background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); }
.stat-icon-teal { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); }
.stat-icon-mix1 { background: linear-gradient(135deg, var(--brand-400), var(--teal-600)); }
.stat-icon-mix2 { background: linear-gradient(135deg, var(--teal-400), var(--brand-600)); }

.stat-num {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--ink-900);
  font-family: 'Cairo', sans-serif;
}

@media (min-width: 1024px) { .stat-num { font-size: 2.25rem; } }

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-500);
  margin-top: 0.25rem;
}

.services {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--ink-900), var(--ink-950));
  overflow: hidden;
}

@media (min-width: 1024px) { .services { padding: 8rem 0; } }

.services-blob {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  filter: blur(120px);
}

.services-blob-1 {
  top: 0;
  right: 0;
  background: rgba(51, 119, 255, 0.1);
}

.services-blob-2 {
  bottom: 0;
  left: 0;
  background: rgba(16, 184, 147, 0.1);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

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

.service-card {
  position: relative;
}

.service-card-inner {
  position: relative;
  height: 100%;
  background: rgba(10, 25, 41, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.5s ease;
  overflow: hidden;
}

.service-card-inner:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.service-card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card-inner:hover .service-card-glow {
  opacity: 1;
}

.service-glow-blue { background: rgba(51, 119, 255, 0.2); }
.service-glow-teal { background: rgba(16, 184, 147, 0.2); }
.service-glow-mix1 { background: rgba(89, 159, 255, 0.2); }
.service-glow-mix2 { background: rgba(37, 211, 173, 0.2); }

.service-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  margin-bottom: 1.25rem;
}

.service-card-inner:hover .service-icon {
  transform: scale(1.1) rotate(6deg);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.service-icon-blue { background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); }
.service-icon-teal { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); }
.service-icon-mix1 { background: linear-gradient(135deg, var(--brand-400), var(--teal-600)); }
.service-icon-mix2 { background: linear-gradient(135deg, var(--teal-400), var(--brand-600)); }
.service-icon-mix3 { background: linear-gradient(135deg, var(--brand-600), var(--teal-500)); }
.service-icon-mix4 { background: linear-gradient(135deg, var(--teal-600), var(--brand-500)); }

.service-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.service-body p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tags span {
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-arrow {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 20px;
  height: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--teal-400);
  transform: translateY(-50%);
}

.service-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-left: 2px solid var(--teal-400);
  border-bottom: 2px solid var(--teal-400);
  transform: translateY(-50%) rotate(45deg);
}

.service-card-inner:hover .service-arrow {
  opacity: 1;
  transform: translateX(-4px);
}

.faq {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to top, var(--ink-50), #fff);
  overflow: hidden;
}

@media (min-width: 1024px) { .faq { padding: 8rem 0; } }

.faq-blob {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--brand-50);
  filter: blur(80px);
  opacity: 0.5;
}

.faq-container {
  max-width: 896px;
  position: relative;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  position: relative;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: right;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) { .faq-question { padding: 1.5rem; } }

.faq-question:hover {
  border-color: var(--brand-200);
  box-shadow: 0 10px 20px rgba(10, 25, 41, 0.05);
}

.faq-question.faq-active {
  background: #fff;
  border-color: var(--brand-200);
  box-shadow: 0 20px 40px rgba(51, 119, 255, 0.1);
}

.faq-question-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-question-icon svg {
  width: 20px;
  height: 20px;
}

.faq-icon-active {
  background: linear-gradient(135deg, var(--brand-500), var(--teal-500));
  color: #fff;
}

.faq-question > span {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-800);
  font-family: 'Cairo', sans-serif;
  transition: color 0.3s ease;
}

@media (min-width: 1024px) { .faq-question > span { font-size: 1.125rem; } }

.faq-active > span {
  color: var(--brand-600);
}

.faq-chevron {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink-100);
  color: var(--ink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-chevron svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-chevron-active {
  background: var(--brand-500);
  color: #fff;
}

.faq-chevron-active svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 5rem;
  color: var(--ink-600);
  font-size: 1rem;
  line-height: 1.7;
}

@media (min-width: 1024px) { .faq-answer p { font-size: 1.125rem; } }

.testimonials {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to bottom, #fff, var(--ink-50));
  overflow: hidden;
}

@media (min-width: 1024px) { .testimonials { padding: 8rem 0; } }

.testimonials-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.testimonials-blob-1 {
  top: 5rem;
  left: 0;
  background: var(--teal-50);
}

.testimonials-blob-2 {
  bottom: 5rem;
  right: 0;
  background: var(--brand-50);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; } }

.testimonial-card {
  position: relative;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 10px 20px rgba(10, 25, 41, 0.05);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  box-shadow: 0 20px 40px rgba(10, 25, 41, 0.1);
  transform: translateY(-8px);
}

.testimonial-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--teal-500));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card:hover .testimonial-card-bar {
  opacity: 1;
}

.testimonial-quote {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 48px;
  height: 48px;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--ink-100);
  line-height: 1;
}

.testimonial-card:hover .testimonial-quote {
  opacity: 0.5;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
  position: relative;
}

.star {
  width: 20px;
  height: 20px;
  background: #f59e0b;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-text {
  color: var(--ink-600);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  min-height: 120px;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ink-100);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--teal-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
}

.testimonial-author h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-800);
  font-family: 'Cairo', sans-serif;
}

.testimonial-author p {
  font-size: 0.75rem;
  color: var(--ink-400);
}

.why-us {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--ink-950), var(--ink-900));
  overflow: hidden;
}

@media (min-width: 1024px) { .why-us { padding: 8rem 0; } }

.why-us-blob {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  filter: blur(120px);
}

.why-us-blob-1 {
  top: 0;
  right: 25%;
  background: rgba(51, 119, 255, 0.1);
}

.why-us-blob-2 {
  bottom: 0;
  left: 25%;
  background: rgba(16, 184, 147, 0.1);
}

.why-us-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) { .why-us-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-us-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.why-us-card {
  position: relative;
  height: 100%;
  background: rgba(10, 25, 41, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.5s ease;
  overflow: hidden;
}

.why-us-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
}

.why-us-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.25rem;
  transition: all 0.5s ease;
}

.why-us-card:hover .why-us-icon {
  transform: scale(1.1) rotate(6deg);
}

.why-us-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.why-us-icon-blue { background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); }
.why-us-icon-teal { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); }
.why-us-icon-mix1 { background: linear-gradient(135deg, var(--brand-400), var(--teal-600)); }
.why-us-icon-mix2 { background: linear-gradient(135deg, var(--teal-400), var(--brand-600)); }
.why-us-icon-mix3 { background: linear-gradient(135deg, var(--brand-600), var(--teal-500)); }
.why-us-icon-mix4 { background: linear-gradient(135deg, var(--teal-600), var(--brand-500)); }

.why-us-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  font-family: 'Cairo', sans-serif;
}

.why-us-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.contact {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) { .contact { padding: 8rem 0; } }

.contact-bg {
  position: absolute;
  inset: 0;
}

.contact-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 41, 0.6);
}

.contact-bg-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-container {
  position: relative;
  max-width: 1024px;
}

.contact-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) { .contact-cards { grid-template-columns: 1fr 1fr; } }

.contact-card {
  position: relative;
  display: block;
  text-decoration: none;
  background: rgba(10, 25, 41, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.5s ease;
  overflow: hidden;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.25rem;
  transition: all 0.5s ease;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(6deg);
}

.contact-card-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.contact-icon-blue { background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); }
.contact-icon-teal { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); }
.contact-icon-mix1 { background: linear-gradient(135deg, var(--brand-400), var(--teal-600)); }
.contact-icon-mix2 { background: linear-gradient(135deg, var(--teal-400), var(--brand-600)); }

.contact-card-body p:first-child {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}

.contact-card-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Cairo', sans-serif;
  letter-spacing: 2px;
}

.contact-card-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-card:hover .contact-card-bar {
  opacity: 1;
}

.contact-bar-blue { background: linear-gradient(90deg, var(--brand-500), var(--brand-700)); }
.contact-bar-teal { background: linear-gradient(90deg, var(--teal-500), var(--teal-700)); }
.contact-bar-mix1 { background: linear-gradient(90deg, var(--brand-400), var(--teal-600)); }
.contact-bar-mix2 { background: linear-gradient(90deg, var(--teal-400), var(--brand-600)); }

.contact-address {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  margin-top: 2.5rem;
  background: rgba(10, 25, 41, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.contact-address-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-500), var(--teal-500));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-address-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.contact-address-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}

.contact-address-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Cairo', sans-serif;
}

.footer {
  position: relative;
  background: var(--ink-950);
  overflow: hidden;
}

.footer-blob {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  filter: blur(120px);
}

.footer-blob-1 {
  top: 0;
  left: 0;
  background: rgba(51, 119, 255, 0.05);
}

.footer-blob-2 {
  bottom: 0;
  right: 0;
  background: rgba(16, 184, 147, 0.05);
}

.footer-container {
  position: relative;
  padding: 4rem 1rem;
}

@media (min-width: 640px) { .footer-container { padding: 4rem 1.5rem; } }
@media (min-width: 1024px) { .footer-container { padding: 4rem 2rem; } }

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo p {
  font-size: 0.75rem;
  color: var(--brand-300);
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  font-family: 'Cairo', sans-serif;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-links a::before {
  content: '‹';
  font-size: 1rem;
  transition: transform 0.3s ease;
}

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

.footer-links a:hover::before {
  transform: translateX(-4px);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact a,
.footer-contact > li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--teal-400);
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--teal-400);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credit-link:hover {
  color: var(--teal-300);
}

.footer-credit-link svg {
  width: 16px;
  height: 16px;
}

.floating-buttons {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(2.5rem);
  transition: all 0.5s ease;
  pointer-events: none;
}

.floating-buttons.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.floating-whatsapp {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  box-shadow: 0 20px 40px rgba(16, 184, 147, 0.4);
}

.floating-call {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  box-shadow: 0 20px 40px rgba(51, 119, 255, 0.4);
}

.floating-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.floating-whatsapp .floating-pulse {
  background: var(--teal-500);
}

.floating-call .floating-pulse {
  background: var(--brand-500);
}

.floating-tooltip {
  position: absolute;
  right: 100%;
  margin-left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--ink-900);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

@keyframes zoomInOut {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(12px); opacity: 1; }
}
.logo-icon {
  width: 48px;   
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}