/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
}

/* Brand Colors */
:root {
  --orange: #ff4500;
  --green: #00cc66;
  --blue: #0099ff;
  --yellow: #ffd700;
  --black: #000000;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-dark: #2d3748;
}

/* Hero Section */
.hero-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 69, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 204, 102, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(0, 153, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-container {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0 20px;
  background: url("./img/hero-samp-8.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  animation: slideDown 0.8s ease-out;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-puzzle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 40px;
  height: 40px;
}

.puzzle-piece {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  animation: puzzleFloat 3s ease-in-out infinite;
}

.piece-orange {
  background: var(--orange);
  animation-delay: 0s;
}

.piece-green {
  background: var(--green);
  animation-delay: 0.5s;
}

.piece-blue {
  background: var(--blue);
  animation-delay: 1s;
}

.piece-yellow {
  background: var(--yellow);
  animation-delay: 1.5s;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: all 0.3s ease;
}

.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(7px, -6px);
}

/* Mobile menu close button */
.mobile-menu-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10000;
  display: none;
  padding: 10px;
  width: 50px;
  height: 50px;
  line-height: 1;
  text-align: center;
}

.nav-menu.active ~ .mobile-menu-close {
  display: block;
}

.nav-menu.active {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  padding: 80px 20px 20px;
  gap: 2rem;
  z-index: 9998;
  animation: slideDown 0.3s ease-out;
  justify-content: center;
  align-items: center;
}

.nav-menu.active .nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav-menu.active .nav-link:hover {
  color: var(--orange);
  transform: translateX(10px);
}

.nav-menu.active .cta-button {
  margin: 20px auto;
  width: 100%;
  max-width: 200px;
  font-size: 1.2rem;
  padding: 15px 30px;
}

.mobile-menu-title {
  display: none;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.nav-menu.active .mobile-menu-title {
  display: block;
}

/* CTA Buttons */
.cta-button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--orange), #ff6b35);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-button.secondary:hover {
  background: var(--white);
  color: var(--black);
}

.cta-button.large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Hero Content */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 100px);
  padding: 2rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text {
  animation: slideUp 1s ease-out 0.3s both;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.headline-main {
  display: block;
  color: var(--white);
}

.headline-accent {
  display: block;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  color: white;
}

.stat {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: slideUp 1s ease-out 0.6s both;
}

.brand-showcase {
  position: relative;
  height: 500px;
}

.showcase-card {
  position: absolute;
  width: 200px;
  height: 160px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s ease;
}

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

.card-1 {
  top: 20px;
  left: 0px;
  animation: floatCard 6s ease-in-out infinite;
}

.card-2 {
  top: 120px;
  right: 40px;
  animation: floatCard 6s ease-in-out infinite 2s;
}

.card-3 {
  bottom: 40px;
  left: 60px;
  animation: floatCard 6s ease-in-out infinite 4s;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--white);
  font-weight: 600;
}

.card-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.card-icon.orange {
  background: var(--orange);
}
.card-icon.green {
  background: var(--green);
}
.card-icon.blue {
  background: var(--blue);
}

.card-preview {
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.card-preview::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
}

