/* ==========================================
   RESET & BASE STYLES
========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================
 FULL PAGE BUTTON STYLES
========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 18px 40px;
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
  color: #000;
  text-decoration: none;
  font-size: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(255, 138, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  min-width: 220px;
  text-align: center;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 138, 0, 0.5);
  color: #000;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.7s;
  z-index: -1;
}

.btn:hover::after {
  left: 100%;
}

.btn i {
  margin-left: 10px;
  transition: transform 0.3s;
}

.btn:hover i {
  transform: translateX(5px);
}

/* ==========================================
   FULL PAGE SECTION TITLE & DESCRIPTION 
========================================== */

.section-badge {
  display: inline-block;
  background: rgba(255, 138, 0, 0.15);
  color: #ff8a00;
  padding: 0.5rem 1.25rem;
  border-radius: 1.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 138, 0, 0.3);
  animation: pulse 2s infinite;
  text-align: center !important;
  align-items: center;
  max-width: 90%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.625rem;
  font-weight: 800;
  margin-bottom: 1.5625rem;
  margin-top: 1.25rem;
  line-height: 1.2;
  background: linear-gradient(90deg, #fff, #ffb357);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
  width: 100%;
  box-sizing: border-box;
}

.subtitle {
  font-size: 1.375rem;
  color: #ff8a00;
  margin: 2.5rem 0 1.875rem 0;
  font-weight: 600;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
  width: 100%;
  box-sizing: border-box;
}

.section-desc {
  font-size: 1.125rem;
  color: #dcdcdc;
  margin-bottom: 2.1875rem;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
  width: 100%;
  box-sizing: border-box;
}

.all-section {
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Tablet - Large Devices (992px and below) */
@media (max-width: 62rem) {
  .section-title {
    font-size: 2.25rem;
    padding: 0 1.5rem;
  }

  .section-desc {
    padding: 0 1.5rem;
  }

  .subtitle {
    padding: 0 1.5rem;
  }
}

/* Tablet - Medium Devices (768px and below) */
@media (max-width: 48rem) {
  .section-title {
    font-size: 1.875rem;
    padding: 0 1.25rem;
  }

  .section-desc {
    font-size: 1rem;
    padding: 0 1.25rem;
    line-height: 1.6;
  }

  .subtitle {
    font-size: 1.25rem;
    margin: 2rem 0 1.5rem 0;
    padding: 0 1.25rem;
  }

  .section-badge {
    padding: 0.4375rem 1rem;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
  }
}

/* Mobile - Small Devices (576px and below) */
@media (max-width: 36rem) {
  .section-title {
    font-size: 1.625rem;
    padding: 0 1rem;
    margin-bottom: 1.25rem;
    margin-top: 1rem;
  }

  .section-desc {
    font-size: 0.9375rem;
    padding: 0 1rem;
    line-height: 1.6;
    margin-bottom: 1.875rem;
  }

  .subtitle {
    font-size: 1.125rem;
    margin: 1.75rem 0 1.25rem 0;
    padding: 0 1rem;
    line-height: 1.35;
  }

  .section-badge {
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    margin-bottom: 0.875rem;
    border-radius: 1.5rem;
  }
}

/* Mobile - Extra Small Devices (400px and below) */
@media (max-width: 25rem) {
  .section-title {
    font-size: 1.5rem;
    padding: 0 0.875rem;
  }

  .section-desc {
    font-size: 0.875rem;
    padding: 0 0.875rem;
    line-height: 1.5;
  }

  .subtitle {
    font-size: 1rem;
    padding: 0 0.875rem;
  }

  .section-badge {
    padding: 0.3125rem 0.75rem;
    font-size: 0.6875rem;
    letter-spacing: 0.03125rem;
  }
}

/* Extra Large Screens (1200px and above) */
@media (min-width: 75rem) {
  .section-title {
    font-size: 3rem;
  }

  .section-desc {
    font-size: 1.25rem;
    max-width: 56.25rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }
}

/* Ultra Wide Screens (1600px and above) */
@media (min-width: 100rem) {
  .section-title {
    font-size: 3.5rem;
  }

  .section-desc {
    font-size: 1.375rem;
    max-width: 62.5rem;
    line-height: 1.8;
  }
}


/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .section-badge {
    animation: none;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .section-desc {
    color: #e0e0e0;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .section-badge {
    border: 2px solid #ff8a00;
  }

  .section-title {
    text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
  }
}


/* ==========================================
   HERO SECTION
========================================== */
.hero-section {
  width: 100%;
  padding: 60px 20px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 110px;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 138, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.background-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.05);
  animation: floatAround 20s infinite linear;
}

