* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #0066ff;
  --dark-bg: #0a0a0a;
  --light-text: #f5f5f5;
  --gray-text: #a0a0a0;
  --accent-gradient: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background: var(--dark-bg);
  overflow-x: hidden;
}

/*NAVIGATION */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 4%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.3s ease;
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--gray-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link.audit-link {
  color: var(--primary-blue);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

.nav-link.audit-link:hover {
  color: #00d4ff;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gradient);
}

.nav-cta {
  background: var(--accent-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 4% 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-50px, -50px) scale(1.1);
  }
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  font-size: 0.9rem;
  color: var(--primary-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -3px;
}

.hero h1 .gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--gray-text);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1rem;
}

.cta-primary {
  background: var(--accent-gradient);
  color: white;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
}

.cta-secondary {
  background: transparent;
  color: var(--light-text);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
  border-color: var(--primary-blue);
  background: rgba(0, 102, 255, 0.1);
}

.hero-visual {
  position: relative;
  height: 450px;
}

.visual-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.visual-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--primary-blue);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.3);
}

.visual-card:nth-child(1) {
  top: 20px;
  left: 20px;
  width: 260px;
  animation: float 7s ease-in-out infinite;
}

.visual-card:nth-child(2) {
  top: 120px;
  right: 40px;
  width: 270px;
  animation: float 7s ease-in-out infinite 2.3s;
}

.visual-card:nth-child(3) {
  top: 250px;
  left: 50px;
  width: 255px;
  animation: float 7s ease-in-out infinite 4.6s;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.card-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card-value {
  color: #00d4ff;
  font-weight: 700;
  font-size: 1.3rem;
}

/* £97 AUDIT SECTION */
.audit-section {
  background: rgba(0, 102, 255, 0.15);
  border-top: 1px solid rgba(0, 102, 255, 0.3);
  border-bottom: 1px solid rgba(0, 102, 255, 0.3);
  padding: 4rem 4%;
  position: relative;
  overflow: hidden;
}

.audit-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.audit-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.audit-badge {
  display: inline-block;
  background: rgba(0, 255, 136, 0.15);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.audit-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.audit-subtitle {
  font-size: 1.4rem;
  color: var(--light-text);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.audit-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.audit-feature {
  text-align: center;
}

.audit-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.audit-feature p {
  color: var(--light-text);
  font-weight: 600;
  font-size: 1.1rem;
}

.audit-cta {
  display: inline-block;
  background: var(--accent-gradient);
  color: white;
  padding: 1.5rem 3.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.3rem;
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

.audit-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.6);
}

.audit-guarantee {
  margin-top: 1.5rem;
  color: #00ff88;
  font-size: 1rem;
  font-weight: 600;
}

/* PAIN-SOLUTION SECTION */
/* ============================================
   PAIN-SOLUTION SECTION - ENHANCED
   ============================================ */

.pain-section {
  padding: 8rem 4%;
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(0, 5, 20, 1) 0%,
    rgba(10, 5, 25, 1) 50%,
    rgba(0, 5, 20, 1) 100%
  );
  overflow: hidden;
}

/* Animated background elements */
.pain-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 68, 68, 0.15) 0%,
    transparent 70%
  );
  animation: pulseRed 8s ease-in-out infinite;
  filter: blur(60px);
}

.pain-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 136, 0.12) 0%,
    transparent 70%
  );
  animation: pulseGreen 10s ease-in-out infinite;
  filter: blur(60px);
}

@keyframes pulseRed {
  0%, 100% { 
    transform: scale(1) translate(0, 0); 
    opacity: 0.5; 
  }
  50% { 
    transform: scale(1.2) translate(20px, -20px); 
    opacity: 0.8; 
  }
}

@keyframes pulseGreen {
  0%, 100% { 
    transform: scale(1) translate(0, 0); 
    opacity: 0.4; 
  }
  50% { 
    transform: scale(1.3) translate(-30px, 30px); 
    opacity: 0.7; 
  }
}

