@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN SYSTEM VARIABLES
   ========================================== */
:root {
  /* Color Palette */
  --primary: #198754;
  --primary-hover: #04733d;
  --primary-light: #e8f5e9;
  --primary-dark: #034a2c;
  --primary-rgb: 25, 135, 84;

  --dark: #0f172a;
  --dark-light: #1e293b;
  --text: #334155;
  --text-muted: #64748b;
  --light: #f8fafc;
  --white: #ffffff;

  --border: #e2e8f0;
  --border-light: #f1f5f9;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 8px 10px -6px rgba(0, 0, 0, 0.07);
  --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.08);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-circle: 50%;

  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  --space-section: 7rem;

  /* Typography */
  --font-heading: 'Outfit', 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-Index */
  --z-back: -1;
  --z-base: 1;
  --z-nav: 100;
  --z-modal: 1000;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography Base */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1.5rem;
}

p:last-child {
  margin-bottom: 0;
}

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

a:hover {
  color: var(--primary-hover);
}

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

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
  position: relative;
}

.section-bg-light {
  background-color: var(--light);
}

.section-bg-dark {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.8);
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4 {
  color: var(--white);
}

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

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

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

.text-primary {
  color: var(--primary);
}

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

.text-white {
  color: var(--white);
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.section-header {
  max-width: 700px;
  margin: 0 auto var(--space-xl) auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: var(--space-sm);
}

.section-header.text-left {
  margin-left: 0;
  text-align: left;
}

.section-header.text-left .section-eyebrow {
  margin-left: 0;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

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

.btn-primary-dark {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-primary-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--dark);
  border-color: var(--border);
}

.btn-secondary:hover {
  background-color: var(--light);
  border-color: var(--text-muted);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background-color: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background-color: var(--dark-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.2);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-icon {
  margin-left: 0.5rem;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(241, 245, 249, 0.8);
  transition: all var(--transition-normal);
  z-index: var(--z-nav);
}

.header-wrapper.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  padding: 0.2rem 0;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: height var(--transition-normal);
}

.header-wrapper.scrolled .nav-bar {
  height: 64px;
}

.logo-link {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.5rem 0;
  position: relative;
}

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

.scrolled .nav-link::after {
  bottom: -20px !important;
}

.nav-link:hover {
  color: var(--dark);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  z-index: var(--z-nav);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: var(--shadow-xl);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  transition: right var(--transition-normal);
  z-index: var(--z-nav);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
  padding: 0.5rem 0;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: auto;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 99;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   HERO SECTION
   ========================================= */
.hero {
  padding-top: calc(80px + var(--space-xxl));
  padding-bottom: var(--space-xxl);
  background: radial-gradient(circle at 10% 20%, rgb(25 135 84 / 42%) 0%, rgb(216 253 236 / 31%) 90%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xxl);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.hero-title span.highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.hero-features-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
}

.hero-features-link:hover {
  color: var(--primary);
}

.hero-features-link i {
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.hero-features-link:hover i {
  transform: translateY(3px);
}

/* Layered Mockup Presentation */
.hero-mockup-wrapper {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 680px;
  flex: 0 0 680px;
  width: 680px;
  margin-right: -180px;
}

.mockup-window {
  border-radius: var(--radius-md);
  background-color: var(--white);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition-slow);
}

.mockup-header {
  height: 28px;
  background-color: var(--border-light);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding-left: var(--space-sm);
  gap: 6px;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-circle);
  background-color: #cbd5e1;
}

.mockup-dot:nth-child(1) {
  background-color: #ef4444;
}

.mockup-dot:nth-child(2) {
  background-color: #f59e0b;
}

.mockup-dot:nth-child(3) {
  background-color: #10b981;
}

.mockup-body {
  position: relative;
  overflow: hidden;
}

.mockup-body img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Layer positioning */
.mockup-admin {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 75%;
  z-index: var(--z-base);
  opacity: 0.85;
}

.mockup-store {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 75%;
  z-index: 2;
  box-shadow: var(--shadow-premium);
}

.mockup-admin:hover {
  z-index: 3;
  opacity: 1;
  transform: translateY(-10px) scale(1.02);
}

.mockup-store:hover {
  z-index: 3;
  transform: translateY(-10px) scale(1.02);
}

.mockup-tablet {
  position: absolute;
  bottom: -4%;
  left: -8%;
  width: 38%;
  z-index: 3;
  box-shadow: var(--shadow-xl);
}

.mockup-phone {
  position: absolute;
  bottom: -8%;
  right: -5%;
  width: 26%;
  z-index: 3;
  box-shadow: var(--shadow-xl);
}

.mockup-tablet:hover,
.mockup-phone:hover {
  transform: translateY(-8px) scale(1.03);
  z-index: 4;
}

/* Floating labels around hero */
.floating-label {
  position: absolute;
  background-color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  border: 1px solid var(--border-light);
  animation: floating 4s ease-in-out infinite;
  z-index: 4;
}

.floating-label i {
  color: var(--primary);
}

.floating-label:nth-child(3) {
  top: 5%;
  left: 0;
  animation-delay: 0s;
}

.floating-label:nth-child(4) {
  top: 45%;
  right: -2%;
  animation-delay: 1s;
}

.floating-label:nth-child(5) {
  bottom: 15%;
  right: 25%;
  animation-delay: 2s;
}

.floating-label:nth-child(6) {
  bottom: 35%;
  left: -5%;
  animation-delay: 1.5s;
}

.floating-label:nth-child(7) {
  top: 25%;
  left: 45%;
  animation-delay: 2.5s;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ==========================================
   TECHNOLOGY STRIP
   ========================================== */
.tech-strip {
  padding: var(--space-md) 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.tech-strip-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.08em;
}

.tech-swiper {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}


.tech-swiper .swiper-slide {
  display: flex;
}

.tech-swiper .swiper-slide .tech-card {
  width: 100%;
}

.tech-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.tech-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.tech-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-card-icon img {
  max-width: 36px;
  max-height: 36px;
}

.tech-card-icon i {
  font-size: 1.25rem;
}

.tech-card-info {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.tech-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
}

.tech-card-status {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tech-card-status::before {
  content: '●';
  font-size: 0.65rem;
  color: #10b981;
}

/* ==========================================
   FEATURES GRID SECTION
   ========================================= */
.features-grid {
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-xl);
}

.feature-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-card-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.card-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

/* Category Badge Colors */
.badge-featured {
  background-color: #ecfdf5;
  color: #059669;
}

.badge-advanced {
  background-color: #eff6ff;
  color: #2563eb;
}

.badge-new {
  background-color: #faf5ff;
  color: #7c3aed;
}

.badge-popular {
  background-color: #fff7ed;
  color: #ea580c;
}

.badge-integrated {
  background-color: #f0fdfa;
  color: #0d9488;
}

.badge-pro {
  background-color: #fff1f2;
  color: #e11d48;
}

.badge-global {
  background-color: #f5f3ff;
  color: #6d28d9;
}

.badge-mobile {
  background-color: #f0fdf4;
  color: #16a34a;
}

.feature-card-title {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  color: var(--dark);
}

.feature-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.feature-card-points {
  list-style: none;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs);
}

.feature-card-points li {
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.feature-card-points li i {
  color: var(--primary);
  font-size: 0.8rem;
}

/* ==========================================
   STORE + ADMIN SHOWCASE
   ========================================= */
.showcase-tab-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.showcase-tab-btn {
  background: none;
  border: 1px solid var(--border);
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.showcase-tab-btn:hover {
  color: var(--dark);
  border-color: var(--text-muted);
}

.showcase-tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
}

.showcase-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.showcase-tab-content.active {
  display: block;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-xxl);
  align-items: center;
}

.showcase-info h3 {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.showcase-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

.showcase-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.showcase-bullets li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 500;
  color: var(--dark-light);
}

.showcase-bullets li i {
  color: var(--primary);
}

.showcase-preview {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.showcase-preview img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

.showcase-preview:hover img {
  transform: scale(1.01);
}

.customer-storefont,
.dashboard-windows {
  height: 438px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  background-color: var(--white);
}

.customer-storefont img,
.dashboard-windows img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  transition: transform 8s ease-in-out;
}

.customer-storefont:hover img,
.dashboard-windows:hover img {
  transform: translateY(calc(-100% + 438px));
}

.showcase-footer-cta {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* ==========================================
   DEDICATED ADMIN DASHBOARD SECTION
   ========================================= */

#admin {
  background: var(--primary);
}

#admin h2,
#admin p {
  color: var(--white);
}

