/* ========== Base Styles ========== */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #ec4899;
  --accent: #0ea5e9;
  --dark: #111827;
  --gray-dark: #4b5563;
  --gray-medium: #9ca3af;
  --gray-light: #e5e7eb;
  --light: #f9fafb;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --white: #ffffff;
  --black: #030712;
  --bg-dark: #0f172a;
  --transition: all 0.3s ease;
  --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-inset: inset 0 2px 5px rgba(0, 0, 0, 0.08);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --header-height: 80px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--white);
  position: relative;
  min-height: 100vh;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  border: none;
  background-color: transparent;
  outline: none;
}

/* ========== Layout & Containers ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

section {
  position: relative;
  overflow: hidden;
}

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

.bg-dark {
  background-color: var(--bg-dark);
  color: var(--white);
}

.bg-gradient {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
  color: var(--white);
}

.bg-gradient-alt {
  background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
  color: var(--white);
}

/* ========== Utilities ========== */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

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

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

.mb-5 {
  margin-bottom: 3rem;
}

.full-width {
  width: 100%;
}

.hidden {
  display: none !important;
}

.visible {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ========== Noise Overlay ========== */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* ========== Header & Navigation ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 70px;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: block;
  height: 60px;
}

.logo img {
  height: 100%;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: var(--gray-dark);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  font-size: 0.95rem;
}

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

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

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--dark);
  transition: var(--transition);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  gap: 0.5rem;
  line-height: 1.4;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 2px solid var(--gray-light);
  color: var(--dark);
  background-color: transparent;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.animated-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.animated-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: width 0.5s ease;
  z-index: -1;
}

.animated-btn:hover::before {
  width: 100%;
}

.animated-btn-alt {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.animated-btn-alt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transition: height 0.5s ease;
  z-index: -1;
}

.animated-btn-alt:hover::after {
  height: 100%;
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 1rem);
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: var(--light);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

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

/* Adjust scroll indicator position */
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  transition: var(--transition);
  cursor: pointer;
}

/* Make scroll indicator text smaller and more compact */
.scroll-indicator p {
  font-size: 0.75rem;
  margin-top: 0.3rem;
  margin-bottom: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: var(--gray-dark);
}

.hero-description {
  font-size: 1.3rem;
  max-width: 650px;
  margin-bottom: 2.5rem;
  color: var(--gray-dark);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--primary);
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.glowing-text {
  text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.trusted-by {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.trusted-by p {
  color: var(--gray-medium);
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Client logo styles */
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  opacity: 1;
}

.client-logo img {
  max-height: 100%;
  width: auto;
}

.fitness-logo {
  max-height: 30px;
  background-color: transparent;
}


.logo-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.placeholder-logo {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  padding: 0 15px;
  font-size: 0.8rem;
  color: var(--gray-medium);
  display: flex;
  align-items: center;
  justify-content: center;
}

.latest-project {
  display: flex;
  align-items: center;
  margin-top: 1.2rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

.latest-project p {
  margin-bottom: 0;
  line-height: 1.4;
}

.latest-project-dot {
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--success);
  border-radius: 50%;
  margin-right: 0.75rem;
  position: relative;
  flex-shrink: 0;
}

/* Pulsing animation for the dot */
.latest-project-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 16px;
  height: 16px;
  background-color: rgba(16, 185, 129, 0.4);
  border-radius: 50%;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: 1;
}

.latest-project strong {
  color: var(--dark);
  font-weight: 600;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ========== Tagline Section ========== */
.tagline-section {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  background-color: var(--white);
}

.tagline-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.tagline-section h2 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  font-family: 'Outfit', sans-serif; 
  letter-spacing: -0.01em;
}

.tagline-subtitle {
  font-size: 2rem;
  color: var(--dark);
  margin-top: 2rem;
  font-weight: 600;
}

.tagline-wrapper::after {
  content: "✦";
  position: absolute;
  top: -20px;
  right: 0;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.8;
}

/* ========== Section Headers ========== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray-medium);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.section-header.light {
  color: var(--white);
}

.section-header.light .section-tag {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section-header.light .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ========== Work Section ========== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.work-item {
  border-radius: var(--border-radius);
  background-color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.work-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.work-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--gray-light);
}

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

.work-item:hover .project-img {
  transform: scale(1.05);
}

.placeholder-image {
  background-color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-medium);
  font-size: 0.9rem;
  font-weight: 500;
  height: 100%;
}

.work-item h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.work-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-medium);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}


/* ========== Numbers Section ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.stat-suffix {
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* ========== Benefits Section ========== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.benefit-item {
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.benefit-item:hover::before {
  opacity: 1;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.benefit-item h3 {
  margin-bottom: 1rem;
}

.benefit-item p {
  color: var(--gray-medium);
  margin-bottom: 0;
}

/* ========== Process Section ========== */
.process-steps {
  position: relative;
  padding: 2rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background-color: rgba(99, 102, 241, 0.1);
  z-index: -1;
}

.process-step {
  display: flex;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 2rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.step-content {
  flex: 1;
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: calc(50% - 5rem);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--gray-medium);
  margin-bottom: 0;
}

.process-step.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Testimonials Section ========== */
.testimonial-slider {
  position: relative;
  margin-bottom: 2rem;
}

.testimonial {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.quote-mark {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}



.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
}

.author-initial {
    color: white;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.testimonial:nth-child(2) .author-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.testimonial:nth-child(3) .author-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.placeholder-avatar {
  background-color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-medium);
  font-size: 0.8rem;
  font-weight: 500;
}

.author-details h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.author-details p {
  margin-bottom: 0.5rem;
  color: var(--gray-medium);
  font-size: 0.9rem;
}

.rating {
  color: #ffc107;
  font-size: 0.9rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-light);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: var(--shadow);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}