/* Section header with dramatic styling */
.section-header {
  max-width: 900px;
  margin: 0 auto 6rem;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.15));
  border: 1px solid rgba(0, 102, 255, 0.4);
  color: #00d4ff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { 
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3); 
  }
  50% { 
    box-shadow: 0 4px 25px rgba(0, 102, 255, 0.5); 
  }
}

.section-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}

.section-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* Grid with staggered appearance */
.pain-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

/* Card with dramatic problem → solution transformation */
.pain-card {
  background: linear-gradient(
    135deg,
    rgba(20, 15, 25, 0.8) 0%,
    rgba(10, 10, 20, 0.9) 100%
  );
  border: 2px solid rgba(255, 68, 68, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: cardFadeIn 0.8s ease forwards;
  opacity: 0;
}

/* Staggered entrance */
.pain-card:nth-child(1) { animation-delay: 0.2s; }
.pain-card:nth-child(2) { animation-delay: 0.4s; }
.pain-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Top gradient line - changes from red to green on hover */
.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff4444 0%, #ff6666 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.5s ease;
}

.pain-card:hover::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, #00ff88 0%, #00d4ff 100%);
}

/* Hover state - transforms from problem to solution feel */
.pain-card:hover {
  transform: translateY(-15px) scale(1.03);
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.15) 0%,
    rgba(0, 255, 136, 0.08) 100%
  );
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2),
              0 0 80px rgba(0, 255, 136, 0.1);
}

/* Icon with dramatic float + pulse */
.pain-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  position: relative;
  animation: iconFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(255, 68, 68, 0.3));
  transition: filter 0.5s ease;
}

.pain-card:hover .pain-icon-wrapper {
  filter: drop-shadow(0 8px 25px rgba(0, 255, 136, 0.5));
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(5deg);
  }
}

.pain-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pain-card:hover .pain-icon-img {
  transform: scale(1.15) rotate(-5deg);
  filter: brightness(1.3) contrast(1.2) saturate(1.3);
}

/* Problem title - strikethrough with shake on hover */
.pain-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #ff4444;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(255, 68, 68, 0.6);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.pain-card:hover .pain-title {
  color: #ff6666;
  text-decoration-color: rgba(255, 68, 68, 0.3);
  animation: titleShake 0.5s ease;
}

@keyframes titleShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Pain stat with pulse */
.pain-stat {
  color: #ff6666;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 68, 68, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 68, 68, 0.2);
  animation: statPulse 2s ease-in-out infinite;
}

@keyframes statPulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.2);
  }
  50% { 
    transform: scale(1.05); 
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.4);
  }
}

.pain-card:hover .pain-stat {
  opacity: 0.5;
  animation: none;
}

/* Arrow with animated transform */
.solution-arrow {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin: 1.5rem 0;
  display: block;
  text-align: center;
  animation: arrowBounce 2s ease-in-out infinite;
  transition: all 0.5s ease;
  filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.5));
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.pain-card:hover .solution-arrow {
  color: #00ff88;
  transform: scale(1.3) rotate(180deg);
  filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
  animation: none;
}

/* Solution title - glows on hover */
.solution-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #00ff88;
  text-align: center;
  transition: all 0.4s ease;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
  position: relative;
}

.pain-card:hover .solution-title {
  transform: scale(1.05);
  text-shadow: 0 0 25px rgba(0, 255, 136, 0.6),
               0 0 40px rgba(0, 255, 136, 0.4);
  letter-spacing: 0.5px;
}

/* Solution text - becomes more prominent on hover */
.solution-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  text-align: center;
  font-size: 1rem;
  transition: all 0.4s ease;
}

.pain-card:hover .solution-text {
  color: rgba(255, 255, 255, 0.95);
  transform: scale(1.02);
}

/* Add "before/after" labels that appear on hover */
.pain-card::after {
  content: "FIXED ✓";
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  color: #000;
  font-weight: 900;
  font-size: 0.7rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  letter-spacing: 1px;
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.5);
}

.pain-card:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .pain-card {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .pain-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .pain-title {
    font-size: 1.3rem;
  }

  .solution-title {
    font-size: 1.4rem;
  }
}
/* PROOF OF WORK SECTION */
.proof-section {
  padding: 8rem 4%;
  background: linear-gradient(135deg, rgba(0,102,255,0.03), rgba(255,255,255,0.05));
}

