/* ===============================
   GLOBAL RESET & BASE
================================ */
/* RESET */

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

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

/* ROOT */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden; /* VERY IMPORTANT */
}

/* CONTAINER SYSTEM */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}


a {
  text-decoration: none;
  color: inherit;
}

/* ===============================
   HEADER
================================ */
/* HEADER LOGO */
.logo img {
  height: 56px;
  width: auto;
  display: block;
}




.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 26, 26, 0.15);
}

.logo {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ff2b2b;
  letter-spacing: 0.5px;
  text-shadow: 0 0 12px rgba(255, 43, 43, 0.8);
}

/* ===============================
   DESKTOP NAV
================================ */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  font-size: 0.95rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff2b2b, #ff6a6a);
  box-shadow: 0 0 14px #ff2b2b;
  transition: width 0.3s ease;
}

.desktop-nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

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

.nav-cta {
  padding: 9px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff2b2b, #ff0000);
  color: #ffffff;
  font-weight: 500;
  box-shadow:
    0 0 25px rgba(255, 43, 43, 0.9),
    0 0 50px rgba(255, 43, 43, 0.6);
}

/* ===============================
   BURGER MENU BUTTON
================================ */
.menu-btn {
  display: none;
  font-size: 1.9rem;
  cursor: pointer;
  color: #ff2b2b;
  text-shadow: 0 0 12px rgba(255, 43, 43, 0.9);
}

/* ===============================
   MOBILE MENU
================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #1a0000, #000);
  transform: translateX(100%);
  transition: transform 0.45s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.menu-overlay.active {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
}

.menu-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff2b2b;
  text-shadow: 0 0 12px rgba(255, 43, 43, 0.9);
}

.close-btn {
  font-size: 2rem;
  cursor: pointer;
  color: #ff2b2b;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 45px 22px;
}

.menu-links a {
  font-size: 1.35rem;
  color: #ffffff;
}

.menu-links a:hover {
  color: #ff2b2b;
  text-shadow: 0 0 12px rgba(255, 43, 43, 0.9);
}

.menu-cta {
  margin-top: auto;
  padding: 22px;
}

.menu-cta a {
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff2b2b, #ff0000);
  box-shadow:
    0 0 30px rgba(255, 43, 43, 1),
    0 0 60px rgba(255, 43, 43, 0.6);
}

/* ===============================
   HERO SECTION
================================ */
.hero {
  min-height: 100vh;
  padding-top: 130px;
  background:
    radial-gradient(circle at top, rgba(255, 43, 43, 0.45), transparent 60%),
    linear-gradient(to bottom, #140000, #000000);
  display: flex;
  align-items: center;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 43, 43, 0.8);
  background: rgba(255, 43, 43, 0.18);
  font-size: 0.75rem;
  margin-bottom: 20px;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(255, 43, 43, 0.8);
}

.hero-badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff2b2b;
  box-shadow: 0 0 12px #ff2b2b;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-title span {
  color: var(--brand-orange);
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 0 18px rgba(255, 122, 0, 0.65);
}

.hero-text {
  max-width: 540px;
  font-size: 1.05rem;
  color: #f5f5f5;
  opacity: 0.95;
  margin-bottom: 34px;
}

/* ===============================
   HERO BUTTONS
================================ */
.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 15px 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, #ff2b2b, #ff0000);
  color: #ffffff;
  font-weight: 500;
  box-shadow:
    0 0 30px rgba(255, 43, 43, 1),
    0 0 60px rgba(255, 43, 43, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 40px rgba(255, 43, 43, 1),
    0 0 80px rgba(255, 43, 43, 0.8);
}

.btn-secondary {
  padding: 15px 30px;
  border-radius: 32px;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  transition: all 0.3s ease;
}

.btn-tertiary {
  padding: 15px 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transition: all 0.3s ease;
}

.btn-tertiary:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
}

/* WhatsApp green hover */
.btn-secondary:hover {
  background: #25d366;
  border-color: #25d366;
  color: #000;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.3rem;
  }
}

