.particle-canvas,
body::before {
  position: fixed;
  pointer-events: none;
  inset: 0;
}
.badge,
.btn {
  display: inline-flex;
  font-weight: 600;
}
.badge,
.btn,
.btn-ghost {
  font-weight: 600;
}
.footer-brand-logo,
.navbar-logo {
  -webkit-text-fill-color: transparent;
}
.accordion-item,
.btn,
.divider-glow,
.footer-enhanced,
.footer-section,
.footer-social a,
.glass-card,
.hero-section,
img {
  overflow: hidden;
}
.hero-content,
.hero-section,
.pricing-card,
.text-center {
  text-align: center;
}
.list-none,
.navbar-menu {
  list-style: none;
}
:root {
  --primary: #2563eb;
  --primary-glow: #3b82f6;
  --primary-dark: #1d4ed8;
  --secondary: #0f172a;
  --accent: #0891b2;
  --accent-glow: #06b6d4;
  --dark: #0f172a;
  --light: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --surface: #ffffff;
  --border-light: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 8px 25px rgba(37, 99, 235, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --mono: "Space Grotesk", monospace;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #2563eb #f1f5f9;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #2563eb;
  border-radius: 3px;
}
body {
  font-family: var(--sans);
  background: #fff;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  background: radial-gradient(
      ellipse at 20% 30%,
      rgba(37, 99, 235, 0.03) 0,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(8, 145, 178, 0.03) 0,
      transparent 60%
    );
  z-index: 0;
}
.particle-canvas {
  z-index: 1;
  opacity: 0.4;
}
.btn,
.glass-card,
.navbar-menu a,
.section-padding {
  position: relative;
}
.section-padding {
  z-index: 2;
}
.heading-hero {
  font-family: var(--serif);
  letter-spacing: -0.025em;
  margin-bottom: 4%;
}
.gradient-text,
.heading-hero .gradient-text {
  background: linear-gradient(135deg, #2563eb 0, #0891b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.heading-lg {
  font-family: var(--serif);
  letter-spacing: -0.02em;
}
.heading-md,
.heading-sm {
  font-family: var(--sans);
}
.heading-md {
  line-height: 1.3;
}
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.glass-card:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(37, 99, 235, 0.1);
}
.footer-social a i,
.footer-social a svg,
.glass-card > * {
  position: relative;
  z-index: 1;
}
.btn {
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #2563eb 0, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #3b82f6 0, #2563eb 100%);
}
.btn-outline {
  background: 0 0;
  color: #2563eb;
  border: 2px solid #2563eb;
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: #1d4ed8;
  color: #1d4ed8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}
.btn-accent {
  background: linear-gradient(135deg, #0891b2 0, #0e7490 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(8, 145, 178, 0.25);
}
.btn-accent:hover {
  box-shadow: 0 8px 25px rgba(8, 145, 178, 0.35);
  transform: translateY(-3px);
}
.btn-ghost {
  background: 0 0;
  color: #2563eb;
  border: none;
  padding: 0.5rem 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-brand-logo,
.footer-section a,
.navbar-logo,
.navbar-menu a,
.social-icon {
  text-decoration: none;
}
.btn-ghost:hover {
  color: #1d4ed8;
}
.badge {
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #1e40af;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  border-radius: 50px;
}
.badge-glow {
  background: rgba(8, 145, 178, 0.08);
  border-color: rgba(8, 145, 178, 0.3);
  color: #0e7490;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #e2e8f0;
  padding: 0.9rem 0;
  transition: 0.35s;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.95);
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.navbar-logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}
.navbar-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.navbar-menu a {
  color: #475569;
  font-weight: 500;
  font-size: 0.88rem;
  transition: 0.25s;
}
.navbar-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2563eb;
  border-radius: 2px;
  transition: width 0.3s;
}
.navbar-menu a:hover {
  color: #0f172a;
}
.navbar-menu a:hover::after,
.w-full {
  width: 100%;
}
.navbar-menu a.active,
.text-primary {
  color: #2563eb;
}
.navbar-menu a.active::after {
  width: 100%;
  background: #0891b2;
}
.navbar-toggle {
  display: none;
  background: 0 0;
  border: none;
  cursor: pointer;
  color: #2563eb;
}
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-content {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4rem !important;
}
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
#services .grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius-sm);
  transition: 0.3s;
}
.pricing-card,
.testimonial {
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
}
.feature-item:hover,
.process-step:hover {
  background: #f8fafc;
}
.feature-icon-sm {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(8, 145, 178, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-weight: 700;
  font-size: 1.1rem;
}
.pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.25);
}
.pricing-card.highlighted {
  background: linear-gradient(135deg, #2563eb 0, #0891b2 100%);
  color: #fff;
  border: none;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
  transform: scale(1.04);
}
.input:focus,
.select-input,
.testimonial {
  background: #fff;
}
.pricing-card.highlighted:hover {
  transform: scale(1.04) translateY(-6px);
}
.pricing-price {
  font-family: var(--mono);
  font-size: 2.8rem;
  font-weight: 700;
  color: #2563eb;
  margin: 1.2rem 0;
}
.pricing-card.highlighted .pricing-price,
.text-white {
  color: #fff;
}
.accordion-item {
  border-radius: var(--radius-sm);
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testimonial {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: 0.35s;
}
.input,
.select-input {
  border: 2px solid #e2e8f0;
}
.testimonial:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: #1e293b;
  margin-bottom: 1.5rem;
}
.input::placeholder {
  color: #94a3b8;
}
.select-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: #1e293b;
  transition: 0.3s;
  outline: 0;
  cursor: pointer;
}
.input:focus,
.select-input:focus,
.textarea-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}
.form-label {
  letter-spacing: 0.02em;
}
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  z-index: 40;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background: #1d4ed8;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}
.footer-enhanced {
  position: relative;
  padding: 6rem 0 0;
  background: radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(8, 145, 178, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #f8fafc 0, #fff 100%);
  border-top: 1px solid rgba(37, 99, 235, 0.1);
  z-index: 2;
}
.footer-enhanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(37, 99, 235, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  z-index: -1;
}
.footer-enhanced::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 70%);
  z-index: -1;
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .hero-cta-group {
    flex-direction: column;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
}
.footer-section {
  position: relative;
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.7);
  backdrop-filter: blur(14px);
  transition: 0.4s;
}
.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.35),
    rgba(8, 145, 178, 0.15),
    transparent
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.footer-section:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(37, 99, 235, 0.12),
    0 10px 20px rgba(15, 23, 42, 0.04);
}
.footer-brand-logo {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  -webkit-background-clip: text;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.divider-glow,
.footer-section h4::after {
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #0891b2);
}
.footer-section h4 {
  position: relative;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.footer-section h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.35s;
}
.footer-section a::before,
.footer-social a::before {
  background: linear-gradient(135deg, #2563eb, #0891b2);
  content: "";
}
.footer-section:hover h4::after {
  transform: scaleX(1);
}
.footer-section p {
  color: #64748b;
  line-height: 1.8;
  font-size: 0.95rem;
}
.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer-section a {
  position: relative;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.footer-bottom,
.footer-social a {
  align-items: center;
  position: relative;
}
.footer-section a::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s;
}
.footer-section a:hover {
  color: #2563eb;
  transform: translateX(6px);
}
.footer-section a:hover::before {
  transform: scale(1);
}
.divider-glow {
  width: 100px;
  height: 5px;
  margin: 1.7rem 0;
  position: relative;
}
.footer-social a,
.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
}
.divider-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.95),
    transparent
  );
  animation: 2.8s linear infinite footerShine;
}
@keyframes footerShine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  border-radius: 18px;
  justify-content: center;
  background: #fff;
  color: #2563eb;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: 0.35s;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
}
.footer-social a::before {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.footer-social a:hover {
  transform: translateY(-7px) scale(1.08);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.2);
}
.footer-social a:hover::before {
  opacity: 1;
}
.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: #64748b;
  font-size: 0.88rem;
}
.footer-bottom::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, transparent);
}
.footer-enhanced .glass-card {
  padding-top: 30% !important;
}
img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 20px 40px rgba(0, 0, 0, 0.12),
    0 30px 60px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