.proof-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.proof-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.proof-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(0,102,255,0.4);
  box-shadow: 0 20px 50px rgba(0,102,255,0.25);
}

.proof-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.proof-image img,
.proof-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  display: block;
}

.proof-card:hover .proof-image img,
.proof-card:hover .proof-image video {
  transform: scale(1.1);
  filter: brightness(1.05) contrast(1.1);
}

/* Add subtle overlay for videos/images */
.proof-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25), rgba(0,0,0,0));
  pointer-events: none;
}

.proof-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.proof-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,102,255,0.3), rgba(0,102,255,0.15));
  border: 1px solid rgba(0, 102, 255, 0.3);
  color: var(--primary-blue);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  backdrop-filter: blur(5px);
}

.proof-title {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #0066ff, #00e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.proof-description {
  color: rgba(200,200,200,0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.proof-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.proof-metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0066ff, #00e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 0.85rem;
  color: rgba(200,200,200,0.8);
}


.proof-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.proof-link:hover {
  gap: 1rem;
}
.placeholder-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,102,255,0.15), rgba(0,102,255,0.05));
    color: #0066ff;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.placeholder-text {
    font-size: 1rem;
    opacity: 0.85;
}


/* DELIVERY PROCESS SECTION */
.process-section {
  padding: 8rem 4%;
  background: linear-gradient(180deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.01) 100%);
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 70px;
  width: 2px;
  height: calc(100% + 2rem);
  background: linear-gradient(180deg, var(--primary-blue) 0%, transparent 100%);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.step-deliverables {
  background: rgba(0, 102, 255, 0.05);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
}

.step-deliverables strong {
  color: var(--primary-blue);
  display: block;
  margin-bottom: 0.75rem;
}

.step-deliverables ul {
  list-style: none;
  padding-left: 0;
}

.step-deliverables li {
  padding: 0.4rem 0;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-deliverables li::before {
  content: "✓";
  color: #00ff88;
  font-weight: bold;
  font-size: 1.1rem;
}

.process-guarantee {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
}

.process-guarantee h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #00ff88;
}

.process-guarantee p {
  color: var(--light-text);
  line-height: 1.7;
}

/* FOUNDER CREDIBILITY SECTION */
.founder-section {
  padding: 8rem 4%;
  background: rgba(0, 102, 255, 0.02);
}

.founder-content {
  max-width: 1200px;
  margin: 0 auto;
}

.founder-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.founder-text {
  font-size: 1.2rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.founder-skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.skill-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.skill-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-blue);
  background: rgba(0, 102, 255, 0.05);
}

.skill-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.skill-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.3);
}

.skill-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.skill-list {
  color: var(--gray-text);
  line-height: 1.8;
}

.founder-tools {
  margin-bottom: 4rem;
}

.tools-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.tool-tag {
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.3);
  color: var(--light-text);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.tool-tag:hover {
  background: rgba(0, 102, 255, 0.2);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.founder-positioning {
  max-width: 900px;
  margin: 0 auto;
}

.positioning-card {
  background: rgba(0, 102, 255, 0.08);
  border: 2px solid rgba(0, 102, 255, 0.3);
  border-radius: 16px;
  padding: 3rem;
}

.positioning-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.positioning-card p {
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.positioning-card strong {
  color: var(--light-text);
}

/* TRUST SIGNALS SECTION */
.trust-signals-section {
  padding: 8rem 4%;
  background: linear-gradient(180deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 102, 255, 0.01) 100%);
}

.trust-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-blue);
  background: rgba(0, 102, 255, 0.05);
}

.trust-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.trust-list {
  list-style: none;
  padding: 0;
}