.floating-element:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: -5s;
  animation-duration: 25s;
}

.floating-element:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 15%;
  animation-delay: -10s;
  animation-duration: 30s;
}

@keyframes floatAround {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -50px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

.hero-content {
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.mockup-container {
  position: relative;
  perspective: 1000px;
  width: 100%;
  max-width: 500px;
}

.mockup-img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 30px rgba(255, 138, 0, 0.3));
  transform-style: preserve-3d;
  animation: floatRotate 6s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
}

@keyframes floatRotate {
  0% {
    transform: translateY(0px) rotateY(0deg);
  }

  50% {
    transform: translateY(-15px) rotateY(5deg);
  }

  100% {
    transform: translateY(0px) rotateY(0deg);
  }
}

@keyframes glow {
  0% {
    filter: drop-shadow(0 15px 25px rgba(255, 138, 0, 0.3));
  }

  100% {
    filter: drop-shadow(0 20px 35px rgba(255, 138, 0, 0.6));
  }
}

/* ENHANCED CODE TAGS - 3 TAGS ADDED */
.code-tag {
  position: absolute;
  background: linear-gradient(135deg, #ff8a00, #ff5500);
  color: #000;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  animation: bounce 3s infinite ease-in-out;
  box-shadow: 0 5px 15px rgba(255, 138, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.code-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 138, 0, 0.6);
}


.tag-2 {
  bottom: 40px;
  left: -20px;
  animation-delay: 0.4s;
  background: linear-gradient(135deg, #ff9e2c, #ff8a00);
}

.tag-3 {
  top: 45%;
  right: -15px;
  animation-delay: 0.6s;
  background: linear-gradient(135deg, #ff5500, #ff8a00);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-right {
  flex: 1;
  color: #fff;
  min-width: 300px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
  background: linear-gradient(90deg, #fff 60%, #ff8a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #ff8a00, #ff5500);
  bottom: -15px;
  left: 0;
  border-radius: 5px;
}

.highlight {
  color: #ff8a00;
  position: relative;
}

.hero-text {
  font-size: 18px;
  color: #dcdcdc;
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 90%;
}

.proposal-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   HERO SECTION RESPONSIVE
========================================== */
@media (max-width: 1100px) {
  .hero-content {
    gap: 40px;
  }

  .hero-title {
    font-size: 46px;
  }

  .mockup-img {
    max-width: 450px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .mockup-img {
    max-width: 400px;
  }

  .code-tag {
    min-width: 160px;
    font-size: 13px;
    padding: 8px 15px;
  }

  .tag-2 {
    bottom: 30px;
    left: -10px;
  }

  .tag-3 {
    top: 40%;
    right: -10px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 38px;
  }

  .mockup-img {
    max-width: 350px;
  }

  .proposal-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .or {
    margin: 10px 0;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .mockup-img {
    max-width: 300px;
  }

  .code-tag {
    min-width: 140px;
    font-size: 12px;
    padding: 6px 12px;
  }

  .tag-2 {
    left: 0;
    bottom: 20px;
  }

  .tag-3 {
    right: 0;
    top: 35%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-text {
    font-size: 15px;
  }

  .mockup-img {
    max-width: 280px;
  }

  .code-tag {
    min-width: 120px;
    font-size: 11px;
    padding: 5px 10px;
  }
}


/* simple section */

.simple-section {
  background: rgba(255, 138, 0, 0.05);
  border-radius: 20px;
  padding: 10px;
  border: 1px solid rgba(255, 138, 0, 0.1);
  position: relative;
  overflow: hidden;
  margin: 20px;
}

.simple-section::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.1) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  z-index: 1;
}

.simple-section>* {
  position: relative;
  z-index: 2;
}


.bottom-content p:last-of-type {
  margin-bottom: 0;
}


/* management section style */
.benefits-section {
  padding: 6rem 2rem;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 138, 0, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(255, 138, 0, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(255, 138, 0, 0.02) 100%);
  z-index: 1;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Benefit Card */
.benefit-card {
  background: linear-gradient(145deg, rgba(28, 28, 28, 0.95), rgba(18, 18, 18, 0.95));
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 138, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Card Hover Background */
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      transparent 0%,
      rgba(255, 138, 0, 0.03) 25%,
      rgba(255, 138, 0, 0.06) 50%,
      rgba(255, 138, 0, 0.03) 75%,
      transparent 100%);
  z-index: 1;
  transition: transform 0.8s ease;
  transform: translateX(-100%) skewX(-15deg);
}

.benefit-card:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

/* Card Hover Effects */
.benefit-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow:
    0 25px 50px rgba(255, 138, 0, 0.15),
    0 0 60px rgba(255, 138, 0, 0.08),
    inset 0 0 0 1px rgba(255, 138, 0, 0.1);
}

/* Gradient Border Effect */
.benefit-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
      #ff8a00, #ff9e2c, #ffb357, #ff9e2c, #ff8a00);
  background-size: 400% 400%;
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
  animation: gradientBorder 4s ease infinite;
}

.benefit-card:hover::after {
  opacity: 0.3;
}

/* Benefit Icon */
.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg,
      rgba(255, 138, 0, 0.1),
      rgba(255, 138, 0, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 138, 0, 0.2);
}

.benefit-icon::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 21px;
  background: linear-gradient(135deg,
      rgba(255, 138, 0, 0.2),
      rgba(255, 138, 0, 0.05));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.benefit-card:hover .benefit-icon {
  transform: translateY(-5px) scale(1.1) rotate(5deg);
  background: linear-gradient(135deg,
      rgba(255, 138, 0, 0.2),
      rgba(255, 138, 0, 0.3));
  box-shadow:
    0 10px 20px rgba(255, 138, 0, 0.2),
    0 0 30px rgba(255, 138, 0, 0.1);
  border-color: rgba(255, 138, 0, 0.4);
}

.benefit-card:hover .benefit-icon::before {
  opacity: 1;
}

.benefit-icon i {
  font-size: 2rem;
  color: #ff8a00;
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon i {
  color: #ffb357;
  text-shadow: 0 0 15px rgba(255, 138, 0, 0.4);
  transform: scale(1.1);
}

/* Card Content */
.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  padding-right: 3rem;
}

.benefit-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff8a00, transparent);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.benefit-card:hover h3 {
  color: #ff8a00;
}

.benefit-card:hover h3::after {
  width: 80px;
  background: linear-gradient(90deg, #ff8a00, #ffb357);
}

.benefit-card p {
  color: #aaa;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.benefit-card:hover p {
  color: #d0d0d0;
}


/* Card Hover Line */
.benefit-card .hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff8a00, #ffb357);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
}

.benefit-card:hover .hover-line {
  transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .benefits-section {
    padding: 5rem 1.5rem;
  }

  .benefits-grid {
    gap: 1.8rem;
  }

  .benefit-card {
    padding: 2rem 1.5rem;
  }

  .benefit-icon {
    width: 65px;
    height: 65px;
  }

  .benefit-icon i {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 4rem 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 2rem;
  }

  .benefit-card h3 {
    font-size: 1.4rem;
    padding-right: 2.5rem;
  }

  .benefit-card p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .benefit-card {
    padding: 1.8rem;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }

  .benefit-icon i {
    font-size: 1.6rem;
  }

  .benefit-card h3 {
    font-size: 1.3rem;
    padding-right: 2rem;
  }

  .benefit-card::before {
    top: 1.8rem;
    right: 1.8rem;
    font-size: 2rem;
  }
}

/* Animations */
@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Staggered Animation for Cards */
@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.benefit-card {
  animation: cardReveal 0.7s ease forwards;
  opacity: 0;
  transform-style: preserve-3d;
}

.benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}

