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

:root {
  --font-sans: 'Inter', sans-serif;
  --font-outfit: 'Outfit', sans-serif;
  
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-border: #dbeafe;
  
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-600: #059669;
  
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;

  --indigo-50: #f5f3ff;
  --indigo-100: #ede9fe;
  --indigo-600: #4f46e5;
  
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-600: #0284c7;

  --violet-50: #f5f3ff;
  --violet-100: #ede9fe;
  --violet-600: #7c3aed;

  --purple-50: #faf5ff;
  --purple-600: #9333ea;
  
  --amber-400: #fbbf24;
  --amber-100: #fef3c7;
  --amber-600: #d97706;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-blue-15: 0 10px 15px -3px rgba(37, 99, 235, 0.15), 0 4px 6px -4px rgba(37, 99, 235, 0.15);
  --shadow-blue-25: 0 10px 15px -3px rgba(37, 99, 235, 0.25), 0 4px 6px -4px rgba(37, 99, 235, 0.25);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes float-delayed {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse-slow {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.15); }
}
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes glow {
  from { box-shadow: 0 0 10px rgba(37, 99, 235, 0.1), 0 0 2px rgba(37, 99, 235, 0.05); }
  to { box-shadow: 0 0 20px rgba(37, 99, 235, 0.25), 0 0 8px rgba(37, 99, 235, 0.1); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float-delayed 7s ease-in-out infinite; }
.animate-pulse-slow { animation: pulse-slow 3s ease-in-out infinite; }
.animate-draw-line { animation: draw-line 2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.animate-spin-slow { animation: spin-slow 12s linear infinite; }
.animate-glow { animation: glow 2s ease-in-out infinite alternate; }
.animate-fade-in-up { animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-bounce { animation: bounce 2s infinite; }
.animate-ping { animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; }

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #fcfdfe;
  color: var(--slate-900);
  font-family: var(--font-sans);
  overflow-x: hidden;
  scroll-behavior: smooth;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-outfit);
  font-weight: 700;
  line-height: 1.25;
}

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

button, input, textarea {
  font-family: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Utilities */
.max-w-7xl {
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.flex-grow {
  flex-grow: 1;
}

.bg-white {
  background-color: #ffffff;
}

.bg-slate-50 {
  background-color: var(--slate-50);
}

.border-t {
  border-top: 1px solid var(--slate-100);
}

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

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Navigation Bar */
nav.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all var(--transition-normal);
  background-color: #ffffff;
  border-bottom: 1px solid var(--slate-100);
  padding: 1.25rem 0;
}

nav.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
  transition: transform var(--transition-normal);
}

.logo-link:hover .logo-icon {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.5rem;
  font-family: var(--font-outfit);
  font-weight: 750;
  letter-spacing: -0.025em;
  background: linear-gradient(to right, var(--slate-900), var(--slate-800), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 9999px;
  animation: pulse-slow 3s infinite;
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: block;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 500;
  font-size: 0.875rem;
  box-shadow: var(--shadow-blue-15);
  transition: all var(--transition-normal);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-blue-25);
  transform: translateY(-1px);
}

.btn-primary i, .btn-secondary i {
  transition: transform var(--transition-normal);
}

.btn-primary:hover i {
  transform: translateX(2px);
}

.menu-toggle {
  display: p-2;
  border-radius: 0.75rem;
  color: var(--slate-700);
  transition: background-color var(--transition-fast);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.menu-toggle:hover {
  background-color: var(--slate-100);
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid var(--slate-100);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  z-index: 49;
}

.mobile-drawer.open {
  display: block;
  animation: fadeInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-drawer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--slate-600);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--slate-50);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.mobile-cta {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-blue-15);
}

.mobile-cta:hover {
  background-color: var(--primary-hover);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
  }
}

.hero-bg-glow-1 {
  position: absolute;
  top: 25%;
  left: 25%;
  z-index: -10;
  width: 18rem;
  height: 18rem;
  border-radius: 9999px;
  background-color: rgba(219, 234, 254, 0.4);
  filter: blur(48px);
}