.trust-list li {
  padding: 0.75rem 0;
  color: var(--gray-text);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.trust-list li::before {
  content: "→";
  color: var(--primary-blue);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* AUTHORITY / EDUCATIONAL SECTION */
.authority-section {
  padding: 8rem 4%;
  background: rgba(0, 102, 255, 0.03);
  border-top: 1px solid rgba(0, 102, 255, 0.1);
  border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.authority-grid {
  max-width: 1400px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.authority-card {
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(0, 102, 255, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.authority-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.authority-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}

.authority-card:hover::before {
  opacity: 0.05;
}

.authority-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.authority-stat {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
  position: relative;
  z-index: 1;
}

.authority-text {
  color: var(--light-text);
  line-height: 1.6;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.educational-content {
  max-width: 1400px;
  margin: 0 auto;
}

.educational-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
}

.educational-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.educational-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.educational-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-blue);
  background: rgba(0, 102, 255, 0.05);
}

.educational-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.educational-card p {
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.educational-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.educational-link:hover {
  gap: 1rem;
}

/* SERVICES SECTION (WEBSITES PRIMARY) */
.services-section {
  padding: 8rem 4%;
  background: linear-gradient(
    180deg,
    rgba(0, 10, 30, 1) 0%,
    rgba(0, 5, 20, 1) 100%
  );
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.12) 0%,
    transparent 70%
  );
  animation: pulse 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.1); }
}

/* ---------------- Grid ---------------- */

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

/* ---------------- Card ---------------- */

.service-card {
  position: relative;
  padding: 3rem;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(10, 20, 40, 0.96),
    rgba(5, 10, 25, 0.98)
  );
  border: 1px solid rgba(0, 102, 255, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    #0066ff,
    #00d4ff,
    #00ff88
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(0, 102, 255, 0.35);
  border-color: rgba(0, 102, 255, 0.6);
}

.service-card:hover::after {
  opacity: 1;
}

/* ---------------- Featured Card ---------------- */

.service-card:nth-child(2) {
  transform: scale(1.05);
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.14),
    rgba(0, 102, 255, 0.06)
  );
  border: 2px solid rgba(0, 102, 255, 0.7);
  box-shadow: 0 20px 55px rgba(0, 102, 255, 0.4);
}

.service-card:nth-child(2):hover {
  transform: translateY(-12px) scale(1.07);
}

/* ---------------- Icon ---------------- */

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0066ff, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  margin-bottom: 2rem;
  box-shadow: 0 12px 28px rgba(0, 102, 255, 0.45);
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------------- Text ---------------- */

.service-title {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffffff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-price {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.25rem;
  background: linear-gradient(
    135deg,
    #00ff88,
    #00d4ff,
    #0066ff
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.service-price::after {
  content: "one-time";
  position: absolute;
  bottom: -10px;
  right: -8px;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.15);
  color: #00ff88;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
}

/* ---------------- Features ---------------- */

.service-features {
  list-style: none;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  background: rgba(0, 102, 255, 0.05);
  border: 1px solid rgba(0, 102, 255, 0.18);
  border-radius: 14px;
}

.service-features li {
  display: flex;
  gap: 0.9rem;
  padding: 0.7rem 0;
  font-size: 1.03rem;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-features li::before {
  content: "✓";
  color: #00ff88;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.service-features li:hover {
  color: #00d4ff;
  transform: translateX(4px);
}

/* ---------------- CTA ---------------- */

.service-cta {
  position: relative;
  width: 100%;
  padding: 1.4rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #0066ff, #00d4ff);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, #00ff88);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-cta span,
.service-cta::after {
  position: relative;
  z-index: 1;
}

.service-cta::after {
  content: "→";
  transition: transform 0.35s ease;
}

.service-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 102, 255, 0.6);
}

.service-cta:hover::before {
  opacity: 1;
}

.service-cta:hover::after {
  transform: translateX(5px);
}

/* ---------------- Note ---------------- */

.services-note {
  max-width: 1000px;
  margin: 5rem auto 0;
  padding: 3rem;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.14),
    rgba(0, 212, 255, 0.08)
  );
  border: 2px solid rgba(0, 102, 255, 0.35);
  box-shadow: 0 18px 55px rgba(0, 102, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.services-note::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transform: translateX(-100%);
  animation: shine 4s infinite;
}

@keyframes shine {
  100% { transform: translateX(100%); }
}

.services-note p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
}

