:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --secondary: #0f172a;
  --accent: #3b82f6;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-main: #f8fafc;
  --bg-white: #ffffff;
  --bg-cream: #faf9f6;
  --border: #e2e8f0;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
}

.section-padding {
  padding: 6rem 0;
}

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

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-secondary {
  display: inline-block;
  background-color: white;
  color: var(--secondary);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: transparent;
  color: white;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary);
}

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

.w-100 {
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

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

.header-left {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  transition: var(--transition);
}

.header.scrolled .logo {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-right: 2rem;
}

.nav-links a {
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.header.scrolled .nav-links a {
  color: var(--text-main);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
  color: var(--primary);
}

.header-right {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: var(--transition);
}

.header.scrolled .hamburger span {
  background-color: var(--secondary);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&q=80&w=1920");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(15, 23, 42, 0.9),
      rgba(37, 99, 235, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: white;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: 4.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.features {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom, transparent 80px, var(--bg-main) 80px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-card.highlight {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.feature-card.highlight h3,
.feature-card.highlight p {
  color: white;
}

.feature-card.highlight p {
  opacity: 0.9;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-card.highlight .feature-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.services {
  background-color: var(--bg-main);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-img {
  height: 240px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  font-weight: 500;
}

.service-features i {
  color: var(--primary);
}

.cta-section {
  padding: 6rem 0;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(37, 99, 235, 0.2) 0%,
      rgba(15, 23, 42, 0) 70%);
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-form-container {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg-main);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 4px var(--primary-light);
}

.about-preview {
  background-color: var(--bg-main);
}

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

.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-experience {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--primary);
  color: white;
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-md);
}

.about-experience .number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.about-experience .text {
  font-size: 1rem;
  font-weight: 500;
}

.sub-title {
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-list i {
  color: var(--primary);
  font-size: 1.2rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.text-white {
  color: white !important;
}

.text-accent {
  color: var(--primary) !important;
}

.pricing-section {
  background-color: var(--bg-main);
  color: var(--text-main);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-section .section-title h2 {
  color: var(--secondary);
}

.pricing-section .section-title p {
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
  background: var(--bg-white);
  border: 2px solid var(--primary);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: var(--shadow-xl);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.pricing-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-header h3 {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.pricing-header h3 span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-header .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.pricing-header .price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-body ul {
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-body li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-left: 20px;
  position: relative;
}

.pricing-body li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.pricing-body li strong {
  color: var(--text-main);
}

.badge-free {
  background: #10b981;
  color: white;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 5px;
}

.addons-section h3 {
  color: var(--secondary) !important;
}

.table-responsive {
  overflow-x: auto;
}

.addons-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.addons-table th,
.addons-table td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.addons-table th {
  background: var(--bg-main);
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.addons-table td {
  color: var(--text-muted);
}

.addons-table tr:last-child td {
  border-bottom: none;
}

.addons-table td:last-child {
  font-weight: 700;
  color: var(--primary);
  text-align: right;
}

.pricing-notes {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border);
  color: var(--text-muted) !important;
  box-shadow: var(--shadow-sm);
}

.pricing-notes h4 {
  color: var(--secondary) !important;
  margin-bottom: 1rem;
}

.pricing-notes li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer {
  background: var(--bg-main);
  padding-top: 5rem;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-col p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
}

.footer-col h3 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--primary);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-muted);
}

.contact-info i {
  color: var(--primary);
  margin-top: 5px;
}

.footer-bottom {
  background: var(--bg-white);
  padding: 1.5rem 0;
  text-align: center;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.floating-social {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  flex-shrink: 0;
}

.floating-wa {
  background-color: #25d366;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.floating-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3);
}

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

.floating-tooltip {
  position: absolute;
  right: 75px;
  background: white;
  color: var(--text-main);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.floating-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.scroll-top {
  position: fixed;
  bottom: 180px;
  right: 35px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 99;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: var(--primary-dark);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .cta-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-left {
    gap: 1rem;
  }

  .header-btn {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: 1rem;
  }

  .header-right {
    gap: 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: white;
    padding: 6rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

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

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    margin-right: 0;
  }

  .nav-links a {
    color: var(--text-main);
    font-size: 1.25rem;
  }

  .header.scrolled .hamburger span,
  .nav-menu.active~.hamburger span {
    background-color: var(--secondary);
  }

  .nav-menu.active~.hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav-menu.active~.hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-menu.active~.hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .features {
    margin-top: 0;
    padding-top: 4rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

.process-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.process-container::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 50px;
  height: 3px;
  background: var(--primary);
  z-index: 2;
  width: 0;
  transition: width 3s linear;
}

.process-container.start-animation .process-line {
  width: calc(100% - 100px);
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 3;
  padding: 0 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-container.start-animation .process-step {
  opacity: 1;
  transform: translateY(0);
}

.process-container.start-animation .step-1 {
  transition-delay: 0s;
}

.process-container.start-animation .step-2 {
  transition-delay: 1s;
}

.process-container.start-animation .step-3 {
  transition-delay: 2s;
}

.process-container.start-animation .step-4 {
  transition-delay: 3s;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--bg-white);
  border: 3px solid var(--border);
  color: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s ease;
}

.process-container.start-animation .process-step .step-number {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.process-container.start-animation .step-1 .step-number {
  transition-delay: 0s;
}

.process-container.start-animation .step-2 .step-number {
  transition-delay: 1s;
}

.process-container.start-animation .step-3 .step-number {
  transition-delay: 2s;
}

.process-container.start-animation .step-4 .step-number {
  transition-delay: 3s;
}

.process-step:not(:last-child)::after {
  content: "054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 30px;
  right: -10px;
  color: var(--border);
  font-size: 1.5rem;
  background: var(--bg-white);
  padding: 0 5px;
  z-index: 4;
  transition: color 0.5s ease;
}

.process-container.start-animation .process-step:not(:last-child)::after {
  color: var(--primary);
}

.process-container.start-animation .step-1::after {
  transition-delay: 0.5s;
}

.process-container.start-animation .step-2::after {
  transition-delay: 1.5s;
}

.process-container.start-animation .step-3::after {
  transition-delay: 2.5s;
}





@media (max-width: 768px) {
  .wolk-svg {
    width: 300px;
    height: 150px;
  }

  .wolk-text {
    font-size: 4rem;
  }
}

/* Preloader Animation */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-main);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.wolk-svg {
  width: 500px;
  height: 200px;
}

.wolk-text {
  font-size: 8rem;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  fill: transparent;
  stroke: var(--primary);
  stroke-width: 2px;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawText 2s ease forwards, fillText 1s ease 2s forwards;
}

@keyframes drawText {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fillText {
  to {
    fill: var(--primary);
    stroke-width: 0;
  }
}

@media (max-width: 768px) {
  .wolk-svg {
    width: 300px;
    height: 150px;
  }

  .wolk-text {
    font-size: 4rem;
  }
}

@media (max-width: 992px) {
  .process-container {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    padding-bottom: 2rem;
  }

  .process-container::before {
    display: none;
    /* Hide the background line */
  }

  /* Make the line vertical! */
  .process-line {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px !important;
    height: 0;
    transition: height 3s linear, width 0s !important;
  }

  .process-container.start-animation .process-line {
    width: 4px !important;
    height: calc(100% - 80px) !important;
  }

  /* Point the arrows downwards */
  .process-step:not(:last-child)::after {
    top: auto;
    bottom: -45px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
    font-size: 1.5rem;
  }
}

/* Partners Slider (Infinite Marquee) */
.partners-slider {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 1rem 0;
  display: flex;
  align-items: center;
}

.partners-slider::before,
.partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.partners-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-white) 0%, transparent 100%);
}

.partners-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-white) 0%, transparent 100%);
}

.partners-track {
  display: inline-flex;
  gap: 4rem;
  align-items: center;
  animation: scrollLogos 25s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 2rem));
    /* Scroll half of the duplicated track */
  }
}

@media (max-width: 768px) {
  .partner-logo {
    height: 40px;
  }

  .partners-track {
    gap: 2rem;
  }
}