.hero-bg-glow-2 {
  position: absolute;
  top: 50%;
  right: 25%;
  z-index: -10;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background-color: rgba(237, 233, 254, 0.5);
  filter: blur(48px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 36rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: var(--primary-light);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  width: max-content;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #3b82f6;
  position: relative;
}

.badge-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background-color: #3b82f6;
  animation: ping 1.5s infinite;
}

.hero-title {
  font-size: 2.25rem;
  color: var(--slate-900);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

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

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

.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--indigo-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: var(--slate-500);
  font-size: 1rem;
  line-height: 1.625;
  max-width: 32rem;
}

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

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  background-color: #ffffff;
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.btn-secondary:hover {
  color: var(--primary);
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.hero-buttons .btn-primary {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  justify-content: center;
}

/* Dashboard Mockup */
.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-mockup-wrapper {
    max-width: none;
  }
}

.dashboard-frame {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  border: 1px solid var(--slate-100);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-2xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow var(--transition-slow);
}

.dashboard-frame:hover {
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.05);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-dot-char {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 9999px;
  background-color: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--slate-400);
}

.dashboard-title-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-400);
}

.window-controls {
  display: flex;
  gap: 0.25rem;
}

.window-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
}
.window-dot.red { background-color: #f87171; }
.window-dot.yellow { background-color: #fbbf24; }
.window-dot.green { background-color: #34d399; }

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  flex-grow: 1;
}

.widget-revenue {
  grid-column: span 8;
  background: rgba(248, 250, 252, 0.5);
  border: 1px solid var(--slate-100);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.revenue-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.widget-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.revenue-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-top: 0.25rem;
}

.trend-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--emerald-600);
  background-color: var(--emerald-50);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
}

.trend-badge i {
  width: 0.875rem;
  height: 0.875rem;
}

.sparkline-wrapper {
  width: 100%;
  height: 6rem;
  margin-top: 1rem;
  position: relative;
}

.sparkline-svg {
  width: 100%;
  height: 100%;
}

.widget-efficiency {
  grid-column: span 4;
  background: rgba(248, 250, 252, 0.5);
  border: 1px solid var(--slate-100);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.progress-circle-wrapper {
  position: relative;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
}

.progress-circle-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-circle-bg {
  stroke: var(--slate-100);
  stroke-width: 3.5;
  fill: none;
}

.progress-circle-val {
  stroke: var(--primary);
  stroke-width: 3.5;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 25; /* 75% progress */
}

.progress-percentage {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-800);
}

.status-tag {
  font-size: 0.5625rem;
  font-weight: 500;
  color: var(--emerald-600);
  background-color: var(--emerald-50);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

.widget-downloads {
  grid-column: span 5;
  background: rgba(248, 250, 252, 0.5);
  border: 1px solid var(--slate-100);
  border-radius: 1rem;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.downloads-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.downloads-top i {
  color: var(--primary);
  width: 1rem;
  height: 1rem;
}

.downloads-body {
  margin-top: 0.5rem;
}

.downloads-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-800);
}

.downloads-sub {
  font-size: 0.5625rem;
  color: var(--slate-400);
  margin-top: 0.125rem;
}

.widget-users {
  grid-column: span 7;
  background: rgba(248, 250, 252, 0.5);
  border: 1px solid var(--slate-100);
  border-radius: 1rem;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.users-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.avatar-stack {
  display: flex;
  margin-left: 0.25rem;
}

.avatar-stack-item {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  margin-left: -0.5rem;
}

.avatar-stack-item:first-child {
  margin-left: 0;
}

.avatar-stack-item.blue { background-color: var(--primary-light); color: var(--primary); }
.avatar-stack-item.green { background-color: var(--emerald-50); color: var(--emerald-600); }
.avatar-stack-item.yellow { background-color: var(--amber-100); color: var(--amber-600); }
.avatar-stack-item.indigo { background-color: var(--indigo-50); color: var(--indigo-600); }

.users-count-tag {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 0.125rem 0.5rem;
  border-radius: 0.5rem;
}

.users-count-tag i {
  width: 0.75rem;
  height: 0.75rem;
}

/* Floating cards */
.floating-card {
  position: absolute;
  background-color: #ffffff;
  border: 1px solid var(--slate-100);
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 9.375rem;
  z-index: 10;
}

.floating-card-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card-icon i {
  width: 1.25rem;
  height: 1.25rem;
}

.floating-card.security {
  top: -0.25rem;
  left: -0.5rem;
}

.floating-card.security .floating-card-icon {
  background-color: var(--emerald-50);
  color: var(--emerald-600);
}

.floating-card.support {
  bottom: -0.25rem;
  right: -0.5rem;
}

.floating-card.support .floating-card-icon {
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
}

.floating-card-info p:first-child {
  font-size: 0.625rem;
  color: var(--slate-400);
  font-weight: 600;
}

.floating-card-info p:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-800);
}

