/* Reset and Base Styles */
/* Custom Fonts */
@font-face {
  font-family: "Neulis Bold";
  src: url("../fonts/NeulisAlt-Bold.woff") format("woff");
  /* font-weight: 400; */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neulis Regular";
  src: url("../fonts/NeulisAlt-Regular.woff") format("woff");
  /* font-weight: 700; */
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #f6a243;
  --dark-bg: #191a23;
  --white: #ffffff;
  --gray: #f3f3f3;
  --text-dark: #000000;
  --text-gray: #898989;
  --orange: #f6a243;
}

body {
  font-family: "Neulis Regular", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Headings will automatically use Bold (700) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Neulis Bold", sans-serif !important;
  font-weight: 700; /* Bold */
}

/* Paragraphs use Regular (400) */
p {
  font-family: "Neulis Regular", sans-serif !important;
  font-weight: 400; /* Regular */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation */
.header {
  background: var(--white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-btn {
  text-decoration: none;
  background: transparent;
  color: black;
  border: 1px solid black;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-btn:hover {
  background: #060606;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(185, 255, 102, 0.3);
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-orange);
}

.cta-button {
  text-decoration: none;
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.cta-button:hover {
  background: #060606;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(185, 255, 102, 0.3);
  color: white;
}

.cta-button.large {
  padding: 10px 30px;
  font-size: 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: var(--white);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.trust-badges {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.trust-badges img {
  height: auto;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.character-illustration img {
  width: 100%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Proof Section */
.proof-section {
  padding: 80px 0;
  background: #f6a243;
  overflow: hidden;
}

.container-full {
  max-width: 100%;
  padding: 0 40px;
}

.proof-section h2 {
  color: var(--white);
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-slider {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.testimonial-left {
  background: #000;
  position: relative;
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-controls {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px;
  border-radius: 8px;
}

.video-controls button {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 14px;
  padding: 5px;
}

.video-time {
  color: white;
  font-size: 12px;
  margin-left: auto;
}

.play-btn {
  font-size: 16px !important;
}

.testimonial-right {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: auto; /* Default auto */
}

/* Only apply fixed width on larger screens */
@media (min-width: 1201px) {
  .testimonial-right {
    width: 620px;
  }
}

.stars {
  color: #f6a243;
  font-size: 18px;
  margin-bottom: 15px;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.client-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.see-all {
  color: #f6a243;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
}

.see-all:hover {
  opacity: 0.8;
}

/* Slider Arrows */
.slider-arrow {
  background: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  flex-shrink: 0;
  z-index: 10;
}

.slider-arrow:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}

.slider-arrow:active {
  transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--white);
  width: 30px;
  border-radius: 6px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1200px) {
  .testimonial-card {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
    grid-template-columns: 1fr;
  }

  .testimonial-left {
    height: 300px;
  }

  .testimonial-right {
    padding: 30px 20px;
    width: 100%;
  }

  .proof-section h2 {
    font-size: 32px;
  }

  .review-text {
    font-size: 14px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .container-full {
    padding: 0 20px;
  }
}

/* Features Section */
.features-section {
  padding: 80px 0 0 0;
  background: #fff;
}

.features-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.2;
}

.feature-detail {
  margin-bottom: 100px !important;
}

.feature-image {
  text-align: center;
  padding: 20px;
}

.feature-image img {
  max-width: 100%;
  height: auto;
}

.feature-text {
  padding: 20px;
}

.feature-text h3 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.feature-text > p {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.feature-list li {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-orange);
  margin-bottom: 10px;
  margin-top: 20px;
}

.feature-list p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 0;
  margin-top: 8px;
  line-height: 1.6;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 991px) {
  .features-section h2 {
    font-size: 32px;
    margin-bottom: 60px;
  }

  .feature-detail {
    margin-bottom: 60px !important;
  }

  .feature-text h3 {
    font-size: 28px;
  }

  .feature-text > p {
    font-size: 16px;
  }

  .feature-list li {
    font-size: 16px;
  }

  .feature-list p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .features-section h2 {
    font-size: 26px;
  }

  .feature-text h3 {
    font-size: 24px;
  }

  .feature-image,
  .feature-text {
    padding: 10px;
  }
}

/* Trades Section */
.trades-section {
  padding: 0;
  background: var(--white);
}

.trades-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.trades-slider-wrapper {
  position: relative;
  padding: 0 80px;
  margin: 0 auto;
  max-width: 100%;
}

.trades-slider-container {
  overflow: hidden;
  width: 100%;
}

.trades-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.trades-page {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 10px;
}

/* Force 3 columns layout - Override Bootstrap */
.trades-page .row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
  margin: 0 !important;
}

.trades-page .col-lg-4,
.trades-page .col-md-6 {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  flex: none !important;
}

.trade-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.trade-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.trade-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--gray);
  flex-shrink: 0;
}

.trade-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trade-card h4 {
  text-align: center;
  padding: 20px 15px;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Trade Arrows */
.trade-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(246, 163, 68, 0.3);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  font-size: 28px;
  color: var(--primary-orange);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trade-arrow:hover:not(:disabled) {
  background: var(--primary-orange);
  color: var(--white);
}

.trade-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(246, 163, 68, 0.1);
}

.trade-prev {
  left: 0;
}

.trade-next {
  right: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .trades-slider-wrapper {
    padding: 0 60px;
  }

  .trades-page .row {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .trade-arrow {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .trade-image-wrapper {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .trades-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .trades-slider-wrapper {
    padding: 0 50px;
  }

  .trades-page .row {
    grid-template-columns: 1fr !important;
  }

  .trade-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .trade-prev {
    left: 5px;
  }

  .trade-next {
    right: 5px;
  }

  .trade-image-wrapper {
    height: 180px;
  }

  .trade-card h4 {
    font-size: 16px;
    padding: 15px 10px;
  }
}

@media (max-width: 480px) {
  .trades-slider-wrapper {
    padding: 0 45px;
  }

  .trade-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .trade-image-wrapper {
    height: 160px;
  }
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: var(--white);
}

.process-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 80px;
}

.process-wrapper {
  position: relative;
}

/* Connecting Line */
.process-wrapper::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--primary-orange) 0%,
    var(--primary-orange) 25%,
    #e0e0e0 25%,
    #e0e0e0 50%,
    var(--primary-orange) 50%,
    var(--primary-orange) 75%,
    #e0e0e0 75%,
    #e0e0e0 100%
  );
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 120px;
  height: 120px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(246, 163, 68, 0.3);
}

.step h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary-orange);
  line-height: 1.3;
}

.time-subtitle {
  display: block;
  font-size: 20px;
  color: var(--primary-orange);
  margin-top: 5px;
}

.step p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  max-width: 350px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {
  .process-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .process-wrapper::before {
    display: none;
  }

  .step-number {
    width: 100px;
    height: 100px;
    font-size: 42px;
  }

  .step h3 {
    font-size: 22px;
  }

  .step {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .process-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .step-number {
    width: 80px;
    height: 80px;
    font-size: 36px;
  }

  .step h3 {
    font-size: 20px;
  }

  .time-subtitle {
    font-size: 18px;
  }

  .step p {
    font-size: 15px;
  }

  .step {
    margin-bottom: 40px;
  }
}

/* Unique Section */
.unique-section {
  padding: 80px 0 0 0;
  background: var(--white);
}

.unique-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
}

.unique-card {
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.unique-card:hover {
  transform: translateY(-5px);
}

.unique-card.dark {
  background: #1e2135;
  color: var(--white);
}

.unique-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--white);
  opacity: 0.9;
}

.unique-icon svg {
  width: 100%;
  height: 100%;
}

.unique-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--white);
}