/* ===============================
   ABOUT SECTION
================================ */
.about-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #000, #0b0000);
  border-top: 1px solid rgba(255, 43, 43, 0.15);
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left content */
.about-title {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.about-title span {
  color: #ff2b2b;
  text-shadow: 0 0 20px rgba(255, 43, 43, 0.9);
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #f2f2f2;
  opacity: 0.95;
  margin-bottom: 18px;
}

.about-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, #ff2b2b, #ff0000);
  color: #ffffff;
  font-weight: 500;
  box-shadow:
    0 0 30px rgba(255, 43, 43, 1),
    0 0 60px rgba(255, 43, 43, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 40px rgba(255, 43, 43, 1),
    0 0 80px rgba(255, 43, 43, 0.8);
}

/* Right cards */
.about-right {
  display: grid;
  gap: 22px;
}

.about-card {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 43, 43, 0.25);
  box-shadow: 0 0 20px rgba(255, 43, 43, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.about-card p {
  font-size: 0.95rem;
  color: #eaeaea;
  opacity: 0.9;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 30px rgba(255, 43, 43, 0.6),
    0 0 60px rgba(255, 43, 43, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-title {
    font-size: 2.2rem;
  }
}












/* ===============================
   SERVICES SECTION
================================ */
.services-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at top, rgba(255, 43, 43, 0.18), transparent 60%),
    linear-gradient(to bottom, #0b0000, #000);
  border-top: 1px solid rgba(255, 43, 43, 0.15);
}

.services-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.services-title {
  font-size: 2.6rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.services-title span {
  color: #ff2b2b;
  text-shadow: 0 0 20px rgba(255, 43, 43, 0.9);
}

.services-subtitle {
  font-size: 1.05rem;
  color: #f2f2f2;
  opacity: 0.9;
  line-height: 1.6;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

/* Card */
.service-card {
  padding: 34px 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 43, 43, 0.25);
  box-shadow: 0 0 25px rgba(255, 43, 43, 0.25);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(255, 43, 43, 0.7));
}


@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-brand p {
    margin: 0 auto;
  }

}


@media (max-width: 768px) {

  h1, h2 {
    line-height: 1.2;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .contact-intro h2 {
    font-size: 2.1rem;
  }

  .about-title,
  .services-title,
  .portfolio-title {
    font-size: 2rem;
  }

}
@media (max-width: 768px) {

  .contact-intro p,
  .services-header,
  .portfolio-header {
    max-width: 100%;
  }

}



.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.service-card p {
  font-size: 0.95rem;
  color: #eaeaea;
  opacity: 0.9;
  line-height: 1.6;
}

.service-link {
  display: inline-block;
  margin-top: 12px;
  color: #ffb066;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Hover */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 35px rgba(255, 43, 43, 0.6),
    0 0 70px rgba(255, 43, 43, 0.4);
}

/* CTA */
.services-cta {
  text-align: center;
  margin-top: 70px;
}





.services-cta a {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ff2b2b, #ff0000);
  color: #ffffff;
  font-weight: 500;
  box-shadow:
    0 0 35px rgba(255, 43, 43, 1),
    0 0 70px rgba(255, 43, 43, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-cta a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 45px rgba(255, 43, 43, 1),
    0 0 90px rgba(255, 43, 43, 0.85);
}

/* TRUST */
.trust {
  padding: 90px 0;
  background: #0a0000;
  border-top: 1px solid rgba(255, 43, 43, 0.12);
}

.trust-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.trust-container p {
  color: #cfcfcf;
  margin-top: 10px;
}

.trust-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.trust-card {
  padding: 16px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 43, 43, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

/* Responsive */
@media (max-width: 600px) {
  .services-title {
    font-size: 2.2rem;
  }
}

/* AI TRAINING SECTION */
.ai-training-section {
  padding: 120px 6%;
  background: radial-gradient(circle at top, rgba(255, 43, 43, 0.12), transparent 55%),
    linear-gradient(to bottom, #0a0000, #000);
  border-top: 1px solid rgba(255, 43, 43, 0.15);
}

.ai-training-container {
  max-width: 1100px;
  margin: auto;
}

.ai-training-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.ai-training-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 16px 0 14px;
  color: #fff;
}

.ai-training-title span {
  color: #ff2b2b;
  text-shadow: 0 0 20px rgba(255, 43, 43, 0.5);
}

.ai-training-lead {
  color: #cfcfcf;
  line-height: 1.75;
  font-size: 1.05rem;
}

.ai-training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.ai-training-card {
  padding: 28px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 43, 43, 0.28);
  box-shadow: 0 0 24px rgba(255, 43, 43, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-training-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.ai-training-card p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.95;
}

.ai-training-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 36px rgba(255, 43, 43, 0.35);
}

.ai-training-cta {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

@media (max-width: 600px) {
  .ai-training-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .ai-training-cta .btn-secondary {
    text-align: center;
  }
}




/* ===============================
   PORTFOLIO / PROOF SECTION
================================ */
.portfolio-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #000, #0a0000);
  border-top: 1px solid rgba(255, 43, 43, 0.15);
}

.portfolio-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.portfolio-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.portfolio-title {
  font-size: 2.6rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.portfolio-title span {
  color: #ff2b2b;
  text-shadow: 0 0 22px rgba(255, 43, 43, 0.9);
}

.portfolio-subtitle {
  font-size: 1.05rem;
  color: #f2f2f2;
  opacity: 0.9;
  line-height: 1.6;
}

/* Stats */
.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 80px;
}

.stat-box {
  padding: 26px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 43, 43, 0.25);
  box-shadow: 0 0 25px rgba(255, 43, 43, 0.25);
}

.stat-box h3 {
  font-size: 2.1rem;
  color: #ffffff;
  margin-bottom: 6px;
  text-shadow: 0 0 18px rgba(255, 43, 43, 0.8);
}

.stat-box p {
  font-size: 0.95rem;
  color: #eaeaea;
  opacity: 0.9;
}

/* Projects */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portfolio-grid-featured {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  max-width: 940px;
  margin: 0 auto;
}

.project-link {
  display: block;
}

/* CASE STUDIES */
.case-studies {
  padding: 110px 0;
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 43, 43, 0.12);
}

.case-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.case-container p {
  color: #cfcfcf;
  margin-top: 10px;
}

.case-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.case-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 43, 43, 0.2);
  border-radius: 16px;
  padding: 22px;
  text-align: left;
}

