:root {
  --primary: #a855f7;
  --primary-glow: rgba(168, 85, 247, 0.3);
  --text-muted: #bfbfbf;

  --space-xs: 10px;
  --space-sm: 20px;
  --space-md: 40px;
  --space-lg: 70px;
  --space-xl: 100px;
}

body {
  margin: 0;
  background: #0a0a0a;
  color: white;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 0.2s ease, filter 0.2s ease;

}

html, body {
  overflow-x: hidden;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 40px;
}

/* HEADER */
h1, h2 {
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.05);
}


section::before,
section::after,
.about-card::before,
.services::before,
.services-detail::before,
.trust::before {
  pointer-events: none;
}

.hero-content,
.container,
.service-row,
.service-card,
.about-text,
.final-cta {
  position: relative;
  z-index: 10;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 500px;
  height: 200px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(168,85,247,0.15), transparent 87%);
  transform: translateX(-50%);
  filter: blur(80px);
  z-index: 2;
}

.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  align-items: center;
  display: flex;
  justify-self: start;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 40px;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 30px;
  z-index: 5;
}

.nav a {
  color: #bfbfbf;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  margin: 0;
  padding: 8px 0;
  display: inline-block;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 40px; /* space between logo and nav */
}

.nav a:hover {
  color: white;
}

.hero-video .hero-container {
  min-height: calc(100vh - 80px);
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* HOVER */


/* UNDERLINE EFFECT */
.nav a::after {
  content: "";
  position: absolute;

  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);

  width: 0%;
  height: 2px;
  background: #a855f7;

  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header .cta-btn {
  position: static;
  margin-left: auto;
  margin-top: 0;
  transform: none;
}

.header .cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.7);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(16px);
}


.nav a.active {
  color: #ffffff;
}

.nav a.active::after {
  width: 100%;
}


.nav a:hover::after {
  width: 100%;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;

  background: linear-gradient(90deg, #ffffff, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
}

/* VIDEO BACKGROUND */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* OVERLAY (VERY IMPORTANT) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100% ;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;

  text-align: center;
}

/* CENTER HERO CONTENT PROPERLY */
.hero-video .hero-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SMOOTH FADE INTO NEXT SECTION */
.hero-video::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;

  background: linear-gradient(to bottom, transparent, #0a0a0a);
  z-index: 2;
  pointer-events: none;
}

/* SERVICES */

.services::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  width: 600px;
  height: 200px;
  background: radial-gradient(circle, rgba(168,85,247,0.15), transparent 87%);
  transform: translateX(-50%);
  filter: blur(60px);
}

.services {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
}

.services-grid {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service-card {
  background: linear-gradient(145deg, #111, #0d0d0d);
  padding: var(--space-md);
  border-radius: 20px;
  max-width: 320px;
  transition: all 0.3s ease;
  margin-bottom: 10px;

  border: 1px solid rgba(168, 85, 247, 0.15);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.35);
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  color: #bfbfbf;
}

/* FOOTER */
.footer {
  position: relative;
  padding: 100px 40px 50px;  

  background: transparent;
  backdrop-filter: blur(20px);

  border-top: 1px solid rgba(168, 85, 247, 0.2);
  z-index: 2;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 250px;
  text-align: center;
}

.footer-brand {
  align-items: flex-start;
  text-align: left;
}

.footer::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  width: 600px;
  height: 400px;

  background: radial-gradient(circle, rgba(168,85,247,0.12), transparent 87%);
  transform: translateX(-50%);
  filter: blur(100px);
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;

  display: flex;
  justify-content: space-between; /* KEY CHANGE */
  align-items: flex-start;

  gap: 40px;
  flex-wrap: wrap;

  max-width: 1100px;
  margin: 0 auto;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;

  color: #a855f7;
}

.footer-col p {
  color: #bfbfbf;
  margin-bottom: 8px;
  line-height: 1.5;
  max-width: 250px;
}

