/* ============================================================
   V2 UPGRADES — Floating Nav, Hero V2, Portfolio Marquee, Pricing
   ============================================================ */

/* ============ THEME TOGGLE (In Nav) ============ */
.theme-toggle-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 15, 15, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle-nav:hover {
  transform: scale(1.1) rotate(20deg);
  border-color: var(--green-1);
}

.theme-toggle-nav .theme-icon {
  font-size: 1.1rem;
  line-height: 1;
}

body.light .theme-toggle-nav {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.1);
}

.fnav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fnav-cta {
  margin-left: 0;
}

/* ============ FLOATING TOP NAV ============ */
#navbar.floating-nav {
  position: fixed !important;
  top: 20px !important;
  left: 50% !important;
  right: auto !important;
  width: max-content !important;
  max-width: calc(100vw - 40px) !important;
  margin: 0 !important;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex !important;
  align-items: center;
  justify-content: flex-start !important;
  gap: 10px;
  padding: 8px 10px !important;
  border-radius: 60px;
  background: rgba(15, 15, 15, 0.65) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.light #navbar.floating-nav {
  background: rgba(255, 255, 255, 0.75) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.fnav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fnav-links li a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 14px;
  border-radius: 30px;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.fnav-links li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

body.light .fnav-links li a {
  color: rgba(0, 0, 0, 0.85) !important;
}

body.light .fnav-links li a:hover {
  color: #000 !important;
  background: rgba(0, 0, 0, 0.08);
}

/* About Avatar */
.about-intro-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  /* Space between Image and Name */
  margin-bottom: 20px;
  /* Space between Name block and Paragraphs */
  text-align: left;
}

.about-right p {
  margin-bottom: 20px;
  /* Space between paragraphs */
}

/* Ensure consistent spacing for lists/tags too */
.about-right h3 {
  margin-bottom: 0;
  /* Handled by gap in intro-row */
}

.skills-tags {
  margin-top: 20px;
}

.about-avatar {
  width: 140px;
  /* Increased size */
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-1);
  box-shadow: 0 12px 32px rgba(138, 154, 91, 0.25);
}

@media (max-width: 600px) {
  .about-intro-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
}

.fnav-cta {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  background: var(--green-1);
  color: #000;
  white-space: nowrap;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.fnav-cta:hover {
  background: var(--green-2);
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(138, 154, 91, 0.4);
}

/* Hide old nav styles */
#navbar.scrolled {
  background: transparent !important;
}

/* Hamburger fixed position for mobile */
.hamburger-fixed {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1001;
  flex-direction: row;
  gap: 5px;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.hamburger-fixed span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

body.light .hamburger-fixed {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.1);
}

body.light .hamburger-fixed span {
  background: #000;
}

/* ============ HERO V2 ============ */
.hero-v2 {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
}

/* Artistic Streaks */
.hero-streaks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.streak {
  position: absolute;
  border-radius: 100px;
  opacity: 0.15;
  filter: blur(2px);
}

