/*
Theme Name: get_foundly
Theme URI: https://getfoundly.my/
Author: sounthar
Description: A modern AI-powered SaaS landing page theme for lead generation, digital marketing, and business growth automation.
Version: 1.0
*/

/* ============================================ */
/* BASE RESET & GLOBAL STYLES
/* ============================================ */

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: #0d0d17;
  color: #e4e1f0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

::selection {
  background-color: rgba(193, 193, 255, 0.3);
}

/* Material Icons */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 24px;
  line-height: 1;
}

/* Glass Card Effect */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

/* Mesh Gradient Background */
.mesh-gradient {
  background: radial-gradient(at 0% 0%, #3D35F5 0%, transparent 50%),
              radial-gradient(at 100% 0%, #8d00c2 0%, transparent 50%),
              radial-gradient(at 50% 100%, #1b1b25 0%, transparent 100%);
}

/* ============================================ */
/* NAVBAR - FLOATING PILL LIKE N8N
/* ============================================ */

.navbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1450px;
  height: 72px;

  /* Glass */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  border: 1px solid rgba(255,255,255,.18);
  border-radius: 15px;

  z-index: 9999;
  padding: 0 20px;

  transition: all .35s ease;

  /* Premium shadow */
  box-shadow:
      0 1px 0 rgba(255,255,255,.15) inset,
      0 10px 40px rgba(15,15,30,.14),
      0 2px 10px rgba(15,15,30,.08);
}
.navbar.nav-hidden {
    transform: translate(-50%, calc(-100% - 30px));
}
.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 100%;
}

.logo {
  display: flex;
  flex-shrink: 0;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  font-weight: 500;
  color: #b9b7c8;
  font-size: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.nav-links a {
  color: #8b8a94;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-links a:hover {
  color: #3d35f5;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-whatsapp {
  height: 42px;
  padding: 0 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3D35F5, #6366f1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-whatsapp i {
  font-size: 16px;
  color: #ffffff;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
}

.btn-primary {
  height: 42px;
  padding: 0 28px;
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(135deg, #3D35F5, #6366f1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 5px;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-links-mobile {
  position: fixed;
  left: 10px;
  right: 10px;
  top: 94px;
  width: auto;
  max-height: 0;
  opacity: 0;
  background: #1b1b25;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  flex-direction: column;
  padding: 0 24px;
  gap: 4px;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, padding 0.35s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: none;
  list-style: none;
  margin: 0;
  overflow: hidden;
}

.nav-links-mobile.active {
  max-height: 80vh;
  opacity: 1;
  padding: 20px 24px 24px;
  overflow-y: auto;
}

.nav-links-mobile a {
  color: #e4e1f0;
  font-size: 18px;
  text-decoration: none;
  display: block;
  padding: 12px 4px;
  border-radius: 10px;
  transition: color 0.3s, background 0.3s;
  opacity: 0;
  transform: translateY(-10px);
}

.nav-links-mobile a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-links-mobile.active a {
  animation: mobileLinkDrop 0.4s ease forwards;
}

.nav-links-mobile.active a:nth-child(1) { animation-delay: 0.05s; }
.nav-links-mobile.active a:nth-child(2) { animation-delay: 0.1s; }
.nav-links-mobile.active a:nth-child(3) { animation-delay: 0.15s; }
.nav-links-mobile.active a:nth-child(4) { animation-delay: 0.2s; }
.nav-links-mobile.active a:nth-child(5) { animation-delay: 0.25s; }
.nav-links-mobile.active a:nth-child(6) { animation-delay: 0.3s; }

@keyframes mobileLinkDrop {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-actions-mobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(-10px);
}

.nav-links-mobile.active .nav-actions-mobile {
  animation: mobileLinkDrop 0.4s ease forwards;
  animation-delay: 0.35s;
}

.nav-actions-mobile .btn-whatsapp,
.nav-actions-mobile .btn-primary {
  justify-content: center;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
    .navbar {
    position: fixed;
    top: 10px;
    left: 20px;
    right: 20px;
    width: auto;
    height: 76px;
    padding: 0 16px;

    transform: none;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 15px;

    /* Premium shadow */
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.12),
      0 10px 32px rgba(15,15,30,.14),
      0 2px 8px rgba(15,15,30,.08);

    transition:
      transform .35s ease,
      background .35s ease,
      box-shadow .35s ease;
  }
.btn-whatsapp {
    height: 50px;
	}
.btn-primary {
    height: 50px;
	}
  .navbar-content {
    height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar.nav-hidden {
    transform: translateY(calc(-100% - 30px));
  }

  .nav-links {
    display: none !important;
  }

  .nav-actions {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  .logo img {
    height: 45px;
    width: auto;
  }

  .nav-links-mobile {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 64px;
    padding: unset;
  }

  .navbar-content {
    height: 64px;
  }

  .logo img {
    height: 50px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2.5px;
  }

  .nav-links-mobile {
    top: 82px;
  }

  .nav-links-mobile.active {
    padding: 16px 20px 20px;
	margin: 0 10px;
  }

  .nav-links-mobile a {
    font-size: 16px;
  }
}

/* ============================================ */
/* HERO SECTION — ANIMATED VERSION
/* ============================================ */

.hero {
  position: relative;
  min-height: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 0;
  overflow: hidden;
  background: #0d0d17;
}

/* Animated background — replaces old static opacity:0.2 gradient */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle, rgba(61,53,245,0.55) 0%, transparent 65%);
  overflow: hidden;
}

/* Left-top purple blob */
.hero-bg::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(61,53,245,0.55) 0%, transparent 65%);
  top: -180px;
  left: -100px;
  animation: blobLeft 14s ease-in-out infinite alternate;
}

/* Right pink/violet blob */
.hero-bg::after {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(61,53,245,0.55) 0%, transparent 65%);
  top: -80px;
  right: -80px;
  animation: blobRight 16s ease-in-out infinite alternate;
}

@keyframes blobLeft {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 80px) scale(1.15); }
}

@keyframes blobRight {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-70px, 60px) scale(1.2); }
}

/* Bottom fade blob — softens the hero bottom edge */
.hero-blob-bottom {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(27,27,37,0.9) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

/* Dot grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* Shimmer sweep line */
.hero-shimmer {
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  z-index: 2;
  pointer-events: none;
  animation: heroShimmer 5s ease-in-out 1s infinite;
}

@keyframes heroShimmer {
  to { left: 140%; }
}

/* Particle container */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Individual particle — spawned via JS */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleRise linear infinite;
}

