:root {
  --primary: #630ed4;
  --primary-hover: #7c3aed;
  --secondary: #0058be;
  --background: #faf8ff;
  --on-background: #131b2e;
  --on-surface-variant: #4a4455;
  --surface-container-low: #f2f3ff;
  --secondary-container: #2170e4;
  --secondary-fixed: #d8e2ff;
  --font-inter: 'Inter', sans-serif;
}

body {
  background-color: var(--background);
  color: var(--on-background);
  font-family: var(--font-inter);
  line-height: 1.6;
  font-size: 16px;
  padding-top: 80px;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.2);
  box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.1);
}
.glass-nav .container { height: 80px; }

.brand-logo {
  font-size: 1.5rem;
  font-weight: 900;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #7c3aed, #3b82f6);
}

.nav-link-custom {
  color: #475569;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.nav-link-custom:hover { color: #8b5cf6; }
.nav-link-custom.active {
  color: #7c3aed;
  border-bottom: 2px solid #7c3aed;
  padding-bottom: 0.25rem;
}

.support-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  font-weight: 700;
}
.support-phone {
  color: var(--primary);
  font-weight: 700;
}

.btn-portal {
  background-color: var(--primary);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(99, 14, 212, 0.2);
  border: none;
}
.btn-portal:hover {
  background-color: var(--primary-hover);
  color: white;
  transform: scale(0.98);
}

.hero-section {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -9;
  background: linear-gradient(to bottom, var(--background), transparent, var(--background));
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(99, 14, 212, 0.1);
  color: var(--primary);
  border: 1px solid rgba(99, 14, 212, 0.2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.font-h1 {
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--on-background);
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) { .font-h1 { font-size: 48px; } }
@media (max-width: 767px) { .font-h1 { font-size: 40px; } }

.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, var(--primary), var(--secondary));
}

.lead-text {
  font-size: 18px;
  color: var(--on-surface-variant);
  margin-bottom: 2rem;
  max-width: 600px;
}

.btn-call {
  background-image: linear-gradient(to right, #7c3aed, #3b82f6);
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 20px 25px -5px rgba(139, 92, 246, 0.25);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
}
.btn-call:hover { transform: translateY(-2px); color: white; }

.btn-view {
  background-color: white;
  border: 1px solid #e2e8f0;
  color: var(--on-background);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-view:hover { background-color: #f8fafc; color: var(--on-background); }

.hero-visual { position: relative; }
.hero-visual-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to top right, rgba(99, 14, 212, 0.2), rgba(0, 88, 190, 0.2));
  filter: blur(48px);
  border-radius: 50%;
  z-index: -1;
}
.hero-visual-img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}
.hero-stats-panel {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(99, 14, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle .material-symbols-outlined { color: var(--primary); }

.bg-surface-low { background-color: var(--surface-container-low); }
.py-xl { padding-top: 5rem; padding-bottom: 5rem; }

.font-h2 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
@media (max-width: 991px) { .font-h2 { font-size: 36px; } }

.service-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
}
.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(99, 14, 212, 0.1);
}
.service-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  background-color: #f5f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s, color 0.3s;
  color: var(--on-background);
}
.service-card:hover .icon-box { background-color: var(--primary); color: white; }
.service-card .icon-box .material-symbols-outlined { font-size: 2rem; }
.font-h3 { font-size: 20px; font-weight: 600; margin-bottom: 0.75rem; }

.img-stack img {
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  width: 100%;
  object-fit: cover;
}
.h-64 { height: 16rem; }
.h-48 { height: 12rem; }
.pt-12 { padding-top: 3rem; }

.feature-row { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; }
.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(99, 14, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon .material-symbols-outlined { color: var(--primary); }

.bg-secondary-container { background-color: var(--secondary-container); color: white; position: relative; overflow: hidden; }
.bg-secondary-container-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  pointer-events: none;
}
.step-circle {
  width: 5rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.step-circle .material-symbols-outlined { font-size: 2.5rem; }
.step-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.step-title { font-size: 24px; font-weight: 600; margin-bottom: 0.5rem; }
.text-opacity { color: rgba(255, 255, 255, 0.8); }

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 25px -5px rgba(226, 232, 240, 0.5);
  height: 100%;
}
.star-rating { color: #facc15; margin-bottom: 1rem; }
.testimonial-text { font-style: italic; color: var(--on-surface-variant); font-size: 1.125rem; margin-bottom: 1.5rem; }
.customer-avatar { width: 3rem; height: 3rem; border-radius: 50%; overflow: hidden; background-color: #f1f5f9; }
.customer-avatar img { width: 100%; height: 100%; object-fit: cover; }

.footer-cta { background-color: #7c3aed; color: white; position: relative; overflow: hidden; padding: 5rem 0;}
.footer-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--primary), var(--secondary));
  mix-blend-mode: overlay;
}
.footer-phone { font-size: 48px; font-weight: 900; color: white; text-decoration: none; transition: transform 0.3s; display: inline-block; margin-bottom: 1rem; }
@media (max-width: 768px) { .footer-phone { font-size: 36px; } }
.footer-phone:hover { transform: scale(1.05); color: white; }
.availability-badge {
  padding: 0.5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer { background-color: #f8fafc; border-top: 1px solid #e2e8f0; padding: 4rem 0 2rem; }
.footer-heading { font-weight: 700; color: #0f172a; text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-link { color: #64748b; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-link:hover { color: #0f172a; }
.disclaimer-text { color: #94a3b8; font-size: 12px; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #e2e8f0; }

/* Mobile Navigation */
.nav-links-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hamburger-btn {
    background: transparent;
    border: none;
    color: var(--on-background);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

@media (max-width: 991px) {
    .nav-links-container {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(226, 232, 240, 0.2);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        padding: 2rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
        z-index: 1020;
    }
    
    .nav-links-container.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* Floating Contact Button */
.floating-call-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 4rem;
  height: 4rem;
  background-image: linear-gradient(to right, #7c3aed, #3b82f6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px -5px rgba(139, 92, 246, 0.4);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}
.floating-call-btn:hover {
  transform: scale(1.1);
  color: white;
}
.floating-call-btn .material-symbols-outlined {
  font-size: 2rem;
}