img:hover {
  transform: translateY(-6px) rotateX(3deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18), 0 25px 50px rgba(0, 0, 0, 0.15),
    0 40px 80px rgba(0, 0, 0, 0.12);
}
.popular-price-btn {
  background: #fff;
  color: #2563eb;
  border: none;
  padding: 12px;
  border-radius: 30px;
}
.social-icon {
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.social-icon:hover {
  transform: translateY(-5px) scale(1.05);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25),
    0 0 15px rgba(255, 255, 255, 0.15);
}
.about-card,
.card,
.glass-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover,
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.light-accent-bg {
  background: linear-gradient(135deg, #f0f9ff 0, #ecfeff 100%);
  border: 1px solid #bae6fd;
}
.achievement-block {
  background: linear-gradient(135deg, #2563eb 0, #0891b2 100%);
  padding: 3rem;
  color: #fff;
  border-radius: var(--radius-md);
}
.team-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}
.heading-hero,
.heading-lg {
  font-family: var(--serif);
  color: #0f172a;
}
.accordion-item,
.card {
  box-shadow: var(--shadow-sm);
}
.heading-hero {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
}
.heading-lg {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}
.heading-md,
.heading-sm {
  font-family: var(--sans);
  font-weight: 700;
  color: #1e293b;
}
.heading-md {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.heading-sm {
  font-size: 1.15rem;
}
.text-lg {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #475569;
}
.text-base {
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
}
.text-sm {
  font-size: 0.9rem;
  color: #64748b;
}
.input,
.textarea-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: #1e293b;
  outline: 0;
  transition: 0.3s;
}
.input {
  border-radius: 50px;
}
.textarea-input {
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-sm);
  resize: vertical;
  min-height: 120px;
}
.border-primary,
.icon-circle:hover {
  border-color: #2563eb;
}
.form-label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.9rem;
}
.form-group {
  margin-bottom: 1.3rem;
}
.max-w-800 {
  max-width: 800px;
}
.center-container {
  max-width: 600px;
  margin: 0 auto;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.gap-3 {
  gap: 1.5rem;
}
.gap-4 {
  gap: 2rem;
}
.grid {
  display: grid;
}
.flex,
.icon-circle {
  display: flex;
}
.grid-cols-1 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bg-blue-50 {
  background: #eff6ff;
}
.bg-gray-50 {
  background: #f9fafb;
}
.border-l-4 {
  border-left-width: 4px;
}
.border-blue-200 {
  border-color: #bfdbfe;
}
.border-gray-200 {
  border-color: #e5e7eb;
}
.border-t {
  border-top-width: 1px;
}
.rounded-0 {
  border-radius: 0;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.h-96 {
  height: 24rem;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-700 {
  color: #374151;
}
.font-bold {
  font-weight: 700;
}
.text-xs {
  font-size: 0.75rem;
}
.w-10 {
  width: 2.5rem;
}
.h-10 {
  height: 2.5rem;
}
.bg-primary {
  background: #2563eb;
}
.bg-accent {
  background: #0891b2;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.relative {
  position: relative;
}
.bg-gradient-primary {
  background: linear-gradient(135deg, #2563eb, #0891b2);
  border-radius: 20px;
}
.card {
  border-radius: var(--radius-md);
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08),
    rgba(8, 145, 178, 0.06)
  );
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: #2563eb;
  transition: 0.3s;
}
.icon-circle:hover {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}
.accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  background: #fff;
  transition: 0.3s;
}
.accordion-item.active {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.05);
  background: #fff;
}
.accordion-header {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1e293b;
  transition: 0.25s;
  gap: 1rem;
}
.accordion-header:hover {
  color: #2563eb;
  background: #f8fafc;
}
.accordion-icon {
  transition: transform 0.3s;
  color: #2563eb;
  flex-shrink: 0;
}
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
}
.accordion-item.active .accordion-content {
  max-height: 600px;
  padding: 1rem 1.5rem 1.5rem;
  color: #475569;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.hero-section {
  background: #fff;
  padding: 10rem 0 4rem;
}
.hero-subtitle {
  font-size: 1.3rem;
  color: #475569;
  max-width: 600px;
  margin: 1rem auto 0;
}
.bg-light-blue {
  background: linear-gradient(135deg, #f0f9ff 0, #ecfeff 100%);
}
.container-base {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.section-padding {
  padding-top: 5rem;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid #e2e8f0;
    padding: 1rem 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }
  .navbar-menu.active {
    display: flex;
  }
  .navbar-menu a {
    padding: 0.8rem 2rem;
    border-bottom: 1px solid #f1f5f9;
  }
  .navbar-toggle {
    display: block;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    gap: 2rem;
  }
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .container-base {
    padding: 0 1rem;
  }
}
.card,
.process-step {
  padding: 2rem;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.card {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
}
.max-w-700 {
  max-width: 700px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.center-container-lg {
  max-width: 700px;
  margin: 0 auto;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mb-6 {
  margin-bottom: 3rem;
}
.mb-8 {
  margin-bottom: 4rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-8 {
  margin-top: 4rem;
}
.gap-2 {
  gap: 1rem;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.ml-6 {
  margin-left: 1.5rem;
}
.opacity-95 {
  opacity: 0.95;
}
.inline-flex {
  display: inline-flex;
}
.inline-block {
  display: inline-block;
}
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
}
.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
.navbar-menu li{padding: 2%;}