/* Services Section */
.services-section {
  background-color: #ffffff;
  padding: 4rem 0;
  border-top: 1px solid var(--slate-100);
}

@media (min-width: 640px) {
  .services-section {
    padding: 6rem 0;
  }
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* Trusted By */
.trusted-by {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.trusted-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem 1.5rem;
  opacity: 0.6;
}

.logo-item {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-500);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: all var(--transition-fast);
  cursor: default;
}

.logo-item:hover {
  opacity: 1;
  color: var(--primary);
}

.logo-item .dot {
  width: 0.875rem;
  height: 0.875rem;
  background-color: var(--slate-400);
  transition: background-color var(--transition-fast);
}

.logo-item:hover .dot {
  background-color: var(--primary);
}

.logo-item .dot.rect { border-radius: 0.125rem; }
.logo-item .dot.circle { border-radius: 9999px; }
.logo-item .dot.triangle { border: 2px solid var(--slate-400); background: none; border-radius: 0.25rem; transform: rotate(45deg); }
.logo-item:hover .dot.triangle { border-color: var(--primary); }
.logo-item .dot.large-circle { border-radius: 9999px; width: 0.875rem; height: 0.875rem; }
.logo-item .dot.pill { border-radius: 0.75rem; }
.logo-item .dot.rotated-rect { border-width: 2px; border-style: solid; border-color: var(--slate-400); background: none; transform: rotate(12deg); }
.logo-item:hover .dot.rotated-rect { border-color: var(--primary); }

/* Section Header */
.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.section-title {
  font-size: 1.875rem;
  color: var(--slate-900);
  letter-spacing: -0.025em;
}

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

.section-desc {
  color: var(--slate-500);
  font-size: 1rem;
}

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

.section-line {
  width: 3rem;
  height: 4px;
  background-color: var(--primary);
  border-radius: 9999px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  border: 1px solid var(--slate-100);
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.service-card:hover {
  border-color: var(--primary-border);
  box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.02);
  transform: translateY(-4px);
}

.service-card-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-card-icon {
  transform: scale(1.10);
}

.service-card-icon i {
  width: 1.5rem;
  height: 1.5rem;
}

.service-card-icon.web { background-color: var(--primary-light); border-color: rgba(37, 99, 235, 0.1); color: var(--primary); }
.service-card-icon.mobile { background-color: var(--indigo-50); border-color: rgba(79, 70, 229, 0.1); color: var(--indigo-600); }
.service-card-icon.cloud { background-color: var(--sky-50); border-color: rgba(2, 132, 199, 0.1); color: var(--sky-600); }
.service-card-icon.ai { background-color: var(--violet-50); border-color: rgba(124, 58, 237, 0.1); color: var(--violet-600); }

.service-card-title {
  font-size: 1.125rem;
  color: var(--slate-800);
  transition: color var(--transition-fast);
}

.service-card:hover .service-card-title {
  color: var(--primary);
}

.service-card-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.625;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-100);
}

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

.stat-card {
  background-color: rgba(248, 250, 252, 0.5);
  border: 1px solid var(--slate-100);
  border-radius: 1.25rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  transition: all var(--transition-normal);
}

@media (min-width: 640px) {
  .stat-card {
    flex-direction: row;
    text-align: left;
  }
}