.footer-col:not(:last-child) {
  margin-bottom: 10px;
  text-align: center;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-cta p {
  color: #bfbfbf;
  font-size: 14px;
}

.footer-btn {
  padding: 10px 20px;
  font-size: 14px;
}


.footer-col a {
  display: block;
  color: #bfbfbf;
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-logo {
  width: 130px;
  margin-bottom: 15px;
}

.footer-bottom {
  margin-top: 60px;
  text-align: center;
  font-size: 14px;
  color: #666;

  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}

.footer::after {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;

  background: linear-gradient(to bottom, transparent, rgba(10,10,10,0.6));
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* NAME */
.brand-name {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 5px;

  font-weight: 600;
  letter-spacing: 1px;

  background: linear-gradient(90deg, #ffffff, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

/* TAGLINE */
.brand-tagline {
  color: #bfbfbf;
  font-size: 14px;
}

.about {
  padding: 70px 40px;
  text-align: center;
  position: relative;
}

.about-container {
  max-width: 800px;
  margin: auto;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #ffffff, #a855f7);
background-clip: text;
-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about p {
  color: #bfbfbf;
  margin-bottom: 20px;
  line-height: 1.6;
}

.point {
  margin-bottom: 10px;
  font-size: 18px;
}


.trust::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.1), transparent 87%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
}

.trust {
  padding: 70px 40px;
  text-align: center;
  position: relative;
}

.trust-container {
  max-width: 900px;
  margin: auto;
}

.trust h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.trust-subtext {
  color: #bfbfbf;
  margin-bottom: 60px;
}

.trust-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}


.trust-item {
  background: linear-gradient(145deg, #111, #0d0d0d);
  padding: var(--space-md);
  border-radius: 15px;
  max-width: 260px;
  transition: all 0.35s ease;

  border: 1px solid rgba(168, 85, 247, 0.1);
}

/* HOVER */
.trust-item:hover {
  transform: translateY(-10px); /* REMOVE SCALE */

  box-shadow:
    0 15px 40px rgba(0,0,0,0.6),
    0 0 40px rgba(168,85,247,0.4);

  border: 1px solid rgba(168,85,247,0.5);
}

.trust-item h3 {
  margin-bottom: 10px;
}

.trust-item p {
  color: #bfbfbf;
  font-size: 14px;
}

.services h2,
.trust h2,
.conversion h2 {
  background: linear-gradient(90deg, #ffffff, #a855f7);
background-clip: text;
-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services h2::after,
.trust h2::after,
.conversion h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 10px auto 0;
  background: #a855f7;
  border-radius: 10px;
}

.divider {
  width: 100%;
  height: 120px;
  background: radial-gradient(circle at center, rgba(168,85,247,0.15), transparent 50%);
  filter: blur(40px);
}

html {
  scroll-behavior: smooth;
  background: #0a0a0a;
}

.image-break {
  position: relative;
  height: 400px;

  background: url("Images/techstonks.png") center/cover no-repeat;
  background-attachment: fixed;
}

/* DARK OVERLAY */
.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.image-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-content h2 {
  font-size: 32px;
  background: linear-gradient(90deg, #ffffff, #a855f7);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
  -webkit-text-fill-color: transparent;
}

.video-break {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}


/* DARK OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* TEXT */
.video-content {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 40px;
  text-align: center;
}

.video-content h2 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.2;

  background: linear-gradient(90deg, #ffffff, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-item {
  position: relative;
  overflow: hidden;
}



/* MOBILE TAP */


.trust-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-item:active {
  transform: scale(0.97);
}

* {
  -webkit-tap-highlight-color: transparent;
}



.final-cta {
  padding: 70px 40px;
  text-align: center;
}

.final-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 14px;
  line-height: 1.5;
  max-width: 300px;
  margin: 10px auto 0;
}

/* SMALL HERO */
.small-hero {
  height: 60vh;
}

/* SERVICE BLOCKS */
.services-detail {
  padding: 70px 40px;
}

.service-block {
  position: relative;
  padding: 60px;
  margin-bottom: 60px;
  border-radius: 20px;

  background: linear-gradient(145deg, #111, #0d0d0d);
  border: 1px solid rgba(168, 85, 247, 0.15);

  transition: all 0.3s ease;
}

.service-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

.service-block h2 {
  font-size: 28px;
  margin-bottom: 15px;

  background: linear-gradient(90deg, #fff, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.service-block p {
  color: #bfbfbf;
  line-height: 1.6;
}

/* PROCESS */
.process {
  padding: 70px 40px;
  text-align: center;
}

.process-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.process-step {
  max-width: 250px;
}

.services-detail {
  position: relative;
}

.services-detail::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;

  background: radial-gradient(circle, rgba(168,85,247,0.1), transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(100px);
  z-index: 1;
}

.service-block {
  position: relative;
  z-index: 1;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  gap: var(--space-md);
}

.service-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.service-text {
  flex: 1;
}


.service-text h2 {
  font-size: 32px;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #fff, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.service-text p {
  color: #bfbfbf;
  line-height: 1.6;
}

/* VISUAL BLOCK */



.video-box {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}



.process {
  padding: 70px 40px;
  text-align: center;
  position: relative;
}

.process h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* GRID */
.process-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

/* CONNECTING LINE */
.process-grid::before {
  content: "";
  position: absolute;
  top: -30px; /* push it lower */
  left: 10%;
  width: 80%;
  height: 2px;

  background: linear-gradient(to right, transparent, #a855f7, transparent);

  z-index: 0;
}

/* STEP */
.process-step {
  position: relative;
  max-width: 250px;
}

/* NUMBER */
.step-number {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 20px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(168,85,247,0.3), transparent);
  border: 1px solid rgba(168,85,247,0.3);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  font-size: 18px;
}

/* TEXT */
.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  color: #bfbfbf;
}

.process-step:hover .step-number {
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.6);
  transform: scale(1.05);
}



.process::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;

  background: radial-gradient(circle, rgba(168,85,247,0.1), transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(100px);
  z-index: 0;
}

.services-intro {
  padding: 70px 40px 80px;
  text-align: center;
  position: relative;
}

/* GLOW BACKGROUND */
.services-intro::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;

  background: radial-gradient(circle, rgba(168,85,247,0.12), transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(100px);
}

/* TEXT */
.services-intro h1 {
  font-size: 40px;
  margin-bottom: 15px;

  background: linear-gradient(90deg, #fff, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.services-intro p {
  color: #bfbfbf;
}

.services-intro::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 120px;

  background: linear-gradient(to bottom, transparent, #0a0a0a);
}

.services-intro h1,
.services-intro p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.services-intro p {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1,
.hero-content p,
.hero-content .cta-btn {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards;
  margin: 0 auto;
}

.hero-content p {
  animation-delay: 0.2s;
}

.hero-content .cta-btn {
  animation-delay: 0.4s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.trust-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.trust.show .trust-item {
  opacity: 1;
  transform: translateY(0);
}

.trust.show .trust-item:nth-child(1) { transition-delay: 0.1s; }
.trust.show .trust-item:nth-child(2) { transition-delay: 0.2s; }
.trust.show .trust-item:nth-child(3) { transition-delay: 0.3s; }
.trust.show .trust-item:nth-child(4) { transition-delay: 0.4s; }

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
  }
}

/* INTRO */
.about-intro {
  padding: 70px 40px 80px;
  text-align: center;
}

.about-intro h1 {
  font-size: 40px;
  margin-bottom: 15px;

  background: linear-gradient(90deg, #fff, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.about-intro p {
  color: #bfbfbf;
}

/* STORY */
.about-grid {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-visual {
  flex: 1;
  height: 300px;
  border-radius: 20px;

  background: linear-gradient(145deg, #111, #0d0d0d);
  border: 1px solid rgba(168,85,247,0.15);
}

/* PRINCIPLES */
.principles-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.principle {
  max-width: 250px;
  text-align: center;
}

.about-card {
  padding: 60px;
  border-radius: 25px;

  background: linear-gradient(145deg, #111, #0d0d0d);
  border: 1px solid rgba(168, 85, 247, 0.15);

  box-shadow: 0 0 50px rgba(168, 85, 247, 0.1);

  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;

  background: radial-gradient(circle, rgba(168,85,247,0.12), transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(100px);
}

.about-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.about-text {
  flex: 1;
}

.about-visual {
  flex: 1;
  height: 300px;
  border-radius: 20px;

  background: linear-gradient(145deg, #111, #0d0d0d);
  border: 1px solid rgba(168,85,247,0.15);
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #fff, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.about-text p {
  color: #bfbfbf;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-visual {
  background: url("Images/aboutimage.png") center/cover no-repeat;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #fff, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* GRID */
.principles-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.principle-card {
  background: linear-gradient(145deg, #111, #0d0d0d);
  padding: 40px;
  border-radius: 20px;
  max-width: 260px;
  text-align: center;

  border: 1px solid rgba(168,85,247,0.15);
  transition: all 0.3s ease;
}

/* HOVER */
.principle-card:hover {
  transform: translateY(-10px) scale(1.02);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.6),
    0 0 40px rgba(168,85,247,0.35);
}

/* ICON */
.principle-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

/* TEXT */
.principle-card h3 {
  margin-bottom: 10px;
}

.principle-card p {
  color: #bfbfbf;
  font-size: 14px;
}


.principle-card {
  opacity: 0;
  transform: translateY(30px);
}

.principles-grid.show .principle-card {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.principles-grid.show .principle-card:nth-child(1) { transition-delay: 0.1s; }
.principles-grid.show .principle-card:nth-child(2) { transition-delay: 0.2s; }
.principles-grid.show .principle-card:nth-child(3) { transition-delay: 0.3s; }

/* INTRO */
.contact-intro {
  padding: 70px 40px 80px;
  text-align: center;
}

.contact-intro h1 {
  font-size: 40px;
  margin-bottom: 15px;

  background: linear-gradient(90deg, #fff, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.contact-intro p {
  color: #bfbfbf;
}

/* FORM */
.contact-form-section {
  padding: 80px 40px;
  overflow: visible;
}

.form-title {
  font-size: 26px;
  line-height: 1.3;
  text-align: center;
  display: block;
  margin-bottom: 6px;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 25px; /* THIS is the cleanest fix */
  overflow: visible;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
  word-break: normal;
  overflow-wrap: break-word;

  background: linear-gradient(145deg, #111, #0d0d0d);
  border: 1px solid rgba(168,85,247,0.15);

  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form-section {
  padding: 80px 40px;
  text-align: center;
}

.form-embed {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 20px;
}

.form-embed iframe {
  width: 100%;
  height: 600px;
  border: none;
}

.form-divider {
  width: 60%;
  height: 1px;
  margin: 0 auto;

  background: linear-gradient(
    to right,
    transparent,
    rgba(168,85,247,0.5),
    transparent
  );
}

/* CONTACT INFO */
.contact-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.contact-item h3 {
  margin-bottom: 10px;
}

.contact-item p {
  color: #bfbfbf;
}



/* MOBILE NAV FIXED */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;

  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;

  transition: right 0.4s ease;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.mobile-menu a {
  font-size: 22px;
  font-weight: 500;
  color: #e5e5e5;
  text-decoration: none;
  letter-spacing: 0.5px;

  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu a:hover {
  color: #a855f7;
  transform: scale(1.05);
}

.mobile-cta {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: auto;
  line-height: 1;
  box-shadow: 0 0 20px rgba(168,85,247,0.6);
}

/* stagger effect */
.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.6s; }

body.menu-open {
  overflow: hidden;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.footer-link {
  color: #a855f7;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}


/* UNDERLINE ANIMATION */
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #a855f7;
  transition: width 0.25s ease;
}

/* HOVER */
.footer-link:hover {
  color: #c084fc;
}

.footer-link:hover::after {
  width: 100%;
}


.video-box video {
  pointer-events: none;
}


.footer-link {
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}


/* FOCUS (KEY FOR UX) */
.cta-btn {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  margin-top: 20px;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
  transition: all 0.2s ease;
  position: relative;
  z-index: 9999;
  animation: pulseGlow 3s ease-in-out infinite;
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.7);
}

.cta-btn:active {
  transform: scale(0.95);
}

.cta-btn:focus {
  outline: 2px solid #a855f7;
  outline-offset: 3px;
}

section {
  position: relative;
  z-index: 1;
  background: #0a0a0a;
  padding: var(--space-lg) var(--space-md);
}

section::after {
  display: none;
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 80px;
  pointer-events: none;

  background: linear-gradient(to bottom, transparent, #0a0a0a);
}



p {
  line-height: 1.7;
  letter-spacing: 0.2px;
}

a {
  cursor: pointer;
}



@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-visual {
  flex: 1;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;

  border: 1px solid rgba(168,85,247,0.15);
  box-shadow: 0 0 40px rgba(168,85,247,0.15);
}

/* REMOVE BACKGROUND IMAGE RULES */

/* IMAGE */
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


a, button {
  transition: all 0.2s ease;
}

.service-row:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
}



.divider {
  height: 1px;
  width: 60%;
  margin: 80px auto;

  background: linear-gradient(
    to right,
    transparent,
    rgba(168,85,247,0.4),
    transparent
  );
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.final-cta p {
  margin-bottom: 25px;
}



@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a:hover {
  opacity: 0.9;
}


.mobile-menu {
  pointer-events: auto;
}

/* PREVENT OVERLAYS FROM BLOCKING */
.hero-overlay,
.video-overlay,
.image-overlay,
.bg-video {
  pointer-events: none;
}

/* ENSURE BUTTONS ARE ABOVE */



.mobile-menu {
  z-index: 2000;
}

.mobile-cta {
  z-index: 50;
}

/* FORCE ALL INTERACTIVE ELEMENTS ABOVE OVERLAYS */

.hero-content,
.container,
.service-row,
.service-card,
.about,
.trust,
footer {
  position: relative;
  z-index: 10;
}

.about,
.about-grid,
.about-text,
.about-visual {
  position: relative;
  z-index: 5;
}

.about::before,
.about-card::before,
.services-detail::before {
  pointer-events: none;
  z-index: 0;
}

.pricing {
  padding: 80px 40px;
  text-align: center;
}

.pricing-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-guarantee {
  margin-top: 40px;
  text-align: center;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.feature {
  padding: 10px 12px;
  border-radius: 10px;

  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.15);

  font-size: 14px;
  color: #d4d4d4;
}


.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(168,85,247,0.3);
}

.pricing.show .pricing-card:nth-child(1) { transition-delay: 0.1s; }
.pricing.show .pricing-card:nth-child(2) { transition-delay: 0.2s; }
.pricing.show .pricing-card:nth-child(3) { transition-delay: 0.3s; }

.price {
  font-size: 32px;
  margin: 15px 0;
}

.pricing-hero {
  padding: 100px 40px 60px;
  text-align: center;
}

.pricing-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #ffffff, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.pricing-hero p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #bfbfbf;
}


.pricing-card {
  background: linear-gradient(145deg, #111, #0d0d0d);
  padding: 35px;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%; /* KEY FIX */

  border: 1px solid rgba(168,85,247,0.15);
  transition: all 0.3s ease;
}
/* FEATURED PLAN */
.featured {
  transform: none;
  box-shadow: 0 0 40px rgba(168,85,247,0.3);
}

.pricing-card ul {
  flex-grow: 1;
}

/* SETUP SECTION */
.setup-section {
  position: relative;
  overflow: hidden;

  padding: 100px 40px;
  text-align: center;

  background: radial-gradient(circle at top, rgba(168,85,247,0.08), transparent 60%);
}

/* SUBTEXT */
.setup-subtext {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #bfbfbf;
}

/* GRID */
.setup-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* CARDS */
.setup-item {
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.15);
  width: 260px;
  border-radius: 18px;
  padding: 25px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  transition: all 0.3s ease;
}


.setup-section.show .setup-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.setup-section.show .setup-item:nth-child(1) { transition-delay: 0.1s; }
.setup-section.show .setup-item:nth-child(2) { transition-delay: 0.2s; }
.setup-section.show .setup-item:nth-child(3) { transition-delay: 0.3s; }
.setup-section.show .setup-item:nth-child(4) { transition-delay: 0.4s; }
.setup-section.show .setup-item:nth-child(5) { transition-delay: 0.5s; }

/* HOVER */
.setup-item:hover {
  transform: translateY(-8px); /* REMOVE scale */

  box-shadow:
    0 15px 40px rgba(0,0,0,0.6),
    0 0 30px rgba(168,85,247,0.4);

  border: 1px solid rgba(168,85,247,0.5);
}

/* TITLE */
.setup-item h3 {
  font-size: 18px;
}

/* TEXT */
.setup-item p {
  font-size: 14px;
  line-height: 1.5;
}

/* PRICE NOTE */
.setup-note {
  margin-top: 20px;
  font-size: 16px;
  color: #ffffff;
}

/* AGREEMENT NOTE */
.pricing-note {
  margin-top: 10px;
  font-size: 14px;
  color: #888;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* OPTIONAL GLOW BACKGROUND (matches your site) */
.setup-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 400px;

  background: radial-gradient(circle, rgba(168,85,247,0.12), transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(100px);
  z-index: 0;
}

.setup-section * {
  position: relative;
  z-index: 1;
}
/* CLEAN HEADER ALIGNMENT */

/* LOGO WRAP */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none !important;
}

.logo-wrap:hover {
  text-decoration: none;
}


/* LOGO TEXT */
.logo-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 1;

 color: #e9d5ff; /* solid base */

  animation: logoGlow 2.2s ease-in-out infinite;
}

.logo a,
.logo-wrap,
.logo-wrap:link,
.logo-wrap:visited,
.logo-wrap:hover {
  text-decoration: none !important;
}

.value-strip {
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
  text-align: center;

  background: transparent;
}

.value-strip p {
  font-size: 18px;
  color: #e9d5ff;

  white-space: nowrap; /* keeps it on one line */
}

.fade-strip p {
  transform: translateX(-120%);
  opacity: 0;
}

.fade-strip.show p {
  animation: slideAcross 8s ease forwards;
}

/* ACTIVE STATE */
.pricing-card {
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 15px 40px rgba(0,0,0,0.6),
    0 0 30px rgba(168,85,247,0.3);
}

.booking-embed {
  width: 100%;
  height: 90vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.booking-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.booking-title {
  font-size: clamp(26px, 4vw, 36px);
  text-align: center;
  margin-bottom: 10px;

  background: linear-gradient(90deg, #ffffff, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.booking-subtext {
  text-align: center;
  color: #bfbfbf;

  max-width: 500px;
  margin: 0 auto 30px;

  font-size: 15px;
  line-height: 1.6;
}

/* =========================
   FIX CLICK BLOCKING
========================= */
.hero-video::after,
.footer::before,
.footer::after,
.services::before,
.services-detail::before,
.trust::before,
.process::before,
.setup-section::before {
  pointer-events: none !important;
}

.booking-section {
  position: relative;
  z-index: 990;
}

.seo-section {
  padding: 40px 20px;
  text-align: center;
  opacity: 0.6;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 60px;
}

.seo-section p {
  max-width: 700px;
  margin: 0 auto 10px;

  font-size: 12px;
  line-height: 1.6;

  color: #888;
}

/* =========================
   PAGE TRANSITIONS
========================= */

/* when page loads */
body.page-loaded {
  opacity: 1;
  filter: blur(0);
}

/* when leaving page */
body.page-exit {
  opacity: 0;
}

/* prevent flash */

/* =========================
   ONBOARDING SECTION
========================= */
.onboarding-section {
  padding: 80px 20px;
  text-align: center;
}

.onboarding-container {
  max-width: 1100px;
  margin: 0 auto;
}

.onboarding-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 15px;

  background: linear-gradient(90deg, #ffffff, #a855f7);

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.onboarding-subtext {
  max-width: 650px;
  margin: 0 auto 50px;

  color: #bfbfbf;
  line-height: 1.7;
}

/* STEPS */
.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.onboarding-step {
  background: rgba(18,18,18,0.75);

  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;

  padding: 30px;

  backdrop-filter: blur(12px);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.onboarding-step:hover {
  transform: translateY(-5px);
  border-color: rgba(168,85,247,0.35);
}

/* NUMBER */
.onboarding-step span {
  display: inline-flex;

  width: 42px;
  height: 42px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #7c3aed, #a855f7);

  font-weight: 600;

  margin-bottom: 18px;
}

/* TITLES */
.onboarding-step h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

/* TEXT */
.onboarding-step p {
  color: #a5a5a5;
  line-height: 1.7;
  font-size: 14px;
}

.services-note {
  text-align: center;

  max-width: 750px;
  margin: 80px auto 0;

  color: #9a9a9a;
  line-height: 1.7;

  font-size: 15px;
}

.founder-section {
  padding: 120px 20px;
  position: relative;
}

.founder-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;

  align-items: center;
}

/* =========================
   IMAGE
========================= */
.founder-image-wrap {
  position: relative;
}

.founder-image-wrap::before {
  content: "";

  position: absolute;
  inset: -15px;

  border-radius: 30px;

  background:
    linear-gradient(
      135deg,
      rgba(168,85,247,0.25),
      transparent
    );

  z-index: 0;

  filter: blur(25px);
}

.founder-image {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 540px;

  object-fit: cover;

  border-radius: 28px;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.45);
}

/* =========================
   CONTENT
========================= */
.founder-content {
  position: relative;

  background: rgba(18,18,18,0.65);

  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 30px;

  padding: 50px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.25);
}

/* LABEL */
.section-label {
  margin-bottom: 14px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;

  color: #a855f7;
}

/* HEADING */
.founder-content h2 {
  margin-bottom: 28px;

  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;

  background:
    linear-gradient(
      90deg,
      #ffffff,
      #a855f7
    );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.founder-content p {
  color: #b5b5b5;

  line-height: 1.9;
  font-size: 15px;

  margin-bottom: 20px;
}

@keyframes slideAcross {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  15% {
    transform: translateX(0%);
    opacity: 1;
  }

  70% {
    transform: translateX(0%);
    opacity: 1;
  }

  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

/* NEW animation */
@keyframes logoGlow {
  0%, 100% {
    text-shadow:
      0 0 4px rgba(168, 85, 247, 0.4),
      0 0 8px rgba(168, 85, 247, 0.3);
  }
  50% {
    text-shadow:
      0 0 8px rgba(168, 85, 247, 0.7),
      0 0 16px rgba(168, 85, 247, 0.9),
      0 0 24px rgba(168, 85, 247, 0.6);
  }
}

@media (max-width: 768px) {

  section {
    padding: 60px 20px;
  }

  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  p { font-size: 14px; }

    .container {
    padding: 0 15px;
  }

  h1, h2 {
    line-height: 1.2;
  }

    .form-title {
    font-size: 22px;
    line-height: 1.4;
    padding: 0 10px;
  }

  .hero-video {
    min-height: calc(100vh - 65px);
    height: 80vh;
  }

  .service-row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

    .contact-form-section .container {
    padding: 0 10px;
  }


  .trust-grid,
  .process-grid {
    gap: 35px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

    .form-card {
    max-width: 100%;
    padding: 20px 15px;
  }


  .cta-btn {
    width: 100%;
    min-width: 180px;
  }

  .header .cta-btn {
    display: none;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 15px;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
 
  .footer-col:not(:last-child) {
    text-align: center;
  }

  .fade-up,
  .trust-item,
  .principle-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }


  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 35px; /* increase vertical space */
    margin-top: 35px;
  }

  .service-card {
    width: 100%;
    max-width: 100%;
    padding: 25px;
    border: 1px solid rgba(168, 85, 247, 0.2);
  }

  .services h2 {
    margin-bottom: 10px;
  }

  .service-row,
  .service-row.reverse {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .service-text {
    width: 100%;
    max-width: 100%;
  }

  .service-visual {
    width: 100%;
    height: 220px;
    flex: none;
    order: -1;
  }

  .about {
    padding: 60px 20px;
    display: block;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2 {
    margin-bottom: 15px;
  }

    .seo-section {
    padding: 30px 15px;
  }

  .seo-section p {
    font-size: 11px;
  }

  .about-text p {
    margin-bottom: 15px;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

    .onboarding-section {
    padding: 60px 20px;
  }

  .onboarding-steps {
    grid-template-columns: 1fr;
  }

  .about-text {
    width: 100%;
    text-align: center;
  }

  .about-visual {
    width: 100%;
    height: 220px;
    flex: none;
  }

    .process-grid {
    flex-direction: column;
    align-items: center; /* KEY FIX */
    gap: 40px;
  }

  .process-step {
    width: 100%;
    max-width: 300px;
    text-align: center;
    gap: 10px;
  }



  .video-content {
    padding: 0 20px;
  }

  .video-content h2 {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;

    font-size: clamp(24px, 6vw, 34px);
    line-height: 1.25;

    background: linear-gradient(90deg, #ffffff, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    text-align: center;
  }

  .form-embed iframe {
    height: 700px;
  }

  .pricing-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

      .pricing-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    max-width: 400px;
  }

  .setup-section {
    padding: 60px 20px;
  }

  .setup-grid {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 100%;
    min-height: auto;
  }

  .setup-item {
    width: 100%;
    max-width: 100%;
    max-height: auto;
  }

  .setup-subtext {
    margin-bottom: 30px;
  }

  .logo-wrap {
    gap: 6px;
  }

  .logo img {
    height: 40px;
  }

  .logo-text {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .value-strip p {
    white-space: normal;
  }
  
  .setup-item:hover {
    transform: translateY(-8px);

    box-shadow:
      0 15px 40px rgba(0,0,0,0.6),
      0 0 30px rgba(168,85,247,0.4);
  }

    .booking-embed iframe {
    height: 90vh !important;
    min-height: 700px !important;
  }

    .booking-title {
    font-size: 22px;
    line-height: 1.3;
    padding: 0 10px;
  }

  .booking-subtext {
    font-size: 14px;
    padding: 0 10px;
  }

    .founder-section {
    padding: 80px 20px;
  }

  .founder-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image {
    height: 420px;
  }

  .founder-content {
    padding: 35px 25px;
  }

  .founder-section {
    padding: 60px 15px;
  }

  .founder-image {
    height: 340px;
    border-radius: 22px;
  }

  .founder-content {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .founder-content h2 {
    font-size: 30px;
  }

  .founder-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

}