.benefit-card:nth-child(5) {
  animation-delay: 0.5s;
}

.benefit-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Icon Floating Animation on Hover */
.benefit-card:hover .benefit-icon {
  animation: iconFloat 2s ease infinite;
}


/* =========================================== */
/* SMO vs Advertising Section */
/* =========================================== */

.smo-advertising-section {
  padding: 8rem 2rem;
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.smo-advertising-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 138, 0, 0.03), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 138, 0, 0.03), transparent 50%);
  z-index: 1;
}

/* Container */
.smo-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Grid */
.smo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  margin-top: 3rem;
}

/* Box */
.smo-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* Content */
.smo-content {
  padding: 2rem;
  animation: textReveal 0.8s ease forwards;
}

.smo-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
}

.smo-content h2::after {
  content: '';
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff8a00, #ffb357);
  display: block;
  margin-top: 0.8rem;
  border-radius: 2px;
}

.smo-content p {
  color: #aaa;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* List */
.smo-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.smo-list li {
  color: #aaa;
  font-size: 1.1rem;
  padding-left: 2.2rem;
  position: relative;
}

.smo-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff8a00;
  font-weight: bold;
}

/* =========================================== */
/* IMAGE SYSTEM – NO CROP, SAME SIZE */
/* =========================================== */