.stat-card:hover {
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  border-color: var(--slate-200);
}

.stat-icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-wrapper i {
  width: 1.25rem;
  height: 1.25rem;
}

.stat-icon-wrapper.exp { background-color: var(--primary-light); color: var(--primary); }
.stat-icon-wrapper.done { background-color: var(--emerald-50); color: var(--emerald-600); }
.stat-icon-wrapper.team { background-color: var(--purple-50); color: var(--purple-600); }
.stat-icon-wrapper.clients { background-color: var(--rose-50); color: var(--rose-600); }

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1;
}

@media (min-width: 640px) {
  .stat-val {
    font-size: 1.875rem;
  }
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Products Page styling */
.products-section {
  background-color: #ffffff;
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .products-section {
    padding: 6rem 0;
  }
}

.products-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.tab-filters {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--slate-100);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.tab-buttons {
  display: flex;
  gap: 2rem;
}

.tab-btn {
  padding-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-400);
  transition: all var(--transition-normal);
  position: relative;
}

.tab-btn:hover {
  color: var(--slate-600);
}

.tab-btn.active {
  color: var(--primary);
  font-weight: 700;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 9999px;
  animation: pulse-slow 3s infinite;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 1rem;
}

.product-card {
  border: 1px solid var(--slate-100);
  background-color: rgba(248, 250, 252, 0.2);
  border-radius: 1.875rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  overflow: hidden;
  transition: all var(--transition-slow);
}

@media (min-width: 640px) {
  .product-card {
    padding: 2.5rem;
  }
}

@media (min-width: 768px) {
  .product-card {
    flex-direction: row;
    justify-content: space-between;
  }
}

.product-card:hover {
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.01);
  border-color: var(--slate-200);
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
  width: 100%;
}

.product-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  background-color: var(--primary-light);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--slate-800);
  letter-spacing: -0.025em;
}

.product-subtitle {
  color: var(--slate-500);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.625;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-600);
  font-weight: 500;
}

.feature-check-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background-color: var(--primary-light);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check-icon i {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--primary);
  stroke-width: 3;
}

.product-card .btn-primary {
  width: 100%;
}

@media (min-width: 640px) {
  .product-card .btn-primary {
    width: auto;
  }
}

/* Smartphone Mockups */
.smartphone-mockup {
  position: relative;
  flex-shrink: 0;
  width: 15rem; /* 240px */
}

.phone-frame {
  width: 14.375rem; /* 230px */
  aspect-ratio: 9/18.5;
  background-color: #020617;
  border-radius: 2.625rem;
  border: 8px solid #0f172a;
  box-shadow: var(--shadow-2xl);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  user-select: none;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7rem;
  height: 1.5rem;
  background-color: #0f172a;
  border-radius: 0 0 1rem 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.phone-speaker {
  width: 2rem;
  height: 0.25rem;
  background-color: #1e293b;
  border-radius: 9999px;
}

.phone-camera {
  width: 0.625rem;
  height: 0.625rem;
  background-color: #1e293b;
  border-radius: 9999px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background-color: var(--slate-50);
  font-size: 0.625rem;
  color: var(--slate-700);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 1.5rem;
  z-index: 10;
  position: relative;
  overflow: hidden;
  font-family: var(--font-sans);
}

/* Phone Status Bar */
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 1rem;
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--slate-400);
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--slate-100);
  z-index: 15;
}

/* Rider Phone Screen content */
.rider-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-color: rgba(224, 242, 254, 0.4);
}

.rider-map {
  position: absolute;
  inset: 0;
  top: 1.5rem;
  background-color: var(--slate-100);
  overflow: hidden;
  z-index: -10;
}