.case-card h3 {
  margin-bottom: 10px;
}

.case-card ul {
  list-style: none;
  padding: 0;
  color: #dcdcdc;
}

.case-card li {
  margin-bottom: 8px;
}

.project-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 43, 43, 0.25);
  box-shadow: 0 0 30px rgba(255, 43, 43, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-image {
  height: 190px;
  background:
    linear-gradient(135deg, #1a0000, #000),
    radial-gradient(circle at top, rgba(255, 43, 43, 0.3), transparent 60%);
}

.project-info {
  padding: 22px;
}

.project-info h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #ffffff;
}

.project-info p {
  font-size: 0.95rem;
  color: #eaeaea;
  opacity: 0.9;
}

/* Hover */
.project-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 40px rgba(255, 43, 43, 0.6),
    0 0 80px rgba(255, 43, 43, 0.4);
}

/* Responsive */
@media (max-width: 1000px) {
  .portfolio-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-stats,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid-featured {
    max-width: 100%;
  }

  .portfolio-title {
    font-size: 2.2rem;
  }
}




/* ===============================
   PORTFOLIO CARD ADVANCED EFFECTS
================================ */

/* Card base */
.project-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

/* Animated border line */
.project-card .border-anim {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff2b2b,
    transparent
  );
  background-size: 300% 300%;
  opacity: 0;
  pointer-events: none;
}

.project-card:hover .border-anim {
  opacity: 1;
  animation: borderRun 1.5s linear infinite;
}

@keyframes borderRun {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* Image container */
.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 43, 43, 0.2);
}

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