.unique-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.85;
  margin: 0;
}

.unique-card .highlight {
  color: var(--primary-orange);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
  .unique-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .unique-card {
    padding: 35px 25px;
  }

  .unique-card h4 {
    font-size: 22px;
  }

  .unique-card p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .unique-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .unique-card {
    padding: 30px 20px;
  }

  .unique-icon {
    width: 50px;
    height: 50px;
  }

  .unique-card h4 {
    font-size: 20px;
  }

  .unique-card p {
    font-size: 14px;
  }
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background: var(--white);
}

.partners-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.3;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
  min-height: 100px;
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .partners-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .partner-logo {
    min-height: 80px;
  }

  .partner-logo img {
    max-height: 60px;
  }
}

@media (max-width: 767px) {
  .partners-section {
    padding: 60px 0;
  }

  .partners-section h2 {
    font-size: 28px;
    margin-bottom: 50px;
  }

  .partner-logo {
    padding: 15px;
    min-height: 70px;
  }

  .partner-logo img {
    max-height: 50px;
  }
}

@media (max-width: 575px) {
  .partners-section h2 {
    font-size: 24px;
  }

  .partner-logo {
    min-height: 60px;
  }

  .partner-logo img {
    max-height: 40px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.faq-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Orange background ONLY when active */
.faq-item.active {
  background: var(--primary-orange);
}

.faq-item.active .faq-question h4 {
  color: var(--white);
}

.faq-item.active .faq-toggle {
  color: var(--white);
}

.faq-item.active .faq-answer p {
  color: var(--white);
  opacity: 0.95;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-question:hover {
  opacity: 0.9;
}

.faq-question h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding-right: 20px;
  color: var(--text-dark);
  transition: color 0.3s;
}

.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    color 0.3s;
  color: var(--text-dark);
}

.faq-toggle svg {
  width: 100%;
  height: 100%;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .faq-question {
    padding: 20px 25px;
  }

  .faq-question h4 {
    font-size: 17px;
  }

  .faq-answer p {
    padding: 0 25px 20px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question h4 {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 20px 18px;
    font-size: 14px;
  }

  .faq-toggle {
    width: 20px;
    height: 20px;
  }
}

/* Truth Section */
.truth-section {
  padding: 80px 0;
  background: var(--dark-bg);
  color: var(--white);
  text-align: center;
}

.truth-section h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

.truth-section p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Final CTA */
.final-cta {
  padding: 60px 0;
  background: var(--primary-orange);
  border-radius: 30px;
  margin: 0 20px 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 500px;
}

.cta-button-white {
  text-decoration: none;
  background: var(--white);
  color: var(--primary-orange);
  border: none;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-characters {
  text-align: center;
  position: relative;
}

.cta-characters img {
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .final-cta {
    margin: 0 15px 60px 15px;
    padding: 50px 30px;
  }

  .cta-content h2 {
    font-size: 38px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-characters {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .final-cta {
    margin: 0 10px 40px 10px;
    padding: 40px 20px;
    border-radius: 20px;
  }

  .cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .cta-content p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .cta-button-white {
    width: 100%;
    justify-content: center;
    padding: 12px 30px;
    font-size: 16px;
  }

  .cta-characters {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 14px;
  }
}

/* Footer */
.footer {
  background: #2a2c3f;
  color: var(--white);
  padding: 50px 0 30px;
}

/* Footer Header */
.footer-header {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer-cta {
  text-align: right;
}

.footer-cta h4 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-cta .cta-button {
  background: var(--primary-orange);
  color: var(--white);
  padding: 12px 30px;
}

/* Footer Main */
.footer-main {
  padding: 40px 0;
}

.footer-left h3 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.3;
}

.footer-left .cta-button {
  background: var(--white);
  color: var(--primary-orange);
  padding: 12px 30px;
}

.footer-left .cta-button:hover {
  background: #f0f0f0;
}

.footer-col h5 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s;
  font-size: 15px;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-col ul:not(.products-list) li {
  font-size: 15px;
  opacity: 0.7;
}

/* Products list in 2 columns */
.products-list {
  column-count: 2;
  column-gap: 20px;
}

.products-list li {
  font-size: 15px;
  opacity: 0.7;
  break-inside: avoid;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  opacity: 0.6;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-cta {
    text-align: left;
    margin-top: 30px;
  }

  .footer-cta h4 {
    font-size: 24px;
  }

  .footer-left h3 {
    font-size: 28px;
  }

  .footer-main {
    padding: 30px 0;
  }

  .footer-left {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 40px 0 30px;
  }

  .footer-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .footer-cta h4 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .footer-left h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .footer-col {
    margin-bottom: 30px;
  }

  .products-list {
    column-count: 1;
  }

  .footer-cta .cta-button,
  .footer-left .cta-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-cta h4 {
    font-size: 20px;
  }

  .footer-left h3 {
    font-size: 22px;
  }

  .footer-col h5 {
    font-size: 16px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 36px;
  }

  .grid,
  .trades-grid,
  .process-steps,
  .unique-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content,
  .feature-detail,
  .testimonial-cards,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .grid,
  .trades-grid,
  .process-steps,
  .unique-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .final-cta .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-characters {
    margin-top: 40px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Style */
::selection {
  background: var(--primary-orange);
  color: var(--text-dark);
}

/* Mobile Navigation Fix */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    gap: 20px;
  }

  .nav-menu.active {
    display: flex;
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Header button responsive */
  .header-btn {
    display: none;
  }

  .nav-menu.active ~ .header-btn {
    display: inline-flex;
    margin: 20px auto;
  }
}

/* Testimonial Card Responsive Fix */
@media (max-width: 1200px) {
  .testimonial-card {
    min-width: calc(50% - 15px);
  }

  .testimonial-right {
    width: auto; /* Remove fixed width on tablet */
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
    grid-template-columns: 1fr;
  }

  .testimonial-left {
    height: 300px;
  }

  .testimonial-right {
    padding: 30px 20px;
    width: 100%; /* Full width on mobile */
  }

  .proof-section h2 {
    font-size: 32px;
  }

  .review-text {
    font-size: 14px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .container-full {
    padding: 0 20px;
  }

  /* Hero Section Mobile */
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  /* Other sections mobile */
  .feature-detail {
    grid-template-columns: 1fr;
  }

  .grid,
  .trades-grid,
  .process-steps,
  .unique-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .final-cta .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-characters {
    margin-top: 40px;
  }
}

/* Tablet Responsive (between 768px and 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
  .testimonial-right {
    width: auto;
    max-width: 100%;
  }

  .testimonial-card {
    grid-template-columns: 180px 1fr;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .proof-section h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .testimonial-right {
    padding: 20px 15px;
  }

  .review-text {
    font-size: 13px;
  }

  .stars {
    font-size: 16px;
  }

  .slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .cta-button.large {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* Pricing Hero Section */
.pricing-hero {
  padding: 80px 0;
  background: #f5f5f5;
}

.pricing-left h1 {
  font-size: 48px;
  margin-bottom: 30px;
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.toggle-label {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s;
}

.toggle-label.active {
  color: var(--text-dark);
  font-weight: 600;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-orange);
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* Pricing Plan */
.pricing-plan {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
}

.plan-header {
  background: #2a2c3f;
  color: var(--white);
  padding: 20px 25px;
  text-align: center;
}

.plan-header h3 {
  font-size: 22px;
  margin: 0;
}

/* Pricing Accordion */
.pricing-accordion {
  padding: 0;
}

.accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #f9f9f9;
}

.accordion-header span {
  font-size: 16px;
  font-weight: 500;
}

.accordion-header svg {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 25px;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 25px 20px;
}

.accordion-content .lead-text {
  font-weight: 600;
  margin-bottom: 15px;
}

.accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.accordion-content ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: bold;
}

/* Popular Card */
.pricing-right {
  position: sticky;
  top: 100px;
}

.popular-card {
  background: var(--primary-orange);
  border-radius: 10px;
  padding: 30px;
  color: var(--white);
  text-align: center;
}

.popular-badge {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.popular-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--white);
}

.price {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
}

.price span {
  font-size: 24px;
  font-weight: 400;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  text-align: left;
}

.features-list li {
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.features-list li:last-child {
  border-bottom: none;
}

.cta-button-white-2 {
  text-decoration: none;
  background: transparent;
  color: white;
  border: 2px solid var(--white);
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.cta-button-white-2 img {
  height: 20px;
  width: 20px;
}

.cta-button-white-2:hover {
  background: #0c0a0a;
  color: var(--white);
  border-color: #f5a143;
}

/* Responsive */
@media (max-width: 991px) {
  .pricing-hero {
    padding: 60px 0;
  }

  .pricing-left h1 {
    font-size: 38px;
  }

  .pricing-right {
    margin-top: 50px;
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  .pricing-left h1 {
    font-size: 32px;
  }

  .popular-card {
    padding: 30px 20px;
  }

  .price {
    font-size: 38px;
  }
}

/* Services Page Section */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

.services-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.service-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-item h4 {
  text-align: center;
  padding: 20px 10px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 991px) {
  .services-section {
    padding: 60px 0;
  }

  .services-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .service-image {
    height: 220px;
  }

  .service-item h4 {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .services-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .service-image {
    height: 200px;
  }

  .service-item h4 {
    font-size: 16px;
    padding: 15px 10px 0;
  }
}

@media (max-width: 480px) {
  .service-image {
    height: 180px;
  }
}

/* All Trades by Category Section */
.all-trades-section {
  padding: 80px 0;
  background: var(--white);
}

.all-trades-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
}

.trades-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trades-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
  transition: color 0.3s;
}

.trades-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--primary-orange);
  border-radius: 50%;
}

.trades-list li:hover {
  color: var(--primary-orange);
  cursor: pointer;
}

/* Responsive */
@media (max-width: 991px) {
  .all-trades-section {
    padding: 60px 0;
  }

  .all-trades-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .trades-list li {
    font-size: 15px;
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  .all-trades-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .trades-list li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .all-trades-section .col-md-6 {
    margin-bottom: 30px;
  }

  .all-trades-section .col-md-6:last-child {
    margin-bottom: 0;
  }
}

/* Testimonials Page */
/* Testimonials Video Grid Section */
.testimonials-grid-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonials-grid-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
}

.testimonial-video-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 aspect ratio for vertical video */
  background: #000;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.video-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}

.testimonial-video-card:hover .play-overlay {
  opacity: 1;
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-orange);
  padding-left: 5px;
  transition: all 0.3s;
}

.play-button:hover {
  background: var(--white);
  transform: scale(1.1);
}

.video-timestamp {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.testimonial-stars {
  color: var(--primary-orange);
  font-size: 16px;
  padding: 15px 20px 10px;
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  padding: 0 20px;
  margin-bottom: 15px;
  flex-grow: 1;
}

.client-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0 20px 20px;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .testimonials-grid-section {
    padding: 60px 0;
  }

  .testimonials-grid-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .testimonials-grid-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .testimonial-quote {
    font-size: 13px;
  }

  .client-name {
    font-size: 13px;
  }
}