/* Map visual roads */
.road-h1 { position: absolute; top: 33.333%; left: 0; width: 100%; height: 4px; background-color: #ffffff; transform: rotate(12deg); }
.road-h2 { position: absolute; top: 50%; left: 0; width: 100%; height: 8px; background-color: #ffffff; transform: rotate(-6deg); }
.road-v1 { position: absolute; top: 0; left: 25%; width: 6px; height: 100%; background-color: #ffffff; transform: rotate(45deg); }
.road-v2 { position: absolute; top: 0; left: 66.666%; width: 6px; height: 100%; background-color: #ffffff; transform: rotate(-12deg); }

.rider-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-start-point {
  position: absolute;
  top: 75%;
  left: 15%;
  width: 0.875rem;
  height: 0.875rem;
  background-color: var(--primary-light);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #60a5fa;
}

.map-start-point-dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--primary);
  border-radius: 9999px;
}

.map-end-pin {
  position: absolute;
  top: 25%;
  left: 62%;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-end-pin i {
  color: var(--rose-500);
  z-index: 5;
}

.map-end-pin-pulse {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: rgba(244, 63, 94, 0.2);
  z-index: 1;
}

.map-car-symbol {
  position: absolute;
  top: 48%;
  left: 36%;
  width: 1.75rem;
  height: 1rem;
  background-color: var(--primary);
  border-radius: 0.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.map-car-symbol i {
  width: 0.625rem;
  height: 0.625rem;
}

.rider-search-input {
  margin: 0.75rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-100);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.rider-search-input i {
  color: var(--slate-400);
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
}

.rider-search-placeholder {
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--slate-400);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rider-booking-card {
  background-color: #ffffff;
  border-top: 1px solid var(--slate-100);
  padding: 0.75rem;
  border-radius: 1rem 1rem 0 0;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rider-booking-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--slate-50);
}

.rider-booking-info h4 {
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--slate-800);
}

.rider-booking-info p {
  font-size: 0.4375rem;
  color: var(--slate-400);
}

.rider-booking-price {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
}

.phone-btn {
  width: 100%;
  padding: 0.375rem 0;
  border-radius: 0.5rem;
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.5rem;
  letter-spacing: 0.05em;
  text-align: center;
}

/* Samadhaan Screen content */
.samadhaan-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
}

.social-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid var(--slate-50);
  padding: 0.375rem 0;
  background-color: #ffffff;
  font-weight: 700;
  font-size: 0.5rem;
}

.social-tab {
  color: var(--slate-400);
}

.social-tab.active {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 0.125rem;
}

.social-feed {
  flex-grow: 1;
  overflow-y: auto;
  padding: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  background-color: rgba(248, 250, 252, 0.5);
}

.feed-post {
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-100);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.feed-author-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.feed-author-avatar {
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.4375rem;
  font-weight: 800;
}

.feed-author-avatar.blue { background-color: #3b82f6; }
.feed-author-avatar.purple { background-color: #a855f7; }

.feed-author-info h5 {
  font-size: 0.4375rem;
  font-weight: 700;
  color: var(--slate-800);
  line-height: 1;
}

.feed-author-info p {
  font-size: 0.3125rem;
  color: var(--slate-400);
}

.feed-post-text {
  font-size: 0.4375rem;
  color: var(--slate-600);
  line-height: 1.5;
  font-weight: 500;
}

.feed-reactions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(241, 245, 249, 0.6);
  font-size: 0.375rem;
  color: var(--slate-400);
  font-weight: 600;
}

.feed-reaction-item {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.feed-reaction-item i {
  width: 0.5rem;
  height: 0.5rem;
}

.feed-reaction-item.like {
  color: var(--rose-500);
}

.feed-reaction-item.like i {
  fill: rgba(244, 63, 94, 0.2);
}

.phone-bottom-nav {
  border-top: 1px solid var(--slate-100);
  padding: 0.375rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  color: var(--slate-400);
  font-size: 0.625rem;
}

.phone-bottom-nav span.active {
  color: var(--primary);
}

/* Custom Solution Banner */
.custom-solution-banner {
  background-color: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: 1.875rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .custom-solution-banner {
    padding: 3rem;
  }
}

.custom-banner-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .custom-banner-title {
    font-size: 1.875rem;
  }
}

.custom-banner-desc {
  color: var(--slate-500);
  font-size: 0.875rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .custom-banner-desc {
    font-size: 1rem;
  }
}

.custom-solution-banner .btn-primary {
  align-self: center;
  font-weight: 700;
}

/* Team Page Styling */
.team-section {
  background-color: #ffffff;
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .team-section {
    padding: 6rem 0;
  }
}

.team-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  background-color: var(--slate-100);
  color: var(--slate-700);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background-color: var(--slate-200);
}