.admin-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  justify-content: center;
}

.admin-mockup-container {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.admin-large-mockup {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* Callout tags pinned on admin mockup (Desktop only) */
.admin-pin {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 5;
  transition: all var(--transition-normal);
}

/* Left-side pins (Label -> Line -> Dot) */
.admin-pin.pin-left {
  transform: translateX(-100%);
  /* Shifts label + line to the left of coordinate anchor */
}

/* Right-side pins (Dot -> Line -> Label) */
.admin-pin.pin-right {
  /* Default flex aligns dot at coordinate anchor and card to the right */
}

/* Pulsing Hotspot Dot */
.pin-pulse {
  width: 14px;
  height: 14px;
  background-color: var(--primary);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulsePin 1.8s infinite;
}

@keyframes pulsePin {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Connecting Line */
.pin-line {
  width: 40px;
  height: 1px;
  background-color: var(--primary);
  opacity: 0.8;
  flex-shrink: 0;
}

/* Label Card details */
.admin-callout {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.admin-pin:hover .admin-callout {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Locations for left side pins on sidebar */
.c-product {
  top: 18%;
  left: 16%;
}

.c-customer {
  top: 38%;
  left: 16%;
}

.c-coupon {
  top: 52%;
  left: 16%;
}

.c-campaign {
  top: 62%;
  left: 16%;
}

.c-staff {
  top: 72%;
  left: 16%;
}

.c-settings {
  top: 85%;
  left: 16%;
}

/* Locations for right side pins on dashboard view */
.c-order {
  top: 22%;
  left: 45%;
}

.c-analytics {
  top: 38%;
  left: 55%;
}

@media (max-width: 1024px) {
  .admin-pin {
    position: static !important;
    display: block !important;
    transform: none !important;
  }

  .pin-pulse,
  .pin-line {
    display: none !important;
  }

  .admin-callout {
    width: 100%;
    justify-content: flex-start;
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
  }

  .admin-callout:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
    transform: translateX(4px);
  }

  .admin-callout i {
    color: var(--primary);
    width: 16px;
    text-align: center;
  }

  .c-pins {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)) !important;
    gap: 0.5rem !important;
    margin-top: var(--space-lg) !important;
    padding: var(--space-md);
    background: var(--light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
  }
}

/* ==========================================
   PRODUCT MANAGEMENT SECTION (SPLIT)
   ========================================= */
.product-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.product-split-mockup {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.product-checkmark-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-xl);
}

.product-checkmark-list li {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.product-checkmark-list li i {
  color: var(--primary);
}

/* ==========================================
   MARKETING FEATURES GRID
   ========================================== */
.marketing-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.marketing-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.marketing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: var(--shadow-lg);
}

.marketing-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

.marketing-card-title {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.marketing-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================
   PAYMENT & DELIVERY SECTION
   ========================================= */
.payment-delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.pay-del-card {
  background-color: var(--dark-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.pay-del-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-xl);
}

.pay-del-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  background-color: rgba(16, 185, 129, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: var(--space-md);
}

.pay-del-card h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

.pay-del-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.pay-del-icons {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.pay-brand-chip {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pay-brand-chip i {
  color: var(--primary);
}

/* ==========================================
   SEO & MARKETING INTEGRATIONS
   ========================================= */
.integrations-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.integration-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.integration-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: var(--shadow-lg);
}

.integration-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-circle);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
}

.integration-card h3 {
  font-size: 1.35rem;
  margin-bottom: var(--space-md);
}

.integration-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.integration-list li {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.integration-list li i {
  color: var(--primary);
}

/* ==========================================
   LOCALIZATION SECTION
   ========================================= */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.local-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.globe-icon-container {
  width: 430px;
  height: 430px;
  border-radius: var(--radius-circle);
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24rem;
  color: var(--primary);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
  animation: pulseGlobe 4s ease-in-out infinite;
}

@keyframes pulseGlobe {
  0% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.4);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
  }
}

.local-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}