.card-preview::after {
  content: "";
  position: absolute;
  top: 70%;
  left: 50%;
  width: 40%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.shape-1 {
  width: 60px;
  height: 60px;
  background: var(--green);
  top: 10%;
  right: 10%;
  animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
  width: 40px;
  height: 40px;
  background: var(--blue);
  bottom: 20%;
  right: 20%;
  animation: floatShape 8s ease-in-out infinite 3s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background: var(--yellow);
  top: 50%;
  right: 0%;
  animation: floatShape 8s ease-in-out infinite 6s;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes floatShape {
  0%,
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-brand img {
    height: 50px; /* Tablet size */
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-visual {
    order: -1;
    height: 300px;
  }

  .brand-showcase {
    height: 300px;
  }

  .showcase-card {
    width: 150px;
    height: 120px;
    padding: 15px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .stat {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }

  .nav-brand .brand-name {
    font-size: 1.2rem;
  }

  .nav-brand img {
    height: 40px; /* Mobile size */
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-button.large {
    width: 100%;
    max-width: 280px;
  }
}

/* Social Proof Section */
.social-proof-section {
  width: 100%;
  background: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.social-proof-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(255, 69, 0, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 204, 102, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.social-proof-container {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Section Header */
.social-proof-header {
  text-align: center;
  margin-bottom: 60px;
  animation: slideUp 0.8s ease-out;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-dark);
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto;
}

/* Logo Carousel */
.logos-carousel {
  margin-bottom: 60px;
  overflow: hidden;
  position: relative;
}

.logos-carousel::before,
.logos-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.logos-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.logos-track {
  display: flex;
  animation: scrollLogos 30s linear infinite;
  width: calc(200% + 40px);
}

.logo-item {
  flex: 0 0 auto;
  margin-right: 40px;
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-placeholder {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.logo-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.logo-placeholder:hover::before {
  transform: translateX(100%);
}

.logo-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Logo Styles */
.logo-placeholder.tech {
  color: white;
}

.logo-placeholder.finance {
  color: white;
}

.logo-placeholder.health {
  color: white;
}

.logo-placeholder.retail {
  color: var(--black);
}

.logo-placeholder.food {
  color: var(--black);
}

.logo-placeholder.travel {
  color: var(--black);
}

.logo-placeholder.education {
  color: var(--black);
}

.logo-placeholder.startup {
  color: var(--black);
}

/* Quick Stats */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  animation: slideUp 0.8s ease-out 0.3s both;
}

.quick-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: transparent;
  border-radius: 16px;

  transition: all 0.3s ease;
}

.quick-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  flex-shrink: 0;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}

.icon-circle.orange {
  background: url("img/rating.png");
  background-position: center;
  background-size: contain;
}

.icon-circle.green {
  background: url("img/check.png");
  background-position: center;
  background-size: contain;
}

.icon-circle.blue {
  background: url("img/trophy.png");
  background-position: center;
  background-size: contain;
}

.icon-circle.yellow {
  background: url("img/handshake.png");
  background-position: center;
  background-size: contain;
}

.stat-content {
  display: flex;
  flex-direction: column;
  background-color: transparent;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-dark);
  opacity: 0.7;
}

/** Hero Section Image **/

/* ADD THESE NEW MEDIA QUERIES AT THE END OF YOUR CSS */

/* Tablet and medium screens (768px - 1024px) */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .hero-section {
    background-image: url("./img/hero-samp-8.png");
    background-attachment: scroll;
  }
}

/* Small tablets and large phones (481px - 768px) */
@media screen and (max-width: 768px) and (min-width: 481px) {
  .hero-section {
    background-image: url("./img/hero-samp-8-tablet.png");
    background-attachment: scroll;
    background-position: center top;
  }
}

/* Mobile phones (up to 480px) */
@media screen and (max-width: 480px) {
  .hero-section {
    background-image: url("./img/hero-samp-8-tablet.png");
    background-attachment: scroll;
    background-position: center top;
  }
}

/* High DPI/Retina displays */
@media screen and (-webkit-min-device-pixel-ratio: 2),
  screen and (min-resolution: 192dpi) {
  .hero-section {
    background-image: url("./img/hero-samp-8-tablet.png");
  }
}

/* Fallback for older browsers */
@supports not (background-attachment: fixed) {
  .hero-section {
    background-attachment: scroll;
  }
}

/* Testimonial Highlight */
.testimonial-highlight {
  background: linear-gradient(135deg, var(--black) 0%, #2d3748 100%);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out 0.6s both;
}

.testimonial-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 69, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 204, 102, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.quote-icon {
  font-size: 4rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

blockquote {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url("https://loremfaces.net/48/id/2.jpg");
  border-radius: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

.author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.author-name {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.author-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Animations */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-proof-section {
    padding: 60px 0;
  }

  .social-proof-header {
    margin-bottom: 40px;
  }

  .logos-carousel {
    margin-bottom: 40px;
  }

  .logo-placeholder {
    width: 120px;
    height: 70px;
    font-size: 0.8rem;
  }

  .quick-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }

  .quick-stat {
    padding: 15px;
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }

  .testimonial-highlight {
    padding: 20px 20px;
  }

  .testimonial-author {
    flex-direction: column;
    gap: 10px;
  }

  .author-info {
    text-align: center;
  }

  blockquote {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .social-proof-container {
    padding: 0 15px;
  }

  .quick-stats {
    grid-template-columns: 1fr;
  }

  .logo-item {
    margin-right: 20px;
    height: auto;
    width: auto;
  }

  .logo-item img {
    width: 40px;
    height: auto;
  }

  .logo-placeholder {
    width: 100px;
    height: 60px;
    font-size: 0.7rem;
  }
}

/* services */
.services-section {
  width: 100%;
  padding: 10px 20px 70px 20px;
  background: #f7fafc;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.service-box {
  background: white;
  border-radius: 16px;
  padding: 0;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  text-align: left;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(107, 70, 193, 0.1);
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 20px;
  color: #333;
}

.service-description {
  font-size: 0.95rem;
  color: #4a5568;
  margin: 0 20px 20px;
  line-height: 1.6;
}

/* How it works */
/* How It Works Section */
.how-it-works-section {
  width: 100%;
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(255, 69, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(0, 204, 102, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 153, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.how-it-works-container {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Section Header */
.how-it-works-header {
  text-align: center;
  margin-bottom: 80px;
  animation: slideUp 0.8s ease-out;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works-header .section-title {
  color: var(--white);
}

.how-it-works-header .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* Process Timeline */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--orange) 0%,
    var(--green) 33%,
    var(--blue) 66%,
    var(--yellow) 100%
  );
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Process Step */
.process-step {
  position: relative;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

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

.process-step:nth-child(even) .step-details {
  align-items: flex-end;
}

.process-step:nth-child(even) .step-features {
  text-align: right;
}

.step-content {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

/* Step Number */
.step-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  z-index: 3;
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
}

.step-number span {
  position: relative;
  z-index: 2;
}

.step-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    var(--orange) 0deg,
    var(--orange) 0deg,
    transparent 0deg
  );
  opacity: 0;
  transition: all 0.8s ease;
}

.process-step.animate-in .step-progress {
  opacity: 1;
}

.process-step[data-step="1"].animate-in .step-progress {
  background: conic-gradient(
    var(--orange) 0deg,
    var(--orange) 90deg,
    transparent 90deg
  );
}

.process-step[data-step="2"].animate-in .step-progress {
  background: conic-gradient(
    var(--green) 0deg,
    var(--green) 180deg,
    transparent 180deg
  );
}

.process-step[data-step="3"].animate-in .step-progress {
  background: conic-gradient(
    var(--blue) 0deg,
    var(--blue) 270deg,
    transparent 270deg
  );
}

.process-step[data-step="4"].animate-in .step-progress {
  background: conic-gradient(
    var(--yellow) 0deg,
    var(--yellow) 360deg,
    transparent 360deg
  );
}

/* Step Details */
.step-details {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.step-details:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.step-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.step-icon {
  margin-bottom: 20px;
}

.step-icon .icon-circle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
}

.step-icon .icon-circle::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.step-details:hover .step-icon .icon-circle::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  line-height: 1.3;
}

.step-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

.step-features {
  list-style: none;
  margin-bottom: 25px;
}

.step-features li {
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.step-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}

.process-step:nth-child(even) .step-features li {
  padding-left: 0;
  padding-right: 25px;
}

.process-step:nth-child(even) .step-features li::before {
  right: 0;
  left: auto;
}

.step-duration {
  display: flex;
  justify-content: flex-start;
}

.process-step:nth-child(even) .step-duration {
  justify-content: flex-end;
}

.duration-badge {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--black);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

/* Process Summary */
.process-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  animation: slideUp 0.8s ease-out 0.3s both;
}

.summary-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.summary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.summary-card:hover::before {
  opacity: 1;
}

.summary-icon {
  margin-bottom: 20px;
}

.summary-icon .icon-circle.gradient {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--black);
}

.summary-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.summary-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 5px;
  line-height: 1;
}

.summary-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Process CTA */
.process-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out 0.6s both;
}

.process-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 69, 0, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .process-timeline::before {
    left: 40px;
  }

  .step-number {
    left: 40px;
    transform: translateX(-50%);
  }

  .step-content {
    flex-direction: column;
    padding-left: 120px;
  }

  .process-step:nth-child(even) .step-content {
    flex-direction: column;
    text-align: left;
  }

  .process-step:nth-child(even) .step-details {
    align-items: flex-start;
  }

  .process-step:nth-child(even) .step-features {
    text-align: left;
  }

  .process-step:nth-child(even) .step-duration {
    justify-content: flex-start;
  }

  .process-step:nth-child(even) .step-features li {
    padding-left: 25px;
    padding-right: 0;
  }

  .process-step:nth-child(even) .step-features li::before {
    left: 0;
    right: auto;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 60px 0;
  }

  .how-it-works-header {
    margin-bottom: 50px;
  }

  .process-timeline {
    margin-bottom: 50px;
  }

  .process-timeline::before {
    left: 20px;
  }

  .step-number {
    left: 20px;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .step-content {
    padding-left: 80px;
  }

  .step-details {
    padding: 30px 20px;
  }

  .step-title {
    font-size: 1.3rem;
  }

  .process-summary {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .process-cta {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button.large {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .how-it-works-container {
    padding: 0 15px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .step-content {
    padding-left: 70px;
  }

  .step-details {
    padding: 25px 15px;
  }

  .step-icon .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Portfolio Section */
.portfolio-section {
  width: 100%;
  background: #f7fafc;
  padding: 100px 0;
}

.portfolio-container {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 60px;
}

.portfolio-header .section-title {
  font-size: 2rem;
  color: #333;
}

.portfolio-header .section-subtitle {
  font-size: 1rem;
  color: #4a5568;
  margin-top: 10px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.portfolio-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 20px;
}

.portfolio-description {
  font-size: 0.95rem;
  color: #4a5568;
  margin: 0 20px 20px;
  line-height: 1.6;
}

/** About section **/
.about-section {
  width: 100%;
  background: #f7fafc;
  padding: 80px 20px 5px 20px;
  text-align: center;
  color: #333;
}

.about-container {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #6b46c1; /* matching your purple accent */
}

.credibility {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #4a5568;
}

.expertise {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 40px auto;
  color: #555;
}

.team-photo-container {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(107, 70, 193, 0.3);
}

.team-photo {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }

  .credibility {
    font-size: 1.1rem;
  }

  .expertise {
    font-size: 0.95rem;
  }
}

/** FAQ **/
.faq-section {
  background: #fff;
  padding: 80px 20px;
  color: #333;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  box-sizing: border-box;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6b46c1;
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 15px 0;
  cursor: pointer;
  color: #303030;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #6b46c1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #4a5568;
  font-size: 1rem;
  padding-left: 10px;
  margin-bottom: 10px;
}

/* When active, expanded */
.faq-item.active .faq-answer {
  max-height: 500px; /* large enough for content */
  padding-top: 10px;
  padding-bottom: 10px;
}

/** Final CTA Section **/
/* Final CTA Section */
.final-cta-section {
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, var(--black) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(255, 69, 0, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(0, 204, 102, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 153, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.final-cta-container {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
  box-sizing: border-box;
}

.final-cta-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  animation: slideUp 1s ease-out;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: translateX(-50%);
}

.final-cta-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  animation: slideUp 1s ease-out 0.2s both;
}

.final-cta-headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: slideUp 1s ease-out 0.3s both;
}

.final-cta-headline .gradient-text {
  background: linear-gradient(
    135deg,
    var(--orange),
    var(--yellow),
    var(--green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: slideUp 1s ease-out 0.4s both;
}

.final-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: slideUp 1s ease-out 0.5s both;
}

.final-cta-button {
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-button.primary {
  background: linear-gradient(135deg, var(--orange), #ff6b35);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(255, 69, 0, 0.3);
}

.final-cta-button.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.final-cta-button.primary:hover::before {
  left: 100%;
}

.final-cta-button.primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 69, 0, 0.4);
}

.final-cta-button.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.final-cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.final-cta-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  animation: slideUp 1s ease-out 0.6s both;
}

.urgency-icon {
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}

.urgency-icon::before {
  content: "✓";
  color: var(--white);
  font-weight: bold;
  font-size: 12px;
}

/* Floating CTA Elements */
.final-cta-floating {
  position: absolute;
  pointer-events: none;
}

.cta-shape-1 {
  top: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-radius: 20px;
  opacity: 0.1;
  animation: floatCTA 8s ease-in-out infinite;
}

.cta-shape-2 {
  bottom: 20%;
  right: 15%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
  opacity: 0.1;
  animation: floatCTA 8s ease-in-out infinite 3s;
}

.cta-shape-3 {
  top: 60%;
  left: 5%;
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 8px;
  opacity: 0.15;
  animation: floatCTA 8s ease-in-out infinite 6s;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes floatShape {
  0%,
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

@keyframes floatCTA {
  0%,
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  33% {
    transform: translate(20px, -20px) rotate(90deg);
  }
  66% {
    transform: translate(-15px, 15px) rotate(180deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-visual {
    order: -1;
    height: 300px;
  }

  .brand-showcase {
    height: 300px;
  }

  .showcase-card {
    width: 150px;
    height: 120px;
    padding: 15px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .stat {
    text-align: center;
  }

  .final-cta-content {
    padding: 40px 25px;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .final-cta-button {
    width: 100%;
    max-width: 300px;
  }

  .final-cta-urgency {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }

  .nav-brand .brand-name {
    font-size: 1.2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-button.large {
    width: 100%;
    max-width: 280px;
  }

  .final-cta-section {
    padding: 60px 0;
  }

  .final-cta-container {
    padding: 0 15px;
  }
}

/** Footer **/
.site-footer {
  width: 100%;
  background-color: #333333;
  color: #ddd;
  padding: 40px 20px 20px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100vw;
  max-width: 100vw;
  margin: 0 0 30px 0;
  padding: 0 20px;
  gap: 30px;
  box-sizing: border-box;
}

.footer-contact,
.footer-links,
.footer-trust {
  flex: 1 1 250px;
}

.footer-contact h3,
.footer-links h3,
.footer-trust h3 {
  margin-bottom: 15px;
  color: #764ba2;
}

.footer-contact a,
.footer-links a {
  color: #ddd;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: #6b46c1;
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-trust .trust-list {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.footer-trust .trust-list li img {
  height: 50px;
  width: auto;
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}

.footer-trust .trust-list li img:hover {
  filter: brightness(1);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #555;
  padding-top: 15px;
  color: #aaa;
  font-size: 0.85rem;
}

/**/
.cta-section {
  width: 100%;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ff4500;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23ff4500;stop-opacity:0" /></linearGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23grad1)"/><circle cx="1000" cy="600" r="400" fill="url(%23grad1)"/></svg>');
  background-size: cover;
  background-position: center;
  animation: backgroundPulse 8s ease-in-out infinite;
}

.cta-container {
  position: relative;
  z-index: 2;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 3rem 2rem;
  text-align: center;
  box-sizing: border-box;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 69, 0, 0.3);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  animation: slideDown 0.8s ease-out;
  backdrop-filter: blur(10px);
}

.cta-badge::before {
  content: "✨";
  font-size: 1rem;
}

.cta-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
  animation: slideUp 0.8s ease-out 0.2s both;
  letter-spacing: -0.02em;
}

.cta-title .highlight {
  background: linear-gradient(135deg, var(--orange) 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.cta-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.7;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.8);
  animation: fadeIn 0.8s ease-out 0.4s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-wrapper {
  margin-bottom: 4rem;
  animation: slideUp 0.8s ease-out 0.6s both;
}

.cta-button {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--orange) 0%, #ff6b35 100%);
  color: var(--white);
  text-decoration: none;
  padding: 1.3rem 3.5rem;
  border-radius: 60px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 20px 40px rgba(255, 69, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(255, 69, 0, 0.3);
}

.cta-button:active {
  transform: translateY(-2px);
}

.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  animation: fadeIn 0.8s ease-out 0.8s both;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 140px;
}

.trust-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 69, 0, 0.3);
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.trust-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.floating-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 69, 0, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

.orb:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.orb:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 70%;
  right: 15%;
  animation-delay: 3s;
}

.orb:nth-child(3) {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(10px, -20px) scale(1.1);
    opacity: 0.1;
  }
}

@keyframes backgroundPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-container {
    padding: 2rem 1.5rem;
  }

  .cta-button {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
  }

  .trust-indicators {
    gap: 1.5rem;
  }

  .trust-item {
    min-width: 120px;
    padding: 1rem;
  }

  .trust-number {
    font-size: 2rem;
  }

  .orb {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-section {
    min-height: 90vh;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-item {
    width: 100%;
    max-width: 200px;
  }
}

/*** Contact Form ****/
.contact-form-container {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  box-sizing: border-box;
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 153, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.form-title {
  color: black;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-subtitle {
  color: var(--gray-dark);
  opacity: 0.7;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gray-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: all 0.3s ease;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 153, 255, 0.1);
  transform: translateY(-2px);
}

.form-input.error,
.form-textarea.error {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.1);
}

.form-textarea {
  min-height: 120px;
  max-height: 300px;
}

.error-message {
  color: var(--orange);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.error-message.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.submit-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 153, 255, 0.3);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: var(--gray-light);
  color: var(--gray-dark);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.success-message {
  background: linear-gradient(135deg, var(--green), #00b359);
  color: var(--white);
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
  display: none;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s ease;
}

.success-message.show {
  display: block;
  opacity: 1;
  transform: scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-title {
    font-size: 1.75rem;
  }

  .form-subtitle {
    font-size: 1rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.875rem 1rem;
  }

  .submit-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 0.5rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .form-title {
    font-size: 1.5rem;
    color: black;
  }

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

/* Loading animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 0.8s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