/* Soft red glow overlay */
.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 43, 43, 0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover effects */
.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-card:hover .project-image::after {
  opacity: 1;
}

/* Lift effect refined */
.project-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 30px rgba(255, 43, 43, 0.5),
    0 0 70px rgba(255, 43, 43, 0.35),
    inset 0 0 0 rgba(255,255,255,0);
}

/* Info polish */
.project-info {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
}





/* ===============================
   TRAINING – AUTHORITY STYLE
================================ */

.training {
  padding: 120px 6%;
  background: linear-gradient(
    to bottom,
    #0b0b0b,
    #000000
  );
}

.training-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.training-header {
  max-width: 650px;
}

.training-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
}

.training-header h2 span {
  color: #ff2b2b;
}

.training-header p {
  color: #cfcfcf;
  line-height: 1.7;
}

/* Path layout */
.training-path {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

/* Vertical line */
.training-path::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    #ff2b2b,
    transparent
  );
  opacity: 0.4;
}

/* Item */
.path-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Step number */
.path-step {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff2b2b;
  background: rgba(255, 43, 43, 0.15);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Content */
.path-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.path-content p {
  color: #cfcfcf;
  line-height: 1.7;
  max-width: 600px;
}

/* CTA */
.training-cta {
  margin-top: 70px;
}


/* ===== HEADER MOBILE ===== */
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-btn { display: block; }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
  }
}


/* ===============================
   TRAINING – PREMIUM AUTHORITY
================================ */

.training {
  padding: 120px 6%;
  background: radial-gradient(
    circle at top,
    rgba(255, 43, 43, 0.08),
    transparent 40%
  ),
  linear-gradient(to bottom, #0b0b0b, #000);
}

.training-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.training-header {
  max-width: 650px;
}

.training-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
}

.training-header h2 span {
  color: #ff2b2b;
}

.training-header p {
  color: #cfcfcf;
  line-height: 1.7;
}

/* Timeline */
.training-timeline {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
}

.training-timeline::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 43, 43, 0.5),
    transparent
  );
}

/* Item */
.timeline-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.timeline-item:nth-child(2) { animation-delay: 0.15s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.45s; }

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

/* Icon */
.timeline-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 43, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff2b2b;
  font-size: 1.8rem;
  flex-shrink: 0;
  position: relative;
}

.timeline-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 43, 43, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.timeline-item:hover .timeline-icon::after {
  opacity: 1;
}

/* Content */
.timeline-content h4 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #cfcfcf;
  line-height: 1.7;
  max-width: 600px;
}

/* CTA */
.training-cta {
  margin-top: 80px;
}


/* ===============================
   TESTIMONIALS – TRUST & PROOF
================================ */

.testimonials {
  padding: 120px 6%;
  background: linear-gradient(
    to bottom,
    #000,
    #0b0b0b
  );
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.testimonials-header {
  max-width: 650px;
}

.testimonials-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
}

.testimonials-header h2 span {
  color: #ff2b2b;
}

.testimonials-header p {
  color: #cfcfcf;
  line-height: 1.7;
}

/* Grid */
.testimonials-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* LEAD MAGNET */
.lead-magnet {
  padding: 90px 0;
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 43, 43, 0.12);
}

.lead-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lead-copy p {
  color: #cfcfcf;
}

.lead-download {
  padding: 14px 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff2b2b, #ff0000);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 25px rgba(255, 43, 43, 0.6);
}

.booking-link {
  color: #ff2b2b;
  font-weight: 600;
}

/* Card */
.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 43, 43, 0.5),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 30px rgba(255, 43, 43, 0.35),
    0 0 60px rgba(255, 43, 43, 0.2);
}

/* Quote mark */
.testimonial-quote {
  font-size: 4rem;
  color: rgba(255, 43, 43, 0.3);
  position: absolute;
  top: 20px;
  right: 25px;
}

/* Text */
.testimonial-text {
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 43, 43, 0.2);
  color: #ff2b2b;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-user h4 {
  font-size: 1rem;
}