.filter-btn.active {
  background-color: var(--primary);
  color: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  border: 1px solid var(--slate-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition-normal);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  background-image: linear-gradient(to bottom right, var(--primary), var(--indigo-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.team-avatar.blue-indigo { background: linear-gradient(to bottom right, var(--primary), var(--indigo-600)); }
.team-avatar.indigo-purple { background: linear-gradient(to bottom right, var(--indigo-600), var(--purple-600)); }
.team-avatar.blue-sky { background: linear-gradient(to bottom right, var(--primary), var(--sky-600)); }
.team-avatar.purple-pink { background: linear-gradient(to bottom right, var(--purple-600), #ec4899); }

.team-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
}

.team-role {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* Contact Page Styling */
.contact-section {
  background-color: #ffffff;
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .contact-section {
    padding: 6rem 0;
  }
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: repeat(12, 1fr);
  }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .contact-details {
    grid-column: span 4;
  }
}

.detail-card {
  border: 1px solid var(--slate-100);
  background-color: rgba(248, 250, 252, 0.2);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: all var(--transition-normal);
}

.detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--slate-200);
}

.detail-icon-wrapper {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid transparent;
}

.detail-card:hover .detail-icon-wrapper {
  transform: scale(1.05);
}

.detail-icon-wrapper i {
  width: 1.25rem;
  height: 1.25rem;
}

.detail-icon-wrapper.email { background-color: var(--primary-light); border-color: rgba(37, 99, 235, 0.1); color: var(--primary); }
.detail-icon-wrapper.phone { background-color: var(--indigo-50); border-color: rgba(79, 70, 229, 0.1); color: var(--indigo-600); }
.detail-icon-wrapper.loc { background-color: var(--sky-50); border-color: rgba(2, 132, 199, 0.1); color: var(--sky-600); }
.detail-icon-wrapper.hours { background-color: var(--purple-50); border-color: rgba(147, 51, 234, 0.1); color: var(--purple-600); }

.detail-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-val {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-700);
}

/* Contact Form Card */
.contact-form-card {
  width: 100%;
}

@media (min-width: 1024px) {
  .contact-form-card {
    grid-column: span 5;
  }
}

.form-box {
  border: 1px solid var(--slate-100);
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .form-box {
    padding: 2rem;
  }
}

.success-state {
  display: none;
  padding: 3rem 0;
  text-align: center;
  flex-direction: column;
  gap: 1rem;
}

.success-state.active {
  display: flex;
  animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  color: var(--emerald-600);
}

.success-icon i {
  width: 2rem;
  height: 2rem;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-800);
}

.success-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}

.btn-outline {
  display: inline-flex;
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
  color: var(--slate-600);
  font-size: 0.75rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  margin-top: 1rem;
  align-self: center;
}

.btn-outline:hover {
  border-color: var(--primary-border);
  color: var(--primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.contact-form.hidden {
  display: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input, .form-textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--slate-700);
  outline: none;
  transition: all var(--transition-normal);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--slate-400);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
  resize: none;
}

.btn-submit {
  width: 100%;
  padding: 0.875rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-blue-15);
  transition: all var(--transition-normal);
}

.btn-submit:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-blue-25);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  background-color: #93c5fd;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 9999px;
  animation: spin-slow 1s linear infinite;
}

/* Map widget */
.map-card-wrapper {
  width: 100%;
  min-height: 21.875rem; /* 350px */
}

@media (min-width: 1024px) {
  .map-card-wrapper {
    grid-column: span 3;
    min-height: 0;
    height: 28.125rem; /* 450px */
  }
}

.map-card-box {
  width: 100%;
  height: 100%;
  border: 1px solid var(--slate-100);
  background-color: rgba(248, 250, 252, 0.6);
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color var(--transition-slow);
}

.map-card-box:hover {
  border-color: var(--primary-border);
}