.services-note strong {
  color: #00d4ff;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(2) {
    transform: none;
  }
}

/* UPSELLS SECTION (INDIVIDUAL GROWTH SERVICES) */
.upsells-section {
  padding: 8rem 4%;
  background: linear-gradient(180deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 102, 255, 0.01) 100%);
  position: relative;
}

.upsells-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.upsell-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: visible;
  padding-top: 1.5rem;
}

.upsell-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.upsell-card:hover::before {
  transform: scaleX(1);
}

.upsell-card:hover {
  transform: translateY(-10px);
  background: rgba(0, 102, 255, 0.08);
  border-color: var(--primary-blue);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.upsell-card.featured {
  border: 2px solid var(--primary-blue);
  box-shadow: 0 15px 50px rgba(0, 102, 255, 0.25);
  background: rgba(0, 102, 255, 0.05);
  padding-top: 3rem;
}

.upsell-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  color: white;
  padding: 0.6rem 1.8rem;
  border-radius: 25px;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 5px 20px rgba(0, 102, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.upsell-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.upsell-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--light-text);
}

.upsell-price {
  font-size: 2rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.upsell-setup {
  color: var(--gray-text);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.upsell-description {
  color: var(--gray-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.upsell-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.upsell-features li {
  padding: 0.5rem 0;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.upsell-features li::before {
  content: "✓";
  color: #00ff88;
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
}

.upsell-roi {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.upsell-roi strong {
  color: #00ff88;
}

.upsell-cta {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
  cursor: pointer;
  font-size: 0.95rem;
}

.upsell-cta:hover {
  gap: 1rem;
}

.upsell-note {
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 2rem;
  background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 12px;
  text-align: center;
}

.upsell-note h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.upsell-note p {
  color: var(--gray-text);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.upsell-note ul {
  text-align: left;
  max-width: 600px;
  margin: 1.5rem auto;
  list-style: none;
}

.upsell-note li {
  padding: 0.5rem 0;
  color: var(--light-text);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.upsell-note li::before {
  content: "→";
  color: var(--primary-blue);
  font-weight: bold;
  flex-shrink: 0;
}

/* PORTFOLIO SECTION (CASE STUDIES) */
/* ---------- Portfolio Section ---------- */
/* ============================================
   PORTFOLIO SECTION - ENHANCED
   ============================================ */

.portfolio-section {
  padding: 8rem 4%;
  background: linear-gradient(
    180deg,
    rgba(0, 5, 20, 1) 0%,
    rgba(0, 15, 35, 1) 50%,
    rgba(0, 5, 20, 1) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Multiple animated background elements */
.portfolio-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.15) 0%,
    rgba(0, 212, 255, 0.08) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatSlow 20s ease-in-out infinite;
  filter: blur(40px);
}

.portfolio-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 136, 0.12) 0%,
    rgba(0, 102, 255, 0.06) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatSlow 25s ease-in-out infinite reverse;
  filter: blur(40px);
}

@keyframes floatSlow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(40px, -40px) scale(1.15);
    opacity: 0.9;
  }
}

/* Grid with better spacing */
.portfolio-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

/* Card with premium glass effect */
.portfolio-card {
  background: linear-gradient(
    135deg,
    rgba(15, 25, 45, 0.6) 0%,
    rgba(5, 15, 30, 0.8) 100%
  );
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              0 2px 8px rgba(0, 102, 255, 0.1);
  animation: fadeInUp 0.7s ease forwards;
  opacity: 0;
}

/* Staggered entrance */
.portfolio-card:nth-child(1) { animation-delay: 0.1s; }
.portfolio-card:nth-child(2) { animation-delay: 0.2s; }
.portfolio-card:nth-child(3) { animation-delay: 0.3s; }
.portfolio-card:nth-child(4) { animation-delay: 0.4s; }
.portfolio-card:nth-child(5) { animation-delay: 0.5s; }
.portfolio-card:nth-child(6) { animation-delay: 0.6s; }
.portfolio-card:nth-child(7) { animation-delay: 0.7s; }
.portfolio-card:nth-child(8) { animation-delay: 0.8s; }
.portfolio-card:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Top accent line with gradient animation */
.portfolio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-blue) 25%,
    #00d4ff 50%,
    var(--primary-blue) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
  animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.portfolio-card:hover::before {
  transform: scaleX(1);
}

/* Hover effects with glow */
.portfolio-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(0, 102, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.25),
              0 8px 16px rgba(0, 0, 0, 0.4),
              0 0 60px rgba(0, 102, 255, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Image container with better aspect ratio */
.portfolio-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.12) 0%,
    rgba(0, 50, 120, 0.08) 100%
  );
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.5s ease;
  filter: brightness(0.9) contrast(1.1) saturate(1.1);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
  filter: brightness(1.05) contrast(1.15) saturate(1.2);
}

/* Gradient overlay with depth */
.portfolio-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.portfolio-card:hover .portfolio-image::after {
  opacity: 0.3;
}

/* Interactive overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.96) 0%,
    rgba(0, 212, 255, 0.92) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.95);
  backdrop-filter: blur(10px);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  transform: scale(1);
}

.portfolio-overlay-text {
  color: #fff;
  font-weight: 900;
  font-size: 1.3rem;
  text-align: center;
  padding: 0 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  animation: slideUpFade 0.5s ease forwards;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.portfolio-overlay-text::after {
  content: "→";
  font-size: 1.5rem;
  animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Content area with better spacing */
.portfolio-content {
  padding: 2rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 100%
  );
}