.smo-img-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: imageReveal 0.8s ease forwards;
}

.smo-img-container:hover {
  transform: translateY(-6px);
}

/* Image */
.smo-img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 15px;
}


/* =========================================== */
/* RESPONSIVE */
/* =========================================== */

@media (max-width: 768px) {
  .smo-box {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(145deg, #1e1e1e, #141414);
    border: 1px solid rgba(255, 138, 0, 0.15);
  }

  .smo-content {
    text-align: center;
    padding: 0;
  }

  .smo-content h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .smo-img-container {
    aspect-ratio: 16 / 10;
  }
}

/* =========================================== */
/* ANIMATIONS */
/* =========================================== */

@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* ==========================================
   TESTIMONIALS SECTION
========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
  margin-bottom: 70px;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(30, 30, 35, 0.9), rgba(20, 20, 25, 0.9));
  border-radius: 20px;
  padding: 40px 35px;
  border: 1px solid rgba(255, 138, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  animation: cardSlideUp 0.8s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
  text-align: left;
  margin-bottom: 50px;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.1s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes cardSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 25px;
  font-size: 120px;
  color: rgba(255, 138, 0, 0.1);
  line-height: 1;
  z-index: 0;
  transition: transform 0.3s ease;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow:
    0 25px 50px rgba(255, 138, 0, 0.15),
    0 0 80px rgba(255, 138, 0, 0.1);
}

.testimonial-card:hover::before {
  transform: scale(1.1);
}

.testimonial-card:hover::after {
  transform: scaleX(1);
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.star {
  color: #ff8a00;
  font-size: 20px;
  text-shadow: 0 0 10px rgba(255, 138, 0, 0.3);
  animation: starPop 0.5s ease-out forwards;
  animation-delay: calc(var(--i) * 0.1s);
  opacity: 0;
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonial-stars .star:nth-child(1) {
  --i: 1;
}

.testimonial-stars .star:nth-child(2) {
  --i: 2;
}

.testimonial-stars .star:nth-child(3) {
  --i: 3;
}

.testimonial-stars .star:nth-child(4) {
  --i: 4;
}

.testimonial-stars .star:nth-child(5) {
  --i: 5;
}

.testimonial-content {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 30px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-content {
  transform: translateX(5px);
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 138, 0, 0.2);
  padding-top: 20px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .client-info {
  transform: translateX(5px);
}

.client-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
}

.client-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
  transition: width 0.3s ease;
}

.testimonial-card:hover .client-name::after {
  width: 100%;
}

.client-time {
  font-size: 14px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.client-time i {
  color: #ff8a00;
  font-size: 12px;
  animation: pulse 2s infinite;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.2) 0%, transparent 70%);
  transform: scale(0);
  animation: ripple 1s linear;
  pointer-events: none;
  z-index: 0;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/*  FAQs section   */

/* FAQ List */
.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 70px;
}

/* FAQ Item */
.faq-item {
  background: linear-gradient(145deg, rgba(35, 35, 40, 0.9), rgba(25, 25, 30, 0.9));
  border-radius: 15px;
  padding: 30px 25px;
  border: 1px solid rgba(255, 138, 0, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.faq-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
  z-index: 1;
}

.faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow: 0 15px 30px rgba(255, 138, 0, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.faq-text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  flex: 1;
}

.faq-icon {
  color: #ff8a00;
  font-size: 20px;
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #ff9e2c;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin-top 0.3s ease;
  font-size: 16px;
  color: #bbb;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 20px;
}