@keyframes particleRise {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  10%  { opacity: 0.85; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) scale(0.4); }
}

/* Hero text — z-index + entrance animations added */
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #e4e1f0;
  max-width: 56rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 5;
  opacity: 0;
  animation: heroSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}

.hero-title span {
  background: linear-gradient(120deg, #7b74ff 0%, #a78bfa 50%, #eab2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200%;
  animation: gradShift 5s ease-in-out infinite;
}

@keyframes gradShift {
  0%,100% { background-position: 0%; }
  50%     { background-position: 100%; }
}

.hero-description {
  font-size: 1.125rem;
  color: #c6c4d9;
  max-width: 42rem;
  line-height: 1.625;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 5;
  opacity: 0;
  animation: heroSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.75s forwards;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 5;
  opacity: 0;
  animation: heroSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.95s forwards;
}

.btn-start {
  padding: 12px 32px;
  background: linear-gradient(135deg, #3D35F5, #7c72ff);
  color: #ffffff;
  border-radius: 0.75rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 28px rgba(61,53,245,0.45);
}

.btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(61,53,245,0.6);
}

.btn-studies {
  padding: 12px 32px;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(61,53,245,0.5);
  color: #e4e1f0;
  border-radius: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}

.btn-studies:hover {
  background-color: rgba(61,53,245,0.15);
  transform: translateY(-2px);
}

.region-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 48rem;
  position: relative;
  z-index: 5;
  opacity: 0;
  animation: heroSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
}

.pill {
  padding: 8px 20px;
  background-color: rgba(255,255,255,0.06);
  border-radius: 9999px;
  font-size: 0.875rem;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
  display: flex;
  align-items: center;
}
.pill .fi {
  margin-right: 6px;
  vertical-align: middle;
}
.pill:hover {
  background: rgba(61,53,245,0.2);
  border-color: rgba(61,53,245,0.5);
  color: #fff;
}

/* Shared hero entrance animation */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================ */
/* STATS BAR SECTION (Scoped)
/* ============================================ */

.gf-stats-bar {
  background-color: #F4F5F7;
  padding: 4rem 1.5rem;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
}

.gf-stats-bar .stats-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  align-items: center;
}

.gf-stats-bar .stat-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

.gf-stats-bar .stat-card:nth-child(odd) {
  margin-top: -30px;
}

.gf-stats-bar .stat-card:nth-child(even) {
  margin-top: 30px;
}

.gf-stats-bar .stat-icon {
  font-size: 24px;
  color: #3D35F5;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.gf-stats-bar .stat-number {
  font-size: 70px;
  color: #3D35F5;
  line-height: 1;
  transition: color 0.3s ease;
}
.stat-card i.fa-solid {
    font-size: 40px;
}
.gf-stats-bar .stat-label {
  font-size: 14px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: color 0.3s ease;
}

.gf-stats-bar .stat-card.active {
  background-color: #3D35F5;
  border-color: #3D35F5;
  box-shadow: 0 10px 20px rgba(61, 53, 245, 0.15);
}

.gf-stats-bar .stat-card.active .stat-icon,
.gf-stats-bar .stat-card.active .stat-number,
.gf-stats-bar .stat-card.active .stat-label {
  color: #FFFFFF;
}

.gf-stats-bar .stat-card:hover {
  background-color: #3D35F5;
  border-color: #3D35F5;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(61, 53, 245, 0.15);
}

.gf-stats-bar .stat-card:hover .stat-icon,
.gf-stats-bar .stat-card:hover .stat-number,
.gf-stats-bar .stat-card:hover .stat-label {
  color: #FFFFFF;
}

.gf-stats-bar .stats-container:has(.stat-card:hover) .stat-card.active:not(:hover) {
  background-color: #FFFFFF;
  border-color: #E5E7EB;
  box-shadow: none;
}

.gf-stats-bar .stats-container:has(.stat-card:hover) .stat-card.active:not(:hover) .stat-icon,
.gf-stats-bar .stats-container:has(.stat-card:hover) .stat-card.active:not(:hover) .stat-number {
  color: #3D35F5;
}

.gf-stats-bar .stats-container:has(.stat-card:hover) .stat-card.active:not(:hover) .stat-label {
  color: #6B7280;
}

@media (max-width: 640px) {
  .gf-stats-bar .stat-card:nth-child(odd),
  .gf-stats-bar .stat-card:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .gf-stats-bar .stat-card {
    align-items: center;
  }
}

/* ============================================ */
/* SERVICES GRID SECTION
/* ============================================ */

.services-grid-section {
  background: #ffffff;
  padding: 4rem 1.5rem;
}