.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-strong);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--white);
  transition: var(--transition);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 500;
  padding-right: 1.5rem;
}

.faq-item.active .faq-question {
  background-color: rgba(99, 102, 241, 0.05);
}

.toggle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .toggle-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotate(135deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: height 0.3s ease;
}

.faq-item.active .faq-answer {
  height: auto;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--gray-medium);
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

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

.featured-tag {
  position: absolute;
  top: 0.5rem;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 0.8rem;
  transform: translateX(2px);
  border-radius: 4px 0 0 4px;
  box-shadow: -3px 3px 10px rgba(99, 102, 241, 0.3);
}

.featured-tag::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -8px;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent var(--primary-dark) transparent transparent;
}

.card-header {
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
}

.price {
  margin: 2rem 0;
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  display: block;
  line-height: 1;
}

.period {
  display: block;
  color: var(--gray-medium);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.timeframe {
  display: inline-block;
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-body {
  padding: 2rem;
}

.features-list {
  margin-bottom: 0;
}

.features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.features-list li:last-child {
  margin-bottom: 0;
}

.features-list i {
  color: var(--success);
  margin-right: 0.8rem;
  font-size: 1.1rem;
}

.card-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

.custom-solutions {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: rgba(99, 102, 241, 0.05);
  border-radius: var(--border-radius);
  clear: both;
}

.custom-solutions h3 {
  margin-bottom: 1rem;
}

.custom-solutions p {
  margin-bottom: 1.5rem;
  color: var(--gray-medium);
}

.pricing-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card.featured.revealed {
  transform: scale(1.05);
}

/* ========== Motivation Section ========== */
.motivation-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 4rem 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
}

.lightbulb-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--warning);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.motivation-title {
  margin-bottom: 1.5rem;
}

.motivation-closing {
  font-size: 1.2rem;
  margin: 2rem 0;
}

.motivation-cta {
  margin-top: 2rem;
}

.pulse-btn {
  animation: pulse 2s infinite;
}




@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(99, 102, 241, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}




/* ========== Footer Section ========== */
.footer {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 150px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--gray-medium);
  margin-bottom: 0;
  font-size: 1.1rem;
}
.footer-instagram {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-instagram i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-links a {
  color: var(--gray-light);
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-medium);
  margin-bottom: 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-links {
    gap: 1.5rem;
    flex-direction: column;
  }
}

/* ========== Animations ========== */
.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

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