/* Title with underline animation */
.portfolio-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--light-text);
  letter-spacing: 0.3px;
  line-height: 1.3;
  transition: all 0.4s ease;
  position: relative;
}

.portfolio-card:hover .portfolio-title {
  color: #00d4ff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.portfolio-title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-blue) 0%,
    #00d4ff 50%,
    #00ff88 100%
  );
  margin-top: 8px;
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.4);
}

.portfolio-card:hover .portfolio-title::after {
  width: 60px;
}

/* Story blocks with better hierarchy */
.portfolio-story {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.story-block {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1) 0%,
    rgba(0, 102, 255, 0.04) 100%
  );
  border-left: 3px solid rgba(0, 102, 255, 0.5);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Sliding accent on hover */
.story-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(
    180deg,
    #00d4ff 0%,
    var(--primary-blue) 50%,
    #00ff88 100%
  );
  transition: height 0.4s ease;
}

.story-block:hover::before {
  height: 100%;
}

.story-block:hover {
  transform: translateX(6px);
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.15) 0%,
    rgba(0, 102, 255, 0.08) 100%
  );
  border-left-color: #00d4ff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.story-title {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.story-block:hover .story-title {
  color: #00d4ff;
}

.story-title::before {
  content: "▸";
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.story-block:hover .story-title::before {
  transform: translateX(3px);
}

.story-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.story-block:hover .story-text {
  color: rgba(255, 255, 255, 0.95);
}

/* Add subtle glow effect to cards on scroll */
@keyframes cardGlow {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 2px 8px rgba(0, 102, 255, 0.1);
  }
  50% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 2px 8px rgba(0, 102, 255, 0.2),
                0 0 40px rgba(0, 102, 255, 0.1);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .portfolio-section {
    padding: 6rem 3%;
  }
  
  .portfolio-grid {
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  
  .portfolio-card {
    border-radius: 20px;
  }
  
  .portfolio-image {
    height: 240px;
  }
  
  .portfolio-content {
    padding: 1.75rem;
  }
}

@media (max-width: 576px) {
  .portfolio-section {
    padding: 4rem 4%;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .portfolio-title {
    font-size: 1.4rem;
  }
  
  .portfolio-image {
    height: 220px;
  }
  
  .portfolio-content {
    padding: 1.5rem;
  }
  
  .story-block {
    padding: 0.875rem 1rem;
  }
  
  .portfolio-overlay-text {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
}


/* PRINCIPLES SECTION */
.principles-section {
  padding: 8rem 4%;
  background: rgba(0, 102, 255, 0.02);
}

.principles-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.principle-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
}

.principle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.principle-card:hover::before {
  transform: scaleX(1);
}

.principle-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  background: rgba(0, 102, 255, 0.05);
}

.principle-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.principle-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.principle-text {
  color: var(--gray-text);
  line-height: 1.7;
}

/* PRICING SECTION */
.pricing-section {
  padding: 8rem 4%;
  background: linear-gradient(180deg, rgba(0, 5, 20, 1) 0%, rgba(0, 20, 40, 1) 50%, rgba(0, 5, 20, 1) 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
  animation: pulseSlow 10s ease-in-out infinite;
}

@keyframes pulseSlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.7; }
}