.map-graphic {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--slate-100);
  opacity: 0.9;
}

.map-graphic .h-road-1 { position: absolute; top: 25%; left: 0; width: 100%; height: 8px; background-color: #ffffff; }
.map-graphic .h-road-2 { position: absolute; top: 50%; left: 0; width: 100%; height: 12px; background-color: #ffffff; }
.map-graphic .h-road-3 { position: absolute; top: 75%; left: 0; width: 100%; height: 8px; background-color: #ffffff; }
.map-graphic .v-road-1 { position: absolute; top: 0; left: 33.333%; width: 8px; height: 100%; background-color: #ffffff; }
.map-graphic .v-road-2 { position: absolute; top: 0; left: 66.666%; width: 12px; height: 100%; background-color: #ffffff; }
.map-graphic .d-road { position: absolute; top: 0; left: 25%; width: 6px; height: 100%; background-color: #ffffff; transform: rotate(45deg); }

.map-lake {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  width: 9rem;
  height: 9rem;
  border-radius: 9999px;
  background-color: rgba(186, 230, 253, 0.5);
  filter: blur(4px);
}

.map-park {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: rgba(209, 250, 229, 0.5);
}

.office-beacon {
  position: absolute;
  top: 50%;
  left: 66.666%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.beacon-pulse-large {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(37, 99, 235, 0.2);
  animation: ping 1.5s infinite;
  z-index: 0;
}

.beacon-pulse-small {
  position: absolute;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: rgba(37, 99, 235, 0.35);
  animation: pulse-slow 2s infinite;
  z-index: 0;
}

.beacon-core {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid #ffffff;
  z-index: 10;
  transition: transform var(--transition-normal);
  cursor: pointer;
}

.beacon-core:hover {
  transform: scale(1.1);
}

.beacon-core i {
  width: 1rem;
  height: 1rem;
  fill: #ffffff;
}

.secondary-point {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: var(--slate-400);
  border: 2px solid #ffffff;
  box-shadow: var(--shadow-sm);
}

.secondary-point.p1 { top: 33.333%; left: 25%; }
.secondary-point.p2 { top: 66.666%; left: 40%; }
.secondary-point.p3 { top: 25%; left: 75%; }

.map-floating-overlay {
  background-color: #ffffff;
  border: 1px solid var(--slate-100);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  padding: 0.75rem;
  position: relative;
  z-index: 10;
  max-width: 10.625rem;
  margin: 0.5rem;
  animation: float 6s ease-in-out infinite;
  text-align: left;
  align-self: flex-start;
}

.map-overlay-title {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.map-overlay-title i {
  color: var(--primary);
  width: 0.875rem;
  height: 0.875rem;
}

.map-overlay-title p {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--slate-800);
}

.map-overlay-desc {
  font-size: 0.5rem;
  color: var(--slate-400);
  margin-top: 0.25rem;
}

.map-directions-btn {
  background-color: #ffffff;
  border: 1px solid var(--slate-100);
  color: var(--slate-700);
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.5625rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: center;
  align-self: flex-end;
  margin: 0.5rem;
  width: max-content;
}

.map-directions-btn:hover {
  border-color: var(--primary-border);
  color: var(--primary);
}

.map-directions-btn i {
  width: 0.625rem;
  height: 0.625rem;
}

/* Footer Section */
footer.footer {
  background-color: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  margin-top: auto;
}

.footer-container {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.footer-logo-icon i {
  width: 1rem;
  height: 1rem;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-family: var(--font-outfit);
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.025em;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.625;
  max-width: 17.5rem;
}

.footer-col-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

.footer-link-item a, .footer-link-item span {
  font-size: 0.875rem;
  color: var(--slate-500);
  transition: color var(--transition-fast);
}

.footer-link-item a:hover, .footer-link-item span:hover {
  color: var(--primary);
  cursor: pointer;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--slate-400);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal-link {
  font-size: 0.75rem;
  color: var(--slate-400);
  transition: color var(--transition-fast);
}

.footer-legal-link:hover {
  color: var(--slate-600);
}
