:root {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --secondary: #fbbf24;
  --bg-body: #0f172a;
  --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --bg-light: #1e293b;
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --border-color: #334155;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);

  --grid-color: rgba(255, 255, 255, 0.03);
  /* New variable */
  --header-bg: rgba(15, 23, 42, 0.85);
  /* New variable */

  --container-width: 1100px;
  --font-main: 'Outfit', sans-serif;
  --transition: all 0.3s ease;
}

[data-theme="light"] {
  --primary: #007bff;
  --primary-dark: #0056b3;
  --secondary: #ffc107;
  --bg-body: #ffffff;
  --bg-gradient: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  --bg-light: #f8f9fa;
  --text-main: #2d3436;
  --text-muted: #636e72;
  --border-color: #e0e0e0;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);

  --grid-color: rgba(0, 0, 0, 0.08);
  /* New variable */
  --header-bg: rgba(255, 255, 255, 0.95);
  /* New variable */
}

/* Curated Premium Details */
::selection {
  background-color: var(--primary);
  color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

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

body {
  font-family: var(--font-main);
  background: var(--bg-body);
  /* Updated background */
  position: relative;

  /* Grid & Gradient Background */
  background-image:
    linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px),
    var(--bg-gradient);
  background-size: 40px 40px, 40px 40px, 100% 100%;

  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Container & Utils */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

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

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
  position: relative;
  display: inline-block;
}

/* Updated underline - centered and orange */
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 10px auto 0;
  /* Centered */
  border-radius: 2px;
}

/* Left aligned title adjustment */
.text-left .section-title::after {
  margin: 10px 0 0 0;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Header & Navbar */
header {
  background-color: var(--header-bg);
  /* Use variable */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  /* Stronger shadow for dark mode */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.logo span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 20px;
  /* Reduced gap slightly */
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s;
}

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

.nav-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.theme-toggle {
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text-main);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
}

.theme-toggle:hover {
  color: var(--primary);
  transform: rotate(15deg);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-main);
}

/* Hero / Intro Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  min-height: 70vh;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.greeting {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--text-main);
}

.bio-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 90%;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.profile-img-container {
  width: 400px;
  height: 400px;
  position: relative;
  /* Removed overflow: hidden to allow blur to show */
  z-index: 1;
}

.profile-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  /* Moved simplified radius to image */
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}

/* Blur Effect Behind Image */
.profile-img-container::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  background: var(--primary);
  filter: blur(40px);
  z-index: -1;
  opacity: 0.4;
  border-radius: 20px;
  transform: scale(0.95);
}

/* Slider Section */
.slider-section {
  padding: 60px 0;
  overflow: hidden;
  background: transparent;
}

.slider-container {
  padding: 20px 0;
}

.slider-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding-bottom: 20px;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slider-wrapper::-webkit-scrollbar {
  display: none;
}

.slider-card {
  min-width: 300px;
  max-width: 350px;
  background: var(--bg-light);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

/* Services Page Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  flex-grow: 1;
  /* Pushes content down so footer aligns if needed */
}

/* New Service Card with Image */
.service-showcase-card {
  background: var(--bg-light);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.service-showcase-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-showcase-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-showcase-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: var(--bg-light);
}

.service-showcase-content .service-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.service-showcase-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