.services-grid-section .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.services-badge {
  display: inline-block;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.services-heading {
font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    color: #0a0a0f;
    padding-bottom: 1rem;
    width: 818px;
    margin: 0 auto;
}

.services-heading span {
  background: linear-gradient(135deg, #4f46e5, #818cf8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.services-subtext {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 400;
}

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

.service-card {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem 2rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  border-top: 3px solid #3b82f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12), 0 8px 12px -6px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  border-top-color: #2563eb;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.card-icon i {
  font-size: 1.8rem;
  color: #3b82f6;
}

.service-card:nth-child(2) .card-icon i { color: #4f46e5; }
.service-card:nth-child(3) .card-icon i { color: #2563eb; }
.service-card:nth-child(4) .card-icon i { color: #3b82f6; }
.service-card:nth-child(5) .card-icon i { color: #4f46e5; }
.service-card:nth-child(6) .card-icon i { color: #1d4ed8; }

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.card-description {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.card-link {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #3b82f6;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.25s ease;
}

.card-link i {
  font-size: 0.8rem;
  transition: transform 0.2s;
}

.card-link:hover {
  gap: 0.75rem;
  color: #1e40af;
}

.card-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  .services-heading {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
.services-heading {
    width: unset;
    margin: 0 auto;
}
    .hiw-title {
        font-size: 35px !important;
    }
.portfolio-title {
    font-size: 35px !important;
}
}

@media (max-width: 640px) {
  .services-grid-section {
    padding: 4rem 1.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .services-heading {
    font-size: 35px;
  }
  .services-subtext {
    font-size: 1rem;
  }
}

/* ============================================ */
/* HOW IT WORKS SECTION
/* ============================================ */

.how-it-works {
  background: #f9fafb;
  padding: 4rem 1.5rem;
  position: relative;
}

.hiw-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.hiw-badge {
  display: inline-block;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.hiw-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: #0a0a0f;
  margin-bottom: 0.75rem;
}

.hiw-title span {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hiw-sub {
  font-size: 1.2rem;
  color: #475569;
  max-width: 500px;
  margin: 0 auto;
}

.steps-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 210px;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid #eef2ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.03);
  animation: fadeSlideUp 0.55s ease-out forwards;
  opacity: 0;
}

.step-card:nth-child(1) { animation-delay: 0.05s; }
.step-card:nth-child(2) { animation-delay: 0.15s; }
.step-card:nth-child(3) { animation-delay: 0.25s; }
.step-card:nth-child(4) { animation-delay: 0.35s; }

.step-card:hover {
  transform: translateY(-8px);
  border-color: #c7d2fe;
  box-shadow: 0 20px 30px -12px rgba(59, 130, 246, 0.12), 0 8px 20px -8px rgba(0, 0, 0, 0.05);
}

.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  transition: all 0.3s;
}

.step-card:hover .step-number {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transform: scale(1.02);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #eff6ff, #e0e7ff);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  transform: scale(0.96);
}

.step-card:hover .step-icon i {
  color: white;
  transform: scale(1.05);
}

.step-icon i {
  font-size: 1.6rem;
  color: #3b82f6;
  transition: all 0.25s;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.step-desc {
  color: #475569;
  font-size: 16px;
  line-height: 1.5;
}

.step-connector {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 1;
  pointer-events: none;
}

.connector-line {
  position: absolute;
  height: 2px;
  background: repeating-linear-gradient(90deg, #94a3b8, #94a3b8 8px, transparent 8px, transparent 16px);
  top: 50%;
  transform: translateY(-50%);
  animation: dashMove 0.8s linear infinite;
}

@keyframes dashMove {
  0% { background-position: 0 0; }
  100% { background-position: 24px 0; }
}

.connector-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
  animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.6; }
  50% { transform: translateY(-50%) translateX(4px); opacity: 1; }
}

@media (min-width: 981px) {
  .connector-1 { left: 23%; width: 8%; }
  .connector-1 .connector-arrow { right: -12px; }
  .connector-2 { left: 48%; width: 8%; }
  .connector-2 .connector-arrow { right: -12px; }
  .connector-3 { left: 73%; width: 8%; }
  .connector-3 .connector-arrow { right: -12px; }
}

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

@media (max-width: 980px) {
  .steps-container {
    flex-direction: column;
    gap: 1.8rem;
  }
  .step-card {
    max-width: 100%;
  }
  .step-connector {
    display: none;
  }
}

/* ============================================ */
/* PORTFOLIO / TESTIMONIALS SECTION
/* ============================================ */

.portfolio-wrapper {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  background: #ffffff;
  color: #0f172a;
  padding: 4rem 1.5rem;
  width: 100%;
}

.portfolio-container {
  max-width: 1280px;
  margin: 0 auto;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-badge {
  display: inline-block;
  background: #dbeafe;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.portfolio-title {
  font-size: 50px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.portfolio-title span {
  color: #2563eb;
}

.portfolio-sub {
  color: #64748b;
  font-size: 20px;
  max-width: 28rem;
  margin: 0 auto;
}

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

.portfolio-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #eef2ff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
}

.browser-chrome {
  background: #1e293b;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #334155;
}

.browser-dots {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-url-bar {
  background: #0f172a;
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.browser-lock {
  width: 10px;
  height: 10px;
  border: 1px solid #64748b;
  border-radius: 2px;
  position: relative;
}

.browser-url {
  font-size: 0.7rem;
  color: #94a3b8;
}

.website-preview {
  width: 100%;
  height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
  border-bottom: 1px solid #eef2ff;
  background: #f8fafc;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.website-preview:active {
  cursor: grabbing;
}

.website-preview::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}

.scrollable-image {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 1.25rem;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.live-badge {
  background: #dcfce7;
  color: #166534;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.stars {
  color: #fbbf24;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f1f5f9;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.5;
  color: #334155;
  margin: 0.5rem 0;
}

.testimonial-author {
  font-weight: 700;
  color: #0f172a;
  font-size: 20px;
  padding-top: 10px;
}

.testimonial-meta {
  font-size: 14px;
  color: #64748b;
}

.open-link {
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
  transition: gap 0.2s;
}

.open-link:hover {
  gap: 0.5rem;
  color: #1d4ed8;
}

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

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .website-preview {
    height: 380px;
  }
  .portfolio-wrapper {
    padding: 4rem 1.5rem;
  }
}

/* ============================================ */
/* INDUSTRIES PILLS SECTION
/* ============================================ */

.kinetic-industries-wrapper {
  padding: 4rem 1.5rem;
  background: #f9fafb;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
}

.kinetic-industries-container {
  max-width: 1280px;
  margin: 0 auto;
}

.kinetic-industries-header {
  text-align: center;
  margin-bottom: 3rem;
}

.kinetic-industries-badge {
  display: inline-block;
  background: #dbeafe;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.kinetic-industries-title {
  font-size: 50px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.kinetic-industries-title span {
  color: #2563eb;
}

.kinetic-industries-sub {
  color: #64748b;
  font-size: 20px;
  margin: 0 auto;
}

.kinetic-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.kinetic-pill {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6.25rem;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  will-change: transform;
}

.kinetic-pill:nth-child(1)  { animation: kineticFloat1 3s ease-in-out infinite; }
.kinetic-pill:nth-child(2)  { animation: kineticFloat2 3.5s ease-in-out infinite; }
.kinetic-pill:nth-child(3)  { animation: kineticFloat3 2.8s ease-in-out infinite; }
.kinetic-pill:nth-child(4)  { animation: kineticFloat1 4s ease-in-out infinite; }
.kinetic-pill:nth-child(5)  { animation: kineticFloat2 3.2s ease-in-out infinite; }
.kinetic-pill:nth-child(6)  { animation: kineticFloat3 3.8s ease-in-out infinite; }
.kinetic-pill:nth-child(7)  { animation: kineticFloat1 2.5s ease-in-out infinite; }
.kinetic-pill:nth-child(8)  { animation: kineticFloat2 4.2s ease-in-out infinite; }
.kinetic-pill:nth-child(9)  { animation: kineticFloat3 3s ease-in-out infinite; }
.kinetic-pill:nth-child(10) { animation: kineticFloat1 3.6s ease-in-out infinite; }
.kinetic-pill:nth-child(11) { animation: kineticFloat2 2.9s ease-in-out infinite; }
.kinetic-pill:nth-child(12) { animation: kineticFloat3 3.4s ease-in-out infinite; }
.kinetic-pill:nth-child(13) { animation: kineticFloat1 4.5s ease-in-out infinite; }
.kinetic-pill:nth-child(14) { animation: kineticFloat2 2.7s ease-in-out infinite; }
.kinetic-pill:nth-child(15) { animation: kineticFloat3 3.9s ease-in-out infinite; }
.kinetic-pill:nth-child(16) { animation: kineticFloat1 3.1s ease-in-out infinite; }
.kinetic-pill:nth-child(17) { animation: kineticFloat2 3.7s ease-in-out infinite; }
.kinetic-pill:nth-child(18) { animation: kineticFloat3 4.1s ease-in-out infinite; }
.kinetic-pill:nth-child(19) { animation: kineticFloat1 2.6s ease-in-out infinite; }
.kinetic-pill:nth-child(20) { animation: kineticFloat2 3.3s ease-in-out infinite; }

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

@keyframes kineticFloat2 {
  0%, 100% { transform: translateX(0px); }
  50% { transform: translateX(5px); }
}

@keyframes kineticFloat3 {
  0%, 100% { transform: translate(0px, 0px); }
  25% { transform: translate(3px, -3px); }
  50% { transform: translate(0px, -5px); }
  75% { transform: translate(-3px, -2px); }
}

.kinetic-pill:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  transition: all 0.25s ease;
}

.kinetic-pill:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .kinetic-industries-wrapper {
    padding: 3rem 1.5rem;
  }
  .kinetic-industries-title {
    font-size: 35px;
  }
  .kinetic-pill-cloud {
    gap: 0.75rem;
  }
  .kinetic-pill {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    animation-duration: 4s !important;
  }
}

/* ============================================ */
/* WHY GETFOUNDLY SECTION
/* ============================================ */

.why-gf-wrapper {
  padding: 4rem 1.5rem 2rem 1.5rem;
  background: #f9fafb;
}

.why-gf-container {
  max-width: 1280px;
  margin: 0 auto;
}

.why-gf-header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-gf-badge {
  display: inline-block;
  background: #dbeafe;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.why-gf-title {
  font-size: 50px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.why-gf-title span {
  color: #2563eb;
}

.why-gf-sub {
  color: #64748b;
  font-size: 1rem;
  max-width: 32rem;
  margin: 0 auto;
}

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

.why-gf-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid #eef2ff;
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.why-gf-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1), 0 20px 30px -12px rgba(37, 99, 235, 0.15);
}

.why-gf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-top-left-radius: 1.5rem;
  border-top: 3px solid #2563eb;
  border-left: 3px solid #2563eb;
  transition: all 0.3s ease;
  opacity: 0;
}

.why-gf-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-bottom-right-radius: 1.5rem;
  border-bottom: 3px solid #2563eb;
  border-right: 3px solid #2563eb;
  transition: all 0.3s ease;
  opacity: 0;
}

.why-gf-card:hover::before {
  width: 30px; height: 30px; opacity: 1;
}

.why-gf-card:hover::after {
  width: 30px; height: 30px; opacity: 1;
}

.why-gf-icon {
  width: 75px; height: 75px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.why-gf-icon::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #2563eb;
  opacity: 0;
  z-index: 0;
}

.why-gf-card:hover .why-gf-icon::before {
  animation: pulseRing 0.8s ease-out;
}

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

.why-gf-icon i {
  font-size: 2rem;
  color: #2563eb;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.why-gf-card:hover .why-gf-icon {
  background: #2563eb;
}

.why-gf-card:hover .why-gf-icon i {
  color: white;
  transform: scale(1.1);
}

.why-gf-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.why-gf-card-title::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: #2563eb;
  transition: width 0.4s ease;
}

.why-gf-card:hover .why-gf-card-title::after {
  width: 100%;
}

.why-gf-card-desc {
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.why-gf-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.why-gf-tag {
  display: inline-block;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
  cursor: default;
}

.why-gf-card:hover .why-gf-tag {
  background: #dbeafe;
  color: #2563eb;
}

.why-gf-card:hover .why-gf-tag:nth-child(1) { transform: translateX(-3px); }
.why-gf-card:hover .why-gf-tag:nth-child(2) { transform: translateY(-2px); }
.why-gf-card:hover .why-gf-tag:nth-child(3) { transform: translateX(3px); }

@media (max-width: 1024px) {
  .why-gf-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .why-gf-grid {
    grid-template-columns: 1fr;
  }
  .why-gf-wrapper {
    padding: 3rem 1.25rem;
  }
  .why-gf-title {
    font-size: 35px;
  }
}

/* ============================================ */
/* FINAL CTA SECTION
/* ============================================ */

.final-cta-wrapper {
  padding: 4rem 1.5rem;
  background: #f9fafb;
  display: flex;
  justify-content: center;
  align-items: center;
}

.final-cta-card {
  max-width: 1280px;
  width: 100%;
  background: #0B0C2A;
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: -30%; left: -30%;
  width: 160%; height: 160%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  animation: rotateBg 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.final-cta-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.final-cta-heading {
  font-size: 50px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.final-cta-heading span {
  background: linear-gradient(135deg, #ffffff, #93c5fd);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.final-cta-sub {
  font-size: 20px;
  color: #94a3b8;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.final-cta-highlight {
  display: inline-block;
  background: rgba(37, 99, 235, 0.25);
  color: #93c5fd;
  padding: 0.1rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
}

.final-cta-quote {
  font-size: 1.1rem;
  font-weight: 500;
  color: #e2e8f0;
  margin-bottom: 2rem;
  font-style: normal;
  border-left: 3px solid #3b82f6;
  padding-left: 1.25rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.final-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 1.8rem;
  background: #ffffff;
  color: #0B0C2A;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.final-cta-btn-primary i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.final-cta-btn-primary:hover {
  transform: translateY(-2px);
  background: #f8fafc;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.final-cta-btn-primary:hover i {
  transform: translateX(4px);
}

.final-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 1.8rem;
  background: transparent;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: 'Inter', sans-serif;
}

.final-cta-btn-secondary i {
  font-size: 20px;
  color: #25D366;
  transition: transform 0.2s ease;
}

.final-cta-btn-secondary:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  transform: translateY(-2px);
}

.final-cta-btn-secondary:hover i {
  transform: scale(1.1);
}

.final-cta-disclaimer {
  font-size: 0.7rem;
  color: #4b556b;
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .final-cta-wrapper {
    padding: 2rem 1rem;
  }
  .final-cta-card {
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
  }
  .final-cta-heading {
    font-size: 35px;
  }
  .final-cta-quote {
    font-size: 0.95rem;
    padding-left: 0.75rem;
  }
  .final-cta-buttons {
    gap: 0.75rem;
  }
  .final-cta-btn-primary,
  .final-cta-btn-secondary {
    height: 44px;
    padding: 0 1.25rem;
    font-size: 0.85rem;
  }
}

/* ============================================ */
/* FOOTER SECTION
/* ============================================ */

.footer-wrapper {
  background: #0f172a;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-col-logo {
  max-width: 320px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #93c5fd);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-tagline {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #94a3b8;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-col h3 {
  color: #ffffff;
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #60a5fa;
  transform: translateX(4px);
}

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

.footer-copyright {
  color: #64748b;
  font-size: 0.75rem;
}

.footer-copyright a {
  color: #64748b;
  text-decoration: none;
}

.footer-copyright a:hover {
  color: #60a5fa;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #60a5fa;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-col-logo {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
  .footer-wrapper {
    padding: 2rem 1.25rem 1.25rem;
  }
}

/* ============================================ */
/* MOBILE RESPONSIVE (Global)
/* ============================================ */

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

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
  .hero-description {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 72px;
   line-height: 6rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero-title {
    font-size: 50px;
        line-height: 65px;
  }
.footer-logo {
    display: flex;
    justify-content: center;
}
.footer-logo img {
  width: 100px;
  height: auto;
}
    .footer-wrapper {
        padding: 4rem 1.25rem 1.25rem;
    }

}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

.footer-logo img {
  width: 120px;
  height: 120px;
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
    bottom: 100px;
    right: 28px;
  background: #25D366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20b859;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Pulse animation for attention (optional) */
.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .whatsapp-float {
width: 52px;
        height: 52px;
        bottom: 120px;
        right: 12px;
  }
}


/* Just the bounce animation - nothing else */
@keyframes whatsappBounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.whatsapp-bounce {
  animation: whatsappBounce 0.3s ease-in-out !important;
}
.service-card .card-title {
    margin: 0px 0px 10px 0px;
}

   /* Logo Carousel Section */
    .logo-carousel-section {
      padding: 2rem 2rem 4rem 2rem;
      background: #ffffff;
      overflow: hidden;
    }

    /* Logo Carousel Styles */
    .logo-carousel {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    /* Gradient fade edges */
    .logo-carousel::before,
    .logo-carousel::after {
      content: '';
      position: absolute;
      top: 0;
      width: 100px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    .logo-carousel__marquee-container {
      width: 100%;
      overflow: hidden;
    }

    .logo-carousel__marquee {
      display: flex;
      gap: 2rem;
      animation: scroll 25s linear infinite;
      width: fit-content;
    }

    /* Pause on hover */
    .logo-carousel:hover .logo-carousel__marquee {
      animation-play-state: paused;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .logo-carousel__item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 120px;
      padding: 0.5rem;
      transition: all 0.3s ease;
    }

    .logo-carousel__item:hover {
      opacity: 1;
      transform: scale(1.05);
    }

    .logo-carousel__item img {
      height: 300px;
      width: auto;
      object-fit: contain;
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
      .logo-carousel__item {
        min-width: 80px;
      }
      
      .logo-carousel__item img {
        height: 240px;
      }
      
      .logo-carousel__marquee {
        gap: 1rem;
      }
      
      .logo-carousel::before,
      .logo-carousel::after {
        width: 50px;
      }
    }

/* Scroll to Top Button */
.scroll-to-top {
position: fixed;
    bottom: 40px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #3D35F5;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgb(61 53 245 / .3);
    z-index: 99999 !important;
    border-radius: 50%;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
    background: #5376f6;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(83, 118, 246, 0.4);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 50px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

/* About Section */
    .about-section {
      padding: 4rem 2rem 4rem 2rem;
      background: #FFFFFF;
    }

    .about-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .about-label {
display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    }

    .about-heading {
    font-size: 50px;
    font-weight: 800;
    color: #0f172a;
    padding-bottom: 0.75rem;
    width: 700px;
    margin: 0 auto;
	line-height: 1.2;
    }

    .about-heading span {
      color: #2563eb;
      position: relative;
    }
    .about-header {
      text-align: center;
    margin-bottom: 3rem;
    }

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

    .about-text {
      font-size: 17px;
      line-height: 1.6;
      color: #4B5563;
      margin-bottom: 1.5rem;
    }

    .about-text strong {
      color: #0B0C2A;
      font-weight: 600;
    }

    .about-parent {
      margin-top: 2rem;
      font-size: 14px;
      color: #6B7280;
    }

    .about-parent a {
      font-weight: 500;
    }

    .about-parent a:hover {
      color: #3D35F5;
    }

    .about-stats {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .about-stat-card {
background: #F4F5F7;
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 53, 245, 0.1);
    animation: gentleSwing 4s ease-in-out infinite;
    transform-origin: center top;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 20% 40% 40%;
    align-items: center;
    }

    .about-stat-card:nth-child(1) { animation-delay: 0s; }
    .about-stat-card:nth-child(2) { animation-delay: 0.6s; }
    .about-stat-card:nth-child(3) { animation-delay: 1.2s; }

    .about-stat-card:hover {
      animation-play-state: paused;
      transform: translateY(-5px);
      border-color: #3D35F5;
      box-shadow: 0 12px 25px rgba(61, 53, 245, 0.12);
    }

    .about-stat-icon {
      font-size: 32px;
      color: #3D35F5;
    }

    .about-stat-title {
      font-size: 22px;
      font-weight: 700;
      color: #0B0C2A;
    }

    .about-stat-desc {
      font-size: 14px;
      color: #6B7280;
    }

    @keyframes gentleSwing {
      0% { transform: rotate(0deg) translateX(0); }
      25% { transform: rotate(0.8deg) translateX(3px); }
      75% { transform: rotate(-0.8deg) translateX(-3px); }
      100% { transform: rotate(0deg) translateX(0); }
    }

    @media (max-width: 768px) {
      .about-section {
        padding: 3rem 1.5rem;
      }
.about-stat-card {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 10px;
}
          .about-heading {
    width: unset;
    }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      
      .about-heading {
        font-size: 35px;
      }
      
      @keyframes gentleSwing {
        0%, 100% { transform: rotate(0deg); }
        50% { transform: rotate(0.5deg); }
      }
    }

    /* AI AGENT SECTION */
    .ai-agent-section {
      padding: 4rem 2rem;
      background: #0B0C2A;
      position: relative;
      overflow: hidden;
    }

    .ai-agent-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 50%, rgba(61, 53, 245, 0.2), transparent 50%),
                  radial-gradient(circle at 80% 80%, rgba(245, 166, 35, 0.1), transparent 60%);
      pointer-events: none;
    }

    .ai-agent-container {
      max-width: 1280px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .ai-agent-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #F5A623;
      background: rgba(245, 166, 35, 0.12);
      padding: 0.5rem 1.2rem;
      border-radius: 100px;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(245, 166, 35, 0.3);
    }
    .ai-agent-badge p{
padding-top: 2px;
    }
    .ai-agent-badge i {
      font-size: 12px;
      color: #F5A623;
    }

    .ai-agent-heading {
      font-size: 50px;
      font-weight: 800;
      line-height: 1.2;
      color: #FFFFFF;
      margin-bottom: 1.2rem;
    }

    .ai-agent-heading span {
          background: linear-gradient(135deg, #4f46e5, #818cf8);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    }

    .ai-agent-subtext {
      font-size: 20px;
      line-height: 1.6;
      color: #A1A5B5;
      max-width: 750px;
      margin: 0 auto 3rem auto;
    }

    .ai-agent-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .ai-agent-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 1.75rem;
      text-align: left;
      transition: all 0.4s ease;
    }

    .ai-agent-card:hover {
      border-color: #3D35F5;
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.07);
    }

    .ai-agent-card-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #3D35F5, #5B4DFF);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      box-shadow: 0 8px 20px rgba(61, 53, 245, 0.3);
    }

    .ai-agent-card-icon i {
      font-size: 26px;
      color: #FFFFFF;
    }

    .ai-agent-card:hover .ai-agent-card-icon {
      transform: scale(1.05);
      background: linear-gradient(135deg, #F5A623, #e09512);
    }

    .ai-agent-card-title {
      font-size: 22px;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 0.5rem;
    }

    .ai-agent-card-desc {
      font-size: 14px;
      line-height: 1.5;
      color: #B0B4C4;
    }

    .ai-agent-launch-text {
      font-size: 14px;
      color: #7A7F8E;
      margin-bottom: 2rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .ai-agent-launch-text i {
      color: #F5A623;
      font-size: 8px;
      animation: pulse 1.5s ease-in-out infinite;
    }

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

    .ai-agent-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #F5A623;
      color: #0B0C2A;
      font-size: 16px;
      font-weight: 700;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
	 margin-left: 20px;
    }

    .ai-agent-btn i {
      transition: transform 0.3s ease;
      color: #0B0C2A;
    }

    .ai-agent-btn:hover {
      background: #FFFFFF;
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(245, 166, 35, 0.4);
    }

    .ai-agent-btn:hover i {
      transform: translateX(5px);
    }

    @media (max-width: 1024px) {
      .ai-agent-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
    }

    @media (max-width: 768px) {
      .ai-agent-section {
        padding: 4rem 1.5rem;
      }
      
      .ai-agent-heading {
        font-size: 35px;
      }
      
      .ai-agent-subtext {
        font-size: 20px;
		padding-top: 20px;
      }
      
      .ai-agent-cards {
        grid-template-columns: 1fr;
      }
      
      .ai-agent-card {
        padding: 1.5rem;
      }
    }

/* choose plan */
.choose-wrapper {
     background-color: #ffffff  !important;
    }
    .choose-plan-pricing-container {
      max-width: 1280px;
      margin: 0 auto;
	padding: 4rem 0rem;
    }

    .choose-plan-pricing-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .choose-plan-pricing-header h2 {
font-size: 50px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: .75rem;
    }
    .choose-plan-pricing-header p {
    color: #64748b;
    font-size: 20px;
    max-width: 38rem;
    margin: 0 auto;
    }

    .choose-plan-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .choose-plan-pricing-card {
      background: white;
      border-radius: 1.5rem;
      padding: 1.5rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.02);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
    }
    .choose-plan-pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 32px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.03);
    }

    .choose-plan-card-dark {
      background: #0f172a;
      background: linear-gradient(145deg, #0f172a 0%, #0a0f1c 100%);
      color: white;
    }
    .choose-plan-card-dark .choose-plan-plan-title {
      color: white;
    }
    .choose-plan-card-dark .choose-plan-plan-desc {
      color: #cbd5e6;
    }
    .choose-plan-card-dark .choose-plan-old-price {
      color: #94a3b8;
    }
    .choose-plan-card-dark .choose-plan-current-price {
      color: white;
    }
    .choose-plan-card-dark .choose-plan-price-period {
      color: #cbd5e6;
    }
    .choose-plan-card-dark .choose-plan-setup-fee {
      background: #1e293b;
      color: #facc15;
    }
    .choose-plan-card-dark .choose-plan-renewal-note {
      background: #1e293b;
      color: #cbd5e6;
    }
    .choose-plan-card-dark .choose-plan-feature-item {
      color: #e2e8f0;
    }
    .choose-plan-card-dark .choose-plan-feature-item i {
      color: #34d399;
    }
    .choose-plan-card-dark .choose-plan-feature-bold {
      color: #facc15;
    }
    .choose-plan-card-dark hr {
      background: #1e293b;
    }
    .choose-plan-card-dark .choose-plan-guarantee {
      background: #facc1510;
      color: #fde047;
      border-left-color: #facc15;
    }

    .choose-plan-badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.3rem 0.9rem;
      border-radius: 100px;
      background: #3d35f5;
      color: white;
      width: fit-content;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .choose-plan-plan-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
      color: #0f172a;
    }
    .choose-plan-plan-desc {
      font-size: 0.8rem;
      color: #64748b;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .choose-plan-old-price {
      font-size: 0.8rem;
      color: #94a3b8;
      text-decoration: line-through;
    }
    .choose-plan-current-price {
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.1;
      color: #0f172a;
    }
    .choose-plan-price-period {
      font-size: 0.85rem;
      font-weight: 500;
      color: #64748b;
    }
    .choose-plan-setup-fee {
      font-size: 0.7rem;
      color: #3d35f5;
      background: #3d35f510;
      display: inline-block;
      padding: 0.2rem 0.6rem;
      border-radius: 30px;
      margin-top: 0.25rem;
      font-weight: 600;
    }

    .choose-plan-button {
      width: 100%;
      background: #3d35f5;
      color: white;
      font-weight: 700;
      padding: 10px 0;
      border-radius: 2rem;
      text-align: center;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.2s ease;
      margin: 1rem 0 0.6rem;
      text-decoration: none;
      border: none;
     display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    }
.choose-plan-button i.fa-brands.fa-whatsapp {
    font-size: 30px;
}
    .choose-plan-button:hover {
      background: #2b23d4;
      transform: scale(0.98);
    }

    .choose-plan-renewal-note {
      font-size: 0.7rem;
      color: #5b6e8c;
      background: #f8fafc;
      padding: 0.5rem 0.7rem;
      border-radius: 0.75rem;
      margin-bottom: 1rem;
      line-height: 1.4;
    }

    hr {
      margin: 0.8rem 0;
      border: none;
      height: 1px;
      background: #eef2f6;
    }

    .choose-plan-feature-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.8rem;
      font-weight: 500;
      color: #1e293b;
      margin-bottom: 0.65rem;
    }
    .choose-plan-feature-item i {
      width: 1rem;
      color: #3d35f5;
      font-size: 0.75rem;
    }
    .choose-plan-feature-bold {
      font-weight: 700;
      color: #0f172a;
    }

    .choose-plan-guarantee {
      font-size: 0.7rem;
      font-weight: 600;
      background: #fef3c7;
      padding: 0.5rem 0.7rem;
      border-radius: 0.75rem;
      margin-top: 0.8rem;
      color: #92400e;
      border-left: 3px solid #f59e0b;
      line-height: 1.4;
    }

    .choose-plan-footer-note {
      text-align: center;
      background: white;
      padding: 1rem 1.2rem;
      border-radius: 10px;
      max-width: 680px;
      margin: 0 auto;
      font-size: 0.8rem;
      font-weight: 500;
      border: 1px solid #e2e8f0;
      color: #334155;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }
    .choose-plan-footer-note i {
      color: #3d35f5;
      margin-right: 5px;
    }

    @media (max-width: 1100px) {
      .choose-plan-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
      }
    }
    @media (max-width: 640px) {
      .choose-plan-cards-grid {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
      .choose-plan-pricing-container {
    padding: 4rem 1.5rem;
}
.choose-plan-pricing-header h2 {
    font-size: 35px;
}
    }
 .choose-plan-custom-section {
    max-width: 550px;
   padding: 2rem 0rem;
	margin: 0 auto;
  }

  .choose-plan-custom-card {
    background: linear-gradient(
14deg, #3D35F5, #7c72ff);
    border-radius: 1.5rem;
    padding: 2rem 1.8rem;
    text-align: center;
    transition: all 0.2s ease;
	 box-shadow: 0 20px 35px -10px rgba(61, 53, 245, 0.5), 0 0 20px rgba(61, 53, 245, 0.3);
  }

  .choose-plan-custom-card:hover {
    transform: translateY(-4px);
  }

  .choose-plan-custom-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    color: black;
    width: fit-content;
    margin: 0 auto 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .choose-plan-custom-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
  }

  .choose-plan-custom-subtitle {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    margin-bottom: 1.2rem;
  }

  .choose-plan-custom-button {
    background: white;
    border: 1.5px solid #3d35f5;
    color: black;
    font-weight: 700;
    padding: 0.75rem 5rem;
    border-radius: 2rem;
    text-align: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0.5rem 0 1rem;
  }

  .choose-plan-custom-button:hover {
background: #f9fafb;
    color: #534bf8;
    transform: scale(0.98);
  }

  .choose-plan-custom-features {
    text-align: left;
    margin-top: 2rem;
    display: flex;
    gap: 15px;
    justify-content: center;
  }

  .choose-plan-custom-feature-item {
	display: flex;
    align-items: center;
    gap: 5px;
    font-size: .85rem;
    font-weight: 500;
    color: white;
    margin-bottom: .7rem;
    justify-content: center;
  }

  .choose-plan-custom-feature-item i {
    color: white;
    font-size: 15px;
  }

  @media (max-width: 640px) {
    .choose-plan-custom-section {
      max-width: 100%;
      margin: 1.5rem 0 0;
    }
  }
  @media (max-width: 768px) {
  .choose-plan-custom-button {
padding: .75rem 3rem;
  }
.choose-plan-custom-features {
    flex-direction: column;
}
  }
.privacy-main {
    margin-top: 75px;
    background-color: #F4F5F7;
}
.privacy-sec {
    width: 1280px;
    margin: 0 auto;
    padding: 50px 0px;
}
.privacy-main p {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    color: #334155;
}
.policy-title {
    font-size: 50px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
}
    @media (max-width: 768px) {
.privacy-sec {
    width: 100%;
    margin: unset;
    padding: 50px 20px;
}
}



/* ── Animations start ── */

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

.stat-card {
  opacity: 0;
  transform: translateX(60px);
}
.stat-card.animate:nth-child(1) { animation: fadeLeft 0.6s ease 0.0s  forwards; }
.stat-card.animate:nth-child(2) { animation: fadeLeft 0.6s ease 0.15s forwards; }
.stat-card.animate:nth-child(3) { animation: fadeLeft 0.6s ease 0.3s  forwards; }
.stat-card.animate:nth-child(4) { animation: fadeLeft 0.6s ease 0.45s forwards; }

.service-card {
  opacity: 0;
  transform: translateY(40px);
}
.service-card.animate:nth-child(1) { animation: fadeUp 0.6s ease 0.0s  forwards; }
.service-card.animate:nth-child(2) { animation: fadeUp 0.6s ease 0.15s forwards; }
.service-card.animate:nth-child(3) { animation: fadeUp 0.6s ease 0.3s  forwards; }
.service-card.animate:nth-child(4) { animation: fadeUp 0.6s ease 0.45s forwards; }
.service-card.animate:nth-child(5) { animation: fadeUp 0.6s ease 0.6s  forwards; }
.service-card.animate:nth-child(6) { animation: fadeUp 0.6s ease 0.75s forwards; }

.why-gf-card {
  opacity: 0;
  transform: translateX(-60px);
}
.why-gf-card.animate:nth-child(1) { animation: fadeRight 0.6s ease 0.0s  forwards; }
.why-gf-card.animate:nth-child(2) { animation: fadeRight 0.6s ease 0.15s forwards; }
.why-gf-card.animate:nth-child(3) { animation: fadeRight 0.6s ease 0.3s  forwards; }

.about-text-column {
  opacity: 0;
  transform: translateX(60px);
}
.about-text-column.animate {
  animation: fadeLeft 0.8s ease 0.0s forwards;
}
.about-stats {
  opacity: 0;
  transform: translateX(-60px);
}
.about-stats.animate {
  animation: fadeRight 0.8s ease 0.2s forwards;
}

.ai-agent-card {
  opacity: 0;
  transform: translateX(60px);
}
.ai-agent-card.animate:nth-child(1) { animation: fadeLeft 0.6s ease 0.0s  forwards; }
.ai-agent-card.animate:nth-child(2) { animation: fadeLeft 0.6s ease 0.15s forwards; }
.ai-agent-card.animate:nth-child(3) { animation: fadeLeft 0.6s ease 0.3s  forwards; }
.ai-agent-card.animate:nth-child(4) { animation: fadeLeft 0.6s ease 0.45s forwards; }

.gf-stats-bar { overflow-x: hidden; }
body          { overflow-x: hidden; }

@media (max-width: 768px) {
  @keyframes fadeLeft  { from { opacity: 0; transform: translateX(20px);  } to { opacity: 1; transform: translateX(0); } }
  @keyframes fadeRight { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
  .stat-card         { transform: translateX(20px);  }
  .service-card      { transform: translateY(20px);  }
  .why-gf-card       { transform: translateX(-20px); }
  .about-text-column { transform: translateX(20px);  }
  .about-stats       { transform: translateX(-20px); }
  .ai-agent-card     { transform: translateX(20px);  }
}
.choose-plan-pricing-card {
  opacity: 0;
  transform: translateY(40px);
}
.choose-plan-pricing-card.animate:nth-child(1) { animation: fadeUp 0.6s ease 0.0s  forwards; }
.choose-plan-pricing-card.animate:nth-child(2) { animation: fadeUp 0.6s ease 0.15s forwards; }
.choose-plan-pricing-card.animate:nth-child(3) { animation: fadeUp 0.6s ease 0.3s  forwards; }
.choose-plan-pricing-card.animate:nth-child(4) { animation: fadeUp 0.6s ease 0.45s forwards; }

@media (max-width: 768px) {
  .choose-plan-pricing-card { transform: translateY(20px); }
}
/* ── Animations end ── */

/* ============================================ */
/* EXTENSION STYLES: DIY KIT & AUDIT TOOL
/* ============================================ */

.gf-new-section, .gf-new-page {
  font-family: 'Inter', sans-serif;
  color: #0A1628;
}

.gf-heading, .gf-heading-main, .card-title, .tier-name {
  font-family: 'Inter', sans-serif;
  color: #0A1628;
}

.gf-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F59E0B;
  margin-bottom: 1rem;
}

.gf-heading {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    color: #0a0a0f;
    margin-bottom: 1rem;
}
.gf-heading span {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.gf-heading-main {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gf-subheading {
  font-size: 1.2rem;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.gf-desc {
  font-size: 20px;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.gf-btn {
  padding: 16px 32px;
    background: linear-gradient(135deg, #3D35F5, #7c72ff);
    color: #ffffff;
    border-radius: 0.75rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 28px rgba(61, 53, 245, 0.45);
	margin-top: 10px;
}
.gf-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.gf-btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #F59E0B;
  color: #0A1628;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  text-decoration: none;
}
.gf-btn-large:hover {
  background: #d97706;
  transform: translateY(-2px);
}

.gf-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #0A1628;
  border: 2px solid #0A1628;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
}
.gf-btn-outline:hover {
  background: #0A1628;
  color: #fff;
}

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

.gf-section {
  padding: 5rem 0;
  background: #fff;
}

.gf-section-alt {
  padding: 5rem 0;
  background: #F9FAFB;
}

.gf-section-navy {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0A1628 0%, #16264A 100%);
  color: #fff;
}
.gf-section-navy .gf-heading, .gf-section-navy .gf-heading-main, .gf-section-navy .gf-subheading, .gf-section-navy .gf-desc {
  color: #fff;
}

.diy-kit-section {
  background: #FFFFFF;
  padding: 4rem 1.5rem;
}
.diy-kit-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
	grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 4rem;
}
.diy-kit-content, .diy-kit-visual {
  flex: 1;
}
.diy-kit-bullets {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}
.diy-kit-bullets li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}
.diy-kit-bullets i {
  color: #3B82F6;
  font-size: 1.2rem;
}
.placeholder-mockup {
   height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #9ca3af;
  font-weight: 600;
}
img.diy-kit-img,
img.audit-tool-img {
  width: 405px;
  height: 400px;
  border-radius: 28px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.audit-tool-section {
  background: linear-gradient(135deg, #0A1628 0%, #16264A 100%);
  padding: 4rem 1.5rem;
  color: #fff;
}
.audit-tool-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 4rem;
}
.audit-tool-content, .audit-tool-visual {
  flex: 1;
}
.audit-tool-heading, .audit-tool-desc {
  color: #fff;
}
.audit-tool-bullets {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}
.audit-tool-bullets li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}
.audit-tool-bullets i {
  color: #F59E0B;
  font-size: 1.2rem;
}
.audit-score {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  color: #3B82F6;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
	.audit-tool-container {
    display: grid;
    grid-template-columns: 1fr;
}
.diy-kit-container {
    grid-template-columns: 1fr;
}
.gf-heading {
    font-size: 35px;
}
	img.diy-kit-img {
    width: 100%;
}
img.audit-tool-img {
    width: 100%;
}
}