.pricing-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(15, 25, 45, 0.9) 0%, rgba(5, 15, 30, 0.95) 100%);
  border: 2px solid rgba(0, 102, 255, 0.25);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 28px;
  padding: 4px;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 102, 255, 0.5) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.pricing-card:hover::before {
  opacity: 1;
  animation: borderFlow 2s linear infinite;
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.pricing-card.featured {
  border: 3px solid #00ff88;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.12) 0%, rgba(0, 102, 255, 0.08) 100%);
  transform: scale(1.08) translateY(-20px);
  box-shadow: 0 30px 80px rgba(0, 255, 136, 0.35), 0 0 100px rgba(0, 255, 136, 0.2);
  z-index: 10;
}

.pricing-card.featured::before {
  opacity: 1;
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 50%, #0066ff 100%);
  animation: borderFlow 2s linear infinite;
}

.pricing-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  color: #000;
  padding: 0.8rem 2.5rem;
  border-radius: 30px;
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  z-index: 20;
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.6);
  border: 3px solid rgba(255, 255, 255, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}

.pricing-card:hover {
  transform: translateY(-20px) scale(1.03);
  border-color: #00d4ff;
  box-shadow: 0 35px 80px rgba(0, 102, 255, 0.5), 0 0 120px rgba(0, 102, 255, 0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.12) translateY(-25px);
  box-shadow: 0 40px 100px rgba(0, 255, 136, 0.5), 0 0 150px rgba(0, 255, 136, 0.4);
}

.pricing-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.pricing-card.featured .pricing-title {
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0066ff 0%, #00d4ff 50%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1;
  text-shadow: 0 0 50px rgba(0, 102, 255, 0.5);
  position: relative;
  display: inline-block;
}

.pricing-card.featured .pricing-price {
  font-size: 5rem;
  animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8)); }
  50% { filter: drop-shadow(0 0 40px rgba(0, 255, 136, 1)); }
}

.pricing-subtitle {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(0, 102, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(0, 102, 255, 0.25);
}

.pricing-card.featured .pricing-features {
  background: rgba(0, 255, 136, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
}

.pricing-features li {
  padding: 0.85rem 0;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li:hover {
  color: #00d4ff;
  transform: translateX(8px);
}

.pricing-card.featured .pricing-features li:hover {
  color: #00ff88;
}

.pricing-features li::before {
  content: "✓";
  color: #00ff88;
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
  text-shadow: 0 0 15px rgba(0, 255, 136, 1);
  animation: checkBounce 2s ease-in-out infinite;
}

@keyframes checkBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.pricing-features li strong {
  color: #00d4ff;
  font-weight: 800;
}

.pricing-cta {
  width: 100%;
  padding: 1.75rem;
  background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  border: 2px solid transparent;
  border-radius: 16px;
  color: white;
  font-weight: 900;
  font-size: 1.2rem;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pricing-cta:hover::before {
  opacity: 1;
}

.pricing-cta:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 102, 255, 0.7);
  border-color: #00ff88;
}

.pricing-card.featured .pricing-cta {
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  box-shadow: 0 20px 50px rgba(0, 255, 136, 0.5);
  animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 20px 50px rgba(0, 255, 136, 0.5); }
  50% { box-shadow: 0 25px 60px rgba(0, 255, 136, 0.8); }
}

.pricing-card.featured .pricing-cta:hover {
  box-shadow: 0 30px 80px rgba(0, 255, 136, 0.9);
}

.pricing-note {
  max-width: 1100px;
  margin: 6rem auto 0;
  padding: 4rem;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.18) 0%, rgba(0, 255, 136, 0.12) 100%);
  border: 3px solid rgba(0, 102, 255, 0.5);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.pricing-note::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  animation: noteGlow 8s ease-in-out infinite;
}