/* Product Detail Page Styles */
.product-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.product-gallery {
  /* Simulating the gallery look */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.thumbnail-row {
  display: flex;
  gap: 10px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
  border: 2px solid var(--primary);
}

.product-info h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.price {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

/* Feature List Styles */
.product-features-list {
  margin: 20px 0;
  padding: 0;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.product-features-list li {
  display: flex;
  align-items: flex-start;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-color);
  gap: 15px;
  line-height: 1.5;
}

.product-features-list li:last-child {
  border-bottom: none;
}

.product-features-list li i {
  color: var(--primary);
  margin-top: 4px;
  /* Align icon with first line of text */
  flex-shrink: 0;
}

.product-features-list li strong {
  color: var(--text-main);
  min-width: 180px;
  display: inline-block;
  font-weight: 600;
  flex-shrink: 0;
}

.buy-box {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  margin-top: 20px;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px 20px;
  max-height: 500px;
  /* Arbitrary large height */
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* About Section */
.about-details {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  /* Changed to flex-start to move image up */
  background: var(--bg-light);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  max-width: 100%;
  height: auto;
}

.skill-bar {
  margin-bottom: 15px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.progress-line {
  height: 8px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  position: relative;
}

.progress-line span {
  display: block;
  height: 100%;
  background: var(--primary);
  border-radius: 10px;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.review-card {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-name {
  font-weight: 700;
  color: var(--text-main);
}

.review-text {
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}

.review-card small {
  color: #aaa;
  display: block;
  margin-top: 10px;
}

/* New Modern Contact Styles */
.contact-container-v2 {
  max-width: 600px;
  margin: 0 auto;
}

.contact-card-v2 {
  background: var(--bg-light);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-main);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-row {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 18px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  text-decoration: none;
}

.contact-row:hover {
  background: var(--bg-light);
  border-color: var(--primary);
  transform: translateX(5px);
  box-shadow: var(--shadow-soft);
}

.icon-box-v2 {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.icon-box-v2.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.icon-box-v2.email {
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary);
}

.icon-box-v2.bionluk {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}

.contact-row:hover .icon-box-v2 {
  transform: scale(1.1);
}

.contact-info-v2 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.contact-info-v2 .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-info-v2 .value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.arrow-v2 {
  color: #ddd;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.contact-row:hover .arrow-v2 {
  color: var(--primary);
  transform: translateX(3px);
}

.btn-whatsapp-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--primary);
  color: #fff !important;
  padding: 20px;
  border-radius: 18px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.btn-whatsapp-premium:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
}

@media (max-width: 576px) {
  .contact-card-v2 {
    padding: 30px 20px;
  }

  .contact-row {
    padding: 12px 15px;
    margin-right: 0;
  }

  .contact-info-v2 .value {
    font-size: 1.05rem;
  }

  .icon-box-v2 {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
    margin-right: 12px;
  }
}

/* Footer */
footer {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  margin-top: 60px;
  text-align: center;
  color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }

  .navbar {
    position: relative;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    background-color: var(--bg-light);
    width: 100%;
    height: calc(100vh - 80px);
    padding: 20px;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 30px 0;
    min-height: auto;
  }

  .hero-content {
    padding-right: 0;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bio-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .about-details {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
    /* Reduced padding for mobile */
    text-align: center;
    /* Center text on mobile */
  }

  .about-text .section-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about-text ul {
    text-align: left;
    /* Keep list left-aligned for readability */
    display: inline-block;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .profile-img-container {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }

  .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-image {
    order: -1;
    /* Image appears first on mobile */
    max-width: 300px;
    margin: 0 auto;
  }

  /* Optimize video display on mobile */
  .product-gallery .main-image iframe {
    max-height: 450px;
    /* Limit height */
    width: 100% !important;
    /* Keep width 100% but... */
    max-width: 100%;
  }

  /* Specific fix for vertical videos (9/16) to not be too huge */
  /* We target the iframe by attribute if possible, but CSS doesn't support value checks easily */
  /* Instead, we restrict the main-image container visual impact */
}

/* Better approach for specific aspect ratios on mobile */
@media (max-width: 768px) {

  /* For elements with vertical aspect ratio style, restrict width to limit height */
  iframe[style*="aspect-ratio:9/16"],
  iframe[style*="aspect-ratio: 9/16"] {
    max-width: 260px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .contact-info-box {
    padding: 25px !important;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 25px;
  }
}

/* --- Added Professional Sections Styles --- */

/* Stats Bar */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  background: var(--bg-light);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  margin-top: -60px;
  /* Overlaps hero slightly */
  position: relative;
  z-index: 10;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Workflow Steps */
.workflow-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  padding: 30px;
  background: var(--bg-light);
  border-radius: 16px;
  border-bottom: 4px solid var(--border-color);
  transition: all 0.3s ease;
}

.step-card:hover {
  border-bottom-color: var(--primary);
  transform: translateY(-5px);
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Feature Minimal */
.features-minimal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-mini {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: var(--bg-light);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
  border-color: var(--primary);
}

.feature-mini i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 3px;
}

.feature-mini h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature-mini p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Clean Hero Image Showcase */
.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

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

.hero-profile-wrapper img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Floating Stat Cards - Simple & Explanatory */
.hero-stat-box {
  position: absolute;
  background: var(--bg-light);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  border: 1px solid var(--border-color);
}

.hero-stat-box.s1 {
  top: 15%;
  left: -40px;
}

.hero-stat-box.s2 {
  bottom: 15%;
  right: -40px;
}

.hero-stat-box i {
  color: var(--primary);
  font-size: 1.5rem;
}

.hero-stat-box .stat-info {
  display: flex;
  flex-direction: column;
}

.hero-stat-box .stat-val {
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--text-main);
}

.hero-stat-box .stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Software Skills Showcase - Flat & Simple */
.software-pills {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.pill:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.pill img {
  width: 18px;
  height: 18px;
}

@media (max-width: 992px) {
  .hero-stat-box.s1 {
    left: 0;
    top: 10%;
  }

  .hero-stat-box.s2 {
    right: 0;
    bottom: 10%;
  }

  .hero-image-container {
    max-width: 350px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .hero-stat-box {
    padding: 10px 15px;
  }

  .hero-stat-box .stat-val {
    font-size: 1rem;
  }

  .hero-stat-box .stat-desc {
    font-size: 0.7rem;
  }
}

/* --- ULTIMATE MOBILE FIX --- */
@media (max-width: 992px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 0;
  }

  .hero-content {
    width: 100%;
    padding-right: 0;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2.5rem;
    max-width: 90%;
  }

  .editor-dashboard {
    margin: 0 auto 30px;
    width: 90%;
    max-width: 400px;
    height: auto;
    min-height: 380px;
    padding: 20px;
  }

  .dashboard-preview {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .features-minimal-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-mini {
    max-width: 100%;
  }

  .ae-tag {
    top: -15px;
    right: 5px;
    width: 45px;
    height: 45px;
  }

  .pr-tag {
    bottom: 15px;
    left: -10px;
    width: 45px;
    height: 45px;
  }

  .ps-tag {
    top: 90px;
    right: -15px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .editor-dashboard {
    width: 100%;
    min-height: 320px;
    padding: 15px;
  }



  .skill-bar {
    width: 100%;
  }
}

/* Redundant Section Padding fix for Mobile */
@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }
}

/* --- PREMIUM MOBILE & PRODUCT PAGE CSS --- */

/* Breadcrumb */
.breadcrumb {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb i {
  font-size: 0.7rem;
  margin: 0 8px;
  color: #ccc;
}

.breadcrumb span {
  color: var(--text-main);
  font-weight: 500;
}

/* Product Hero Mobile */
.product-hero-mobile {
  margin-bottom: 30px;
}

.product-badge {
  background: rgba(255, 69, 0, 0.1);
  color: #ff4500;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.product-hero-mobile h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.2;
}

.product-hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Horizontal Swipeable Video Section */
.section-sub-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-main);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-sub-title i {
  color: var(--primary);
}

.video-swipe-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
  padding-bottom: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 10px;
}

.video-swipe-container::-webkit-scrollbar {
  display: none;
}

.video-swipe-item {
  flex: 0 0 85%;
  max-width: 320px;
  scroll-snap-align: center;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  background: #000;
}

.video-swipe-item iframe {
  width: 100% !important;
  aspect-ratio: 9/16;
  display: block;
  max-width: 100% !important;
}

.video-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 8px;
  z-index: 10;
  backdrop-filter: blur(5px);
}

/* Enhanced Accordion */
.premium-accordion-wrapper {
  margin-bottom: 35px;
}

.accordion-item {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.accordion-header {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background: var(--bg-light);
}

.acc-title {
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.acc-title i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.acc-icon {
  color: var(--text-muted);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  background: rgba(0, 0, 0, 0.1);
}

.accordion-body p {
  padding: 15px 0 20px 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.accordion-item.active {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.1);
}

.accordion-item.active .acc-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.accordion-item.active .accordion-body {
  max-height: 200px;
  opacity: 1;
}

/* Premium Boxes */
.premium-box {
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.premium-box.blue-box {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.premium-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-list {
  list-style: none;
  padding: 0;
}

.premium-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-main);
  font-size: 0.95rem;
}

.premium-list li:last-child {
  margin-bottom: 0;
}

.premium-list li i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 1.1rem;
}

/* Sticky Bottom CTA */
.sticky-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--border-color);
  padding: 15px 20px;
  z-index: 100;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  display: none;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.cta-text {
  display: flex;
  flex-direction: column;
}

.cta-price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-main);
}

.cta-time {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cta-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Media Queries */
@media (max-width: 768px) {
  .sticky-bottom-cta {
    display: block;
  }
}

@media (min-width: 769px) {
  .video-swipe-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    overflow: visible;
  }

  .video-swipe-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .product-hero-mobile h1 {
    font-size: 2.8rem;
  }

  .video-swipe-item iframe {
    height: auto;
  }

  .product-detail-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    /* adjusted to give text more space */
    gap: 40px;
    align-items: start;
  }
}