.lang-chip {
  background-color: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  transition: all var(--transition-fast);
}

.lang-chip:hover {
  background-color: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}

/* ==========================================
   CUSTOMER EXPERIENCE TIMELINE
   ========================================= */
.timeline-grid {
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-sm);
  position: relative;
}

.timeline-step {
  text-align: center;
  position: relative;
}

.timeline-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: var(--space-md) var(--space-sm);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-normal);
}

.timeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 24px;
  height: 24px;
  background-color: var(--light);
  color: var(--text-muted);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.timeline-card:hover .step-num {
  background-color: var(--primary);
  color: var(--white);
}

.step-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.step-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

/* Timeline Connectors */
.timeline-grid::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: var(--border-light);
  z-index: -1;
}

/* ==========================================
   CUSTOMER ACCOUNT SECTION
   ========================================= */
.account-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xxl);
  align-items: center;
}

.account-mockup {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.account-features-grid {
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.account-feat-card {
  background-color: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  padding: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.account-feat-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.account-feat-card i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.15rem;
}

.account-feat-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

/* ==========================================
   TECHNOLOGY STACK GRID
   ========================================== */
.tech-stack-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.tech-stack-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.tech-stack-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.tech-stack-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.tech-stack-card:hover .tech-stack-icon {
  transform: scale(1.12);
}

.tech-stack-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.tech-stack-icon i {
  font-size: 2rem;
}

.tech-stack-info h4 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.tech-stack-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tech-stack-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background-color: var(--primary-light);
  filter: blur(40px);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.tech-stack-card:hover::after {
  opacity: 1;
}

/* ==========================================
   RESPONSIVE / PWA SECTION
   ========================================= */
.responsive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.responsive-mockups {
  position: relative;
  height: 380px;
}

.mockup-desktop {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  z-index: 1;
}

.mockup-mobile-overlay {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 25%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 4px solid var(--dark);
  overflow: hidden;
  background-color: var(--white);
  z-index: 2;
}

.mockup-tablet-overlay {
  position: absolute;
  bottom: 10%;
  left: 20%;
  width: 50%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--dark);
  overflow: hidden;
  background-color: var(--white);
  z-index: 1.5;
}

/* ==========================================
   FEATURE COMPARISON / ACCORDION
   ========================================= */
.accordion-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.accordion-item {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.accordion-item:hover {
  border-color: var(--border);
}

.accordion-header {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.accordion-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}

.accordion-icon {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

.accordion-item.active {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-md);
}

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

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--light);
}