.testimonial-user span {
  font-size: 0.9rem;
  color: #aaa;
}





/* ===============================
   CONTACT SECTION
================================ */

.contact-section {
  padding: 120px 20px;
  background: linear-gradient(160deg, #0b0b0b, #000);
  color: #fff;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* INTRO */
.contact-intro .contact-tag {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(255, 0, 0, 0.12);
  color: #ff2b2b;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-intro h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-intro h2 span {
  color: #ff2b2b;
}

.contact-intro p {
  color: #cfcfcf;
  font-size: 1.05rem;
  max-width: 480px;
}

/* FORM */
.contact-form {
  background: #0f0f0f;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #aaa;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px;
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.form-group textarea {
  min-height: 120px;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff2b2b;
  box-shadow: 0 0 10px rgba(255, 43, 43, 0.5);
  outline: none;
}

/* SUBMIT BUTTON */
.submit-btn {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff2b2b, #ff0000);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.submit-btn i {
  font-style: normal;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.submit-btn:hover {
  box-shadow: 0 0 35px rgba(255, 43, 43, 0.9);
  transform: translateY(-2px);
}

.submit-btn:hover::before {
  transform: translateX(100%);
}

.submit-btn:hover i {
  transform: translateX(6px);
}

/* ===============================
   SCROLL REVEAL HELPERS
================================ */
.fade-up,
.fade-left,
.fade-right,
.zoom-in {
  opacity: 0;
  transition: all 0.7s ease;
}

.fade-up { transform: translateY(24px); }
.fade-left { transform: translateX(-24px); }
.fade-right { transform: translateX(24px); }
.zoom-in { transform: scale(0.96); }

.show {
  opacity: 1;
  transform: none;
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #000;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.7);
  z-index: 9999;
  animation: whatsappPulse 2.5s infinite;
  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

/* ANIMATION */
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 25px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 rgba(37,211,102,0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}



/* FLOATING WHATSAPP ICON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
  z-index: 9999;
  animation: floatUpDown 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* ONLINE DOT */
.online-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: #00ff66;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulseDot 1.5s infinite;
}

/* ANIMATIONS */
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 rgba(0,255,102,0.7); }
  70% { box-shadow: 0 0 10px rgba(0,255,102,0); }
  100% { box-shadow: 0 0 0 rgba(0,255,102,0); }
}


/* ===============================
   FOOTER
================================ */

.footer {
  background: #070707;
  color: #cfcfcf;
  padding: 80px 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}

/* BRAND */
.footer-brand h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 420px;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1rem;
}

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

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

.footer-links a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff2b2b;
}

/* CONTACT */
.footer-contact a {
  color: #ff2b2b;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.icon-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* COPYRIGHT */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .form-group.full {
    grid-column: 1 / -1;
  }

}


/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }
}


.footer-logo {
  margin-bottom: 18px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

/* ===============================
   UI ENHANCEMENTS
================================ */
.theme-toggle {
  margin-left: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 43, 43, 0.5);
  background: rgba(255, 43, 43, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255, 43, 43, 0.6);
}

.theme-icon {
  font-size: 0.95rem;
}

.section-divider {
  width: 100%;
  line-height: 0;
  background: transparent;
}

.section-divider svg {
  width: 100%;
  height: 80px;
  display: block;
  fill: rgba(255, 43, 43, 0.08);
}

/* Hero animated mesh */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 140%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 43, 43, 0.35), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.12), transparent 45%),
    radial-gradient(circle at 60% 70%, rgba(255, 43, 43, 0.25), transparent 50%);
  animation: meshFloat 14s ease-in-out infinite;
  z-index: 0;
}

.hero::after {
  animation-duration: 18s;
  opacity: 0.6;
}

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

@keyframes meshFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.02); }
}

/* Tilt cards */
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  will-change: transform;
}

/* Testimonials slider */
.testimonials-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonials-track .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  scroll-snap-align: start;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 43, 43, 0.5);
  background: rgba(255, 43, 43, 0.12);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255, 43, 43, 0.6);
}