.streak-1 {
  width: 500px;
  height: 4px;
  top: 30%;
  left: 10%;
  background: linear-gradient(90deg, transparent, #00e5ff, transparent);
  transform: rotate(-8deg);
  animation: streakDash 4s ease-in-out infinite;
}

.streak-2 {
  width: 400px;
  height: 3px;
  top: 40%;
  right: 5%;
  background: linear-gradient(90deg, transparent, #ff6ec7, transparent);
  transform: rotate(5deg);
  animation: streakDash 5s ease-in-out infinite 1s;
}

.streak-3 {
  width: 350px;
  height: 2px;
  top: 55%;
  left: 20%;
  background: linear-gradient(90deg, transparent, var(--green-1), transparent);
  transform: rotate(-3deg);
  animation: streakDash 6s ease-in-out infinite 0.5s;
}

.streak-4 {
  width: 300px;
  height: 5px;
  top: 25%;
  right: 15%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(-12deg);
  animation: streakDash 3.5s ease-in-out infinite 1.5s;
}

.streak-5 {
  width: 450px;
  height: 3px;
  bottom: 30%;
  left: 5%;
  background: linear-gradient(90deg, transparent, #536dfe, transparent);
  transform: rotate(7deg);
  animation: streakDash 5.5s ease-in-out infinite 0.8s;
}

@keyframes streakDash {

  0%,
  100% {
    opacity: 0.05;
    transform: translateX(-30px) rotate(var(--r, -8deg));
  }

  50% {
    opacity: 0.2;
    transform: translateX(30px) rotate(var(--r, -8deg));
  }
}

/* Hero V2 Content Layout */
.hero-v2-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  z-index: 2;
  position: relative;
}

/* Left: Name */
.hero-v2-left {
  text-align: left;
}

.hero-v2-name {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-v2-role {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 400;
}

/* Center: Photo */
.hero-v2-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrapper {
  position: relative;
  width: 380px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.hero-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-photo-wrapper:hover img {
  transform: scale(1.05);
}

.photo-liquid-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--dark-bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Right: Description */
.hero-v2-right {
  text-align: left;
}

.hero-v2-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.hero-v2 .hero-btns {
  justify-content: flex-start;
}

.hero-v2 .hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* SVG Liquid Filter for scroll effect */
.liquid-active .hero-photo-wrapper img {
  filter: url(#liquid-distort);
}

/* ============ PORTFOLIO V2 — 3 Row Marquee ============ */
.portfolio-v2 {
  background: var(--dark-bg);
  overflow: hidden;
  padding-bottom: 60px;
}

.portfolio-marquee-row {
  overflow: hidden;
  padding: 10px 0;
  width: 100%;
}

.portfolio-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.track-left {
  animation: scrollPfLeft 25s linear infinite;
}

.track-right {
  animation: scrollPfRight 28s linear infinite;
}

.track-left-slow {
  animation: scrollPfLeft 35s linear infinite;
}

.portfolio-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollPfLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollPfRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Portfolio Card */
.pf-card {
  width: 320px;
  height: 200px;
  border-radius: 16px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.pf-card:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}

.pf-card-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: row;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

.pf-card:hover .pf-card-inner {
  opacity: 1;
  transform: translateY(0);
}

.pf-card-inner h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.pf-card-inner span {
  font-size: 0.72rem;
  color: var(--green-2);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============ PRICING SECTION ============ */
.pricing-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #080a06 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  width: 100%;
}

.pricing-card {
  padding: 36px 28px;
  position: relative;
  transition: all 0.4s ease;
  border-radius: var(--radius);
  min-width: 0;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-popular {
  border-color: var(--green-1) !important;
  box-shadow: 0 0 40px rgba(138, 154, 91, 0.12);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 30px;
  background: rgba(138, 154, 91, 0.15);
  color: var(--green-1);
  border: 1px solid rgba(138, 154, 91, 0.3);
  letter-spacing: 0.5px;
}

.pricing-tier {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}

.price-currency {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}

.price-plus {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: var(--border-2);
  margin-bottom: 20px;
}

.pricing-includes {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features .check {
  color: var(--green-1);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Pricing Light Mode */
body.light .pricing-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #f5f3ee 100%);
}

body.light .pricing-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

body.light .pricing-tier {
  color: #1a1f12;
}

body.light .price-amount {
  color: #1a1f12;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {

  #navbar.floating-nav,
  .floating-nav {
    display: none !important;
  }

  .hamburger-fixed {
    display: flex;
  }

  .hero-v2-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 24px;
    gap: 32px;
  }

  .hero-v2-left {
    text-align: center;
  }

  .hero-v2-right {
    text-align: center;
  }

  .hero-v2 .hero-btns {
    justify-content: center;
  }

  .hero-photo-wrapper {
    width: 280px;
    height: 360px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pf-card {
    width: 260px;
    height: 160px;
  }
}

@media (max-width: 640px) {
  .theme-toggle-fixed {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
  }

  .hamburger-fixed {
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .hero-v2-name {
    font-size: 2.5rem;
  }

  .hero-photo-wrapper {
    width: 240px;
    height: 300px;
  }

  .pf-card {
    width: 220px;
    height: 140px;
  }

  .hero-streaks {
    display: none;
  }
}

/* ============================================================
   PORTFOLIO MOCKUP MARQUEE (3-ROWS)
   ============================================================ */
.mockup-marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  margin-top: 80px;
  padding: 20px 0;
}

.mockup-marquee-row {
  display: flex;
  gap: 20px;
  width: max-content;
  max-width: none;
  will-change: transform;
}

.mockup-marquee-row.left {
  animation: marquee-left 80s linear infinite;
}

.mockup-marquee-row.right {
  animation: marquee-right 80s linear infinite;
}

.mockup-card {
  width: min(420px, 78vw);
  height: 245px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mockup-card:hover {
  transform: scale(1.02);
}

.mockup-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(calc(-50% - 10px));
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .mockup-card {
    width: min(350px, 78vw);
    height: 200px;
  }

  .mockup-marquee-wrapper {
    gap: 12px;
  }

  .mockup-marquee-row {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .mockup-card {
    width: 280px;
    height: 160px;
  }

  .mockup-marquee-wrapper {
    margin-top: 40px;
    gap: 8px;
  }

  .mockup-marquee-row {
    gap: 8px;
  }
}

/* ============================================================
   FEATURES GRID ("Reasons you will love us")
   ============================================================ */
.features-section {
  padding: 100px 5%;
  background-color: #0b0b0b;
  /* Very dark similar to framer */
  color: #fff;
}

body.light .features-section {
  background-color: #fcfcfa;
  color: #111;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.feature-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  padding: 30px;
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrapper svg {
  width: 50px;
  height: 50px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.light .feature-icon-wrapper svg {
  stroke: #000000;
}

.feature-box:hover .feature-icon-wrapper svg {
  transform: scale(1.15) translateY(-5px);
  stroke: var(--green-1);
}

/* Special hover animations for specific icons */
.feature-box:nth-child(1):hover svg {
  animation: swing 1.5s ease-in-out infinite alternate;
}

.feature-box:nth-child(2):hover svg {
  animation: jiggle 0.4s ease-in-out infinite alternate;
}

.feature-box:nth-child(3):hover svg {
  animation: spinBack 4s linear infinite;
}

.feature-box:nth-child(4):hover svg {
  animation: pulseBig 1.5s ease-in-out infinite alternate;
}

@keyframes swing {
  0% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(10deg);
  }
}

@keyframes jiggle {
  0% {
    transform: rotate(-5deg) translateY(-2px);
  }

  100% {
    transform: rotate(5deg) translateY(2px);
  }
}

@keyframes spinBack {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes pulseBig {
  0% {
    transform: scale(1.1) translateY(-5px);
  }

  100% {
    transform: scale(1.2) translateY(-8px);
  }
}

.feature-box h3 {
  font-family: 'Satoshi', 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.feature-box p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: 0.3px;
  font-weight: 400;
}

body.light .feature-box p {
  color: rgba(0, 0, 0, 0.6);
}

.features-book-btn {
  display: block;
  width: max-content;
  margin: 60px auto 0;
  padding: 16px 40px;
  border-radius: 999px;
  background-color: #6214d9;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(98, 20, 217, 0.3);
}

.features-book-btn:hover {
  transform: translateY(-2px) scale(1.02);
  color: #fff;
  box-shadow: 0 6px 20px rgba(98, 20, 217, 0.5);
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ENHANCED SOLUTIONS SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 30px !important;
  width: 100%;
}

.service-card {
  padding: 50px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3) !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  transition: all 0.4s ease !important;
}

body.light .service-card {
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.03) !important;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-8px) scale(1.02) !important;
}

body.light .service-card:hover {
  background: rgba(0, 0, 0, 0.05) !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}

.service-icon-3d {
  display: none !important;
}

.service-image {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  margin-bottom: 30px;
  background-size: cover !important;
  background-position: center top !important;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.service-card:hover .service-image {
  transform: scale(1.04) !important;
}

.img-wrap {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.light .img-wrap {
  border-color: rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-size: 28px !important;
  margin-bottom: 16px !important;
  font-weight: 500;
  text-transform: uppercase;
}

.service-card p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin-bottom: 30px !important;
}

body.light .service-card p {
  color: rgba(0, 0, 0, 0.7) !important;
}

.service-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: auto !important;
}

.service-tags span {
  padding: 6px 14px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  font-size: 13px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

body.light .service-tags span {
  background: rgba(0, 0, 0, 0.05) !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card,
  .pricing-card {
    padding: 28px 20px !important;
  }

  .pricing-features li {
    align-items: flex-start;
  }
}

/* ============================================================
   OLD STYLE FAQ GRID
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 60px 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--green-1);
}

.faq-q {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.faq-q span {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}

.faq-icon {
  width: 24px;
  height: 24px;
  background: rgba(138, 154, 91, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-1);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green-1);
  color: #000;
}

.faq-item.open {
  border-color: var(--green-1);
  background: rgba(138, 154, 91, 0.05);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  padding: 0 32px 32px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-cta {
  margin-top: 40px;
}

body.light .faq-item {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

body.light .faq-item:hover {
  background: #fdfaf1;
}

body.light .faq-q span {
  color: #000;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-q {
    padding: 20px 24px;
  }

  .faq-a p {
    padding: 0 24px 24px;
  }
}

@media (max-width: 900px) {
  .merged-faq-section {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 30px 15px;
  }

  .merged-header .section-title {
    font-size: 2.6rem;
    text-align: center;
  }

  .merged-header .section-desc {
    text-align: center;
    margin: 0 auto 30px;
  }
}