.accordion-item.active .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-content-inner {
  overflow: hidden;
}

.accordion-body {
  padding: var(--space-md) var(--space-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.accordion-bullet {
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.accordion-bullet i {
  color: var(--primary);
  font-size: 0.75rem;
}

/* ==========================================
   LIVE DEMO CTA CARDS
   ========================================= */
.demo-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.demo-cta-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.demo-cta-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-premium);
}

.demo-cta-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: var(--space-md);
}

.demo-cta-card.admin-theme .demo-cta-tag {
  color: #2563eb;
  background-color: #eff6ff;
}

.demo-cta-card h3 {
  font-size: 1.85rem;
  margin-bottom: var(--space-sm);
}

.demo-cta-card p {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  font-size: 1.05rem;
  flex-grow: 1;
}

.demo-cta-mockup {
  margin-bottom: var(--space-lg);
}

/* ==========================================
   FINAL CTA SECTION
   ========================================= */
.final-cta {
  background: var(--primary);
  color: var(--white);
  padding: var(--space-xxl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 2.75rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: var(--space-xl);
}

.final-cta-subtext {
  margin-top: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-xl);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: var(--space-sm) 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================
   SCROLL EFFECTS / MICRO-INTERACTIONS
   ========================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 99;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1200px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .timeline-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }

  .timeline-grid::after {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .hero-title,
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-mockup-wrapper {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .showcase-preview {
    order: -1;
  }

  .product-split-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .product-split-mockup {
    order: -1;
  }

  .local-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .local-chips {
    justify-content: center;
  }

  .local-visual {
    order: -1;
  }

  .account-split-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .account-mockup {
    order: -1;
  }

  .responsive-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .responsive-mockups {
    max-width: 500px;
    margin: 0 auto;
  }

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

  /* Callout pins on admin mockup hidden/repositioned for smaller viewports */
  .admin-callout {
    position: static;
    margin-bottom: var(--space-xs);
    width: 100%;
  }

  .admin-mockup-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .c-pins {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: var(--space-md);
  }
}

@media (max-width: 768px) {
  :root {
    --space-section: 4.5rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

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

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .payment-delivery-grid {
    grid-template-columns: 1fr;
  }

  .integrations-grid {
    grid-template-columns: 1fr;
  }

  .accordion-body {
    grid-template-columns: 1fr 1fr;
  }

  .demo-cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}

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

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-mockup-wrapper {
    height: 300px;
  }

  .accordion-body {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .c-pins {
    grid-template-columns: 1fr;
  }

  .showcase-tab-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .showcase-bullets {
    grid-template-columns: 1fr;
  }

  .product-checkmark-list {
    grid-template-columns: 1fr;
  }

  .account-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibility settings for reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }

  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}