@keyframes noteGlow {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.pricing-note h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.pricing-note p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  line-height: 2;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
}

.pricing-note strong {
  color: #00ff88;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .pricing-card.featured {
    transform: scale(1) translateY(0);
  }
  
  .pricing-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
  }
}
/* FINAL CTA SECTION */
.final-cta-section {
  padding: 8rem 4%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
  border-top: 1px solid rgba(0, 102, 255, 0.3);
  text-align: center;
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.final-cta-subtitle {
  font-size: 1.3rem;
  color: var(--gray-text);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.final-cta-guarantee {
  color: #00ff88;
  font-weight: 600;
  font-size: 1.1rem;
}

/* FOOTER */
.footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 4% 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--gray-text);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.footer-column a,
.footer-column p {
  display: block;
  color: var(--gray-text);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-blue);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--gray-text);
  font-size: 0.9rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-links a {
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--primary-blue);
}

.footer-company-reg {
  width: 100%;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 1rem;
}

/* MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
  overflow-y: auto;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--dark-bg);
  border: 2px solid rgba(0, 102, 255, 0.3);
  border-radius: 20px;
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  color: var(--primary-blue);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-subtitle {
  color: var(--gray-text);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--light-text);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: #000000;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group select {
  color: #000000;
  background-color: #ffffff;
  cursor: pointer;
}

.form-group select option {
  color: #000000;
  background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666666;
}

.form-submit {
  width: 100%;
  padding: 1.2rem;
  background: var(--accent-gradient);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-privacy {
  text-align: center;
  color: var(--gray-text);
  font-size: 0.85rem;
}

.modal-success {
  text-align: center;
  display: none;
}

.modal-success.active {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 255, 136, 0.15);
  border: 3px solid #00ff88;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #00ff88;
  margin: 0 auto 2rem;
}

.success-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #00ff88;
}

.success-text {
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.success-close {
  padding: 1rem 2rem;
  background: var(--accent-gradient);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.success-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-visual {
    height: 350px;
  }

  .services-grid,
  .upsells-grid,
  .portfolio-grid,
  .proof-grid,
  .principles-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain-grid,
  .authority-grid,
  .educational-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .founder-skills-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Mobile hamburger menu */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(0, 102, 255, 0.2);
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .audit-title,
  .section-title {
    font-size: 2.5rem;
  }

  .services-grid,
  .upsells-grid,
  .portfolio-grid,
  .proof-grid,
  .principles-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }

  .visual-card:nth-child(1),
  .visual-card:nth-child(2),
  .visual-card:nth-child(3) {
    position: static;
    width: 100%;
    margin-bottom: 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

  /* Better modal on mobile */
  .modal-content {
    padding: 2rem 1.5rem;
    max-height: 95vh;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .audit-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-cta {
    display: none;
  }

  .final-cta-buttons {
    flex-direction: column;
  }

  .modal-content {
    padding: 1.5rem 1rem;
  }
}

/* NAV BASE */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  z-index: 1000;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-weight: 700;
  letter-spacing: 1px;
}

/* HAMBURGER (ALL SCREENS) */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

/* SLIDE-IN MENU */
.nav-links {
  position: fixed;
  top: 70px;
  right: -320px;
  width: 300px;
  height: calc(100vh - 70px);
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1.25rem;
  transition: right 0.35s ease;
  border-left: 1px solid rgba(0, 102, 255, 0.25);
  overflow-y: auto;
}

.nav-links.active {
  right: 0;
}

/* LINKS */
.nav-link {
  font-size: 1.1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-link:hover {
  opacity: 0.85;
}

/* CTA */
.nav-cta {
  margin-left: 1rem;
}

/* Make selected text in the select field black */
.form-group select {
  color: #000;
}

/* Ensure dropdown options are also readable */
.form-group select option {
  color: #000;
  background: #fff;
}