/* ========== Media Queries ========== */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  
  .tagline-section h2 {
    font-size: 2.8rem;
  }
  
  .tagline-subtitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 5rem 0;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .process-steps {
    padding: 0;
  }
  
  .process-step {
    flex-direction: column;
    margin-bottom: 2rem;
  }
  
  .process-step:nth-child(even) {
    flex-direction: column;
  }
  
  .step-number {
    margin: 0 0 1rem 0;
  }
  
  .step-content {
    max-width: 100%;
  }
  
  .process-line {
    display: none;
  }
  
  .testimonial {
    padding: 1.5rem;
  }
  
  .tagline-section h2 {
    font-size: 2.5rem;
  }
  
  .tagline-subtitle {
    font-size: 1.6rem;
  }

  .pricing-faq-container {
    flex-direction: row;
  }
  
  .faq-list, 
  .pricing-cards {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .pricing-card {
    width: 100%;
    max-width: 450px;
  }
  
  .faq-list {
    margin-bottom: 3rem;
    order: 2; 
  }
  
  .pricing-cards {
    order: 1; 
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch !important;
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .pricing-card.featured {
    transform: scale(1.02);
  }
  
  .pricing-card.featured.revealed {
    transform: scale(1.02);
  }
  
  .pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-links {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  body.mobile-menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background-color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideDown 0.3s forwards;
  }
  
  body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .tagline-section {
    padding: 4rem 0;
  }
  
  .tagline-section h2 {
    font-size: 2.2rem;
  }
  
  .tagline-subtitle {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
  
  .tagline-wrapper::after {
    font-size: 2.5rem;
    top: -15px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured.revealed {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .benefits-grid, 
  .work-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .motivation-content {
    padding: 3rem 1.5rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: -1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero {
    min-height: 55vh;
    padding-bottom: 0.5rem;
  }
  
  .trusted-by {
    margin-top: 1rem;
    margin-bottom: 0.25rem;
  }
  
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
  }
  
  .client-logo {
    margin: 0;
    height: 150px;
  }
  
  .mouse {
    width: 22px;
    height: 34px;
  }
  .work-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .work-image {
    height: 180px;
  }
  
  .work-item h3 {
    padding: 1.2rem 1.2rem 0.5rem;
    font-size: 1.3rem;
  }
  
  .work-item p {
    padding: 0 1.2rem 1.2rem;
  }

  .footer-instagram{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer-instagram a {
     align-items: flex-start;
    justify-content: flex-start;
  }

  
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .tagline-section {
    padding: 3rem 0;
  }
  
  .tagline-section h2 {
    font-size: 1.8rem;
  }
  
  .tagline-subtitle {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
  
  .tagline-wrapper::after {
    font-size: 2rem;
    top: -10px;
    right: 10px;
  }
  
  .logo-grid {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .client-logo {
    height: 30px;
  }

  .client-logo img {
    max-height: 41px;
    width: auto;
  }
  
  .placeholder-logo {
    width: auto;
    min-width: 80px;
    height: 30px;
  }
  
  .hero {
    background-position: 70% center;
  }
  
  .hero::before {
    background: rgba(249, 250, 251, 0.9);
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  
  .work-image {
    height: 200px;
  }
}

@media (max-height: 700px) {
  .hero {
    min-height: 75vh;
    padding-top: var(--header-height);
  }
  
  .scroll-indicator {
    bottom: 0.5rem;
  }
}

@media (min-width: 1025px) {
  .cursor-follower {
    display: block;
  }
}

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

.floating-button {
  position: fixed;
  top: 93%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999; 
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 20px 30px; 
  border-radius: 50px;
  font-weight: 700; 
  font-size: 1.2rem; 
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
  transition: all 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.25); 
  backdrop-filter: blur(5px);
  animation: pulse-float 2s infinite, float 6s ease-in-out infinite;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
  color: white;
}

.float-btn i {
  font-size: 1.4rem; 
}


/* Animations for the floating button */
@keyframes pulse-float {
  0% {
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  }
  50% {
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6);
  }
  100% {
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  .float-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .float-btn-text {
    display: inline;
  }
  
  .float-btn i {
    font-size: 1.3rem;
  }
}