.slider-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 43, 43, 0.6);
  cursor: pointer;
}

.slider-dot.active {
  background: #ff2b2b;
  box-shadow: 0 0 10px rgba(255, 43, 43, 0.9);
}

@media (max-width: 900px) {
  .testimonials-slider {
    flex-direction: column;
    align-items: stretch;
  }

  .slider-btn {
    display: none;
  }

  .testimonials-track {
    gap: 18px;
  }

  .testimonials-track .testimonial-card {
    scroll-snap-align: center;
    flex: 0 0 85%;
  }
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translate(-50%, 12px);
  background: linear-gradient(135deg, #ff2b2b, #ff0000);
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 0 25px rgba(255, 43, 43, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9998;
}

.sticky-cta a {
  color: #fff;
  font-weight: 700;
}

.sticky-cta.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Form feedback */
.form-feedback {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: #aaa;
  min-height: 18px;
}

.stat-suffix {
  margin-left: 2px;
}

.form-feedback.error {
  color: #ff9a9a;
}

.form-feedback.success {
  color: #7dffb3;
}

.input-error {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 12px rgba(255, 107, 107, 0.35);
}

/* Light theme overrides */
body.theme-light {
  background: #f8f8f8;
  color: #111;
}

body.theme-light .header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.theme-light .desktop-nav a,
body.theme-light .menu-links a,
body.theme-light .contact-intro h2,
body.theme-light .services-title,
body.theme-light .portfolio-title,
body.theme-light .about-title,
body.theme-light .hero-title,
body.theme-light .testimonials-header h2 {
  color: #111;
}

body.theme-light .hero,
body.theme-light .about-section,
body.theme-light .services-section,
body.theme-light .portfolio-section,
body.theme-light .trust,
body.theme-light .case-studies,
body.theme-light .lead-magnet,
body.theme-light .training,
body.theme-light .ai-training-section,
body.theme-light .testimonials,
body.theme-light .contact-section,
body.theme-light .footer {
  background: #f8f8f8;
}

body.theme-light .about-card,
body.theme-light .service-card,
body.theme-light .project-card,
body.theme-light .testimonial-card,
body.theme-light .trust-card,
body.theme-light .case-card,
body.theme-light .ai-training-card,
body.theme-light .contact-form {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

body.theme-light .about-text,
body.theme-light .services-subtitle,
body.theme-light .portfolio-subtitle,
body.theme-light .testimonial-text,
body.theme-light .contact-intro p {
  color: #444;
}

body.theme-light .hero-text,
body.theme-light .about-card p,
body.theme-light .service-card p,
body.theme-light .project-info p,
body.theme-light .stat-box p,
body.theme-light .testimonial-user span,
body.theme-light .footer-links a,
body.theme-light .trust-container p,
body.theme-light .case-container p,
body.theme-light .case-card ul,
body.theme-light .lead-copy p {
  color: #444;
}

body.theme-light .ai-training-title {
  color: #111;
}

body.theme-light .ai-training-lead,
body.theme-light .ai-training-card p {
  color: #444;
}

body.theme-light .ai-training-card h3 {
  color: #111;
}

body.theme-light .hero-badge {
  color: #111;
  border-color: rgba(255, 43, 43, 0.35);
  background: rgba(255, 43, 43, 0.1);
  box-shadow: 0 0 12px rgba(255, 43, 43, 0.2);
}

body.theme-light .hero-title span {
  color: #d65f00;
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}

body.theme-light .btn-secondary {
  border-color: #111;
  color: #111;
}

body.theme-light .btn-tertiary {
  border-color: rgba(0, 0, 0, 0.25);
  color: #111;
  background: rgba(0, 0, 0, 0.04);
}

body.theme-light .contact-form,
body.theme-light .form-group input,
body.theme-light .form-group select,
body.theme-light .form-group textarea {
  background: #fff;
  border-color: #d6d6d6;
  color: #111;
}

body.theme-light .form-group label {
  color: #555;
}

body.theme-light .form-group input::placeholder,
body.theme-light .form-group textarea::placeholder {
  color: #777;
}

body.theme-light .footer-links h4,
body.theme-light .footer-contact h4,
body.theme-light .footer-bottom {
  color: #333;
}

body.theme-light .footer {
  color: #333;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body.theme-light .section-divider svg {
  fill: rgba(255, 43, 43, 0.12);
}

/* ===============================
   BRAND ORANGE OVERRIDES
================================ */
:root {
  --brand-orange: #ff7a00;
  --brand-orange-deep: #e56600;
  --brand-orange-soft: #ffb066;
}

.header,
.about-section,
.services-section,
.portfolio-section,
.ai-training-section,
.testimonials,
.contact-section,
.footer,
.case-studies,
.lead-magnet,
.trust,
.training {
  border-color: rgba(255, 122, 0, 0.16);
}

.logo,
.menu-logo,
.close-btn,
.menu-btn,
.about-title span,
.services-title span,
.portfolio-title span,
.ai-training-title span,
.training-header h2 span,
.testimonials-header h2 span,
.footer-contact a,
.booking-link,
.section-tag,
.tag {
  color: var(--brand-orange);
}

.nav-cta,
.menu-cta a,
.btn-primary,
.about-btn,
.services-cta a,
.lead-download,
.submit-btn,
.sticky-cta,
.featured .tag {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-deep));
}

.hero-badge,
.theme-toggle,
.slider-btn {
  border-color: rgba(255, 122, 0, 0.55);
  background: rgba(255, 122, 0, 0.12);
}

.desktop-nav a::after {
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-soft));
}

.about-card,
.service-card,
.project-card,
.testimonial-card,
.trust-card,
.case-card,
.ai-training-card,
.stat-box,
.contact-form,
.faq-item,
.price-card,
.lead-card {
  border-color: rgba(255, 122, 0, 0.22);
}

.hero,
.services-section,
.ai-training-section,
.pricing-section,
.lead-form,
.final {
  background-image: radial-gradient(circle at top, rgba(255, 122, 0, 0.12), transparent 60%);
}

.project-card .border-anim {
  background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
}

.slider-dot.active {
  background: var(--brand-orange);
  box-shadow: 0 0 10px rgba(255, 122, 0, 0.9);
}

body.theme-light .logo img {
  height: 70px;
}

body.theme-light .footer-logo img {
  height: 76px;
}

/* ===============================
   PHASE 2 PROFESSIONAL SECTIONS
================================ */
.client-logos {
  padding: 80px 0;
  background: #090909;
  border-top: 1px solid rgba(255, 122, 0, 0.18);
}

.logo-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.logo-strip span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 122, 0, 0.24);
  color: #f0f0f0;
  font-size: 0.9rem;
}

.process-section,
.pricing-guidance,
.faq-home {
  padding: 110px 0;
  background: linear-gradient(to bottom, #080808, #000);
  border-top: 1px solid rgba(255, 122, 0, 0.16);
}

.process-grid,
.price-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.process-card,
.price-guide-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 122, 0, 0.22);
  border-radius: 16px;
  padding: 24px;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.16);
  color: #ffb066;
  font-weight: 700;
  margin-bottom: 10px;
}

.price-guide-card .price-range {
  margin: 8px 0 14px;
  color: #d7d7d7;
}

.price-guide-card ul {
  list-style: none;
  color: #d2d2d2;
}

.price-guide-card li {
  margin-bottom: 8px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item-home {
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 16px;
}

.faq-item-home summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-item-home p {
  margin-top: 10px;
  color: #cbcbcb;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 820px) {
  .mobile-contact-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    border-top: 1px solid rgba(255, 122, 0, 0.3);
    background: #0a0a0a;
  }

  .mobile-contact-bar a {
    text-align: center;
    padding: 12px 8px;
    font-size: 0.9rem;
    color: #fff;
    border-right: 1px solid rgba(255, 122, 0, 0.2);
  }

  .mobile-contact-bar a:last-child {
    border-right: none;
  }

  body {
    padding-bottom: 52px;
  }
}


