/* ============================================
   GOOD SHEPHERD - Clean Modern Design
   Inspired by Cattlytics - Professional & Clean
   ============================================ */

/* CSS Variables */
:root {
  /* Primary Colors */
  --primary: #1f9a63;
  --primary-dark: #18774c;
  --primary-light: #e8f5ef;

  /* Secondary Colors */
  --secondary: #1c2434;
  --secondary-light: #374151;

  /* Accent */
  --accent: #f4b133;
  --accent-light: #fef3c7;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;

  /* Typography */
  --font-primary:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  /* Spacing */
  --section-padding: 6rem;
  --container-max: 1248px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 200ms ease;
  --transition-slow: 300ms ease;
}

/* ============================================
   BASE STYLES
   ============================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

/* Selection */
::selection {
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.35;
  color: var(--secondary);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.375rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-500);
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* Background Variants */
.bg-white {
  background-color: var(--white);
}
.bg-gray {
  background-color: var(--gray-50);
}
.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}

.bible-verse-container {
  margin-top: -40px;
  padding: 0 12px;
  font-family: "Great Vibes", cursive;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--gray-800);
  border-color: var(--gray-800);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--secondary);
  border-color: var(--gray-300);
}

.btn-outline:hover {
  background-color: var(--gray-50);
  border-color: var(--gray-400);
  color: var(--secondary);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}

.btn-white:hover {
  background-color: var(--gray-100);
  border-color: var(--gray-100);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-icon {
  padding: 0.75rem;
}

.btn .material-symbols-outlined {
  font-size: 1.25rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo {
  height: 44px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  background-color: var(--gray-50);
}

.nav-link.active {
  color: var(--primary);
}

.nav-link .material-symbols-outlined {
  font-size: 1.25rem;
  transition: transform var(--transition);
}

.nav-item:hover .nav-link .material-symbols-outlined {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--secondary);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Expo Button */
.expo-btn {
  background-image: url("../assets/brand_nuwe_kragdag.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--white);
  width: 140px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.expo-btn:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem 1.5rem;
  animation: fadeInDown 0.8s ease-out;
  margin-top: -58px;
  margin-bottom: 48px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  max-width: 500px;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 60px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("../assets/sheep.jpg") center/cover no-repeat;
  opacity: 0.1;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.hero-trust .material-symbols-outlined {
  color: var(--primary);
  font-size: 1.25rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: auto;
  height: 60vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  padding: 4rem 0;
  background: var(--secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray-300);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-icon .material-symbols-outlined {
  font-size: 1.75rem;
}

/* Icon Color Variants */
.feature-icon.icon-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.feature-card:hover .feature-icon.icon-blue {
  background: rgba(59, 130, 246, 0.15);
  transform: scale(1.05);
}

.feature-icon.icon-red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.feature-card:hover .feature-icon.icon-red {
  background: rgba(239, 68, 68, 0.15);
  transform: scale(1.05);
}

.feature-icon.icon-purple {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.feature-card:hover .feature-icon.icon-purple {
  background: rgba(168, 85, 247, 0.15);
  transform: scale(1.05);
}

.feature-icon.icon-orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.feature-card:hover .feature-icon.icon-orange {
  background: rgba(249, 115, 22, 0.15);
  transform: scale(1.05);
}

.feature-icon.icon-teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}

.feature-card:hover .feature-icon.icon-teal {
  background: rgba(20, 184, 166, 0.15);
  transform: scale(1.05);
}

.feature-icon.icon-indigo {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.feature-card:hover .feature-icon.icon-indigo {
  background: rgba(99, 102, 241, 0.15);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Feature Row (Alternating Layout) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.feature-row:nth-child(even) .feature-row-content {
  order: 2;
}

.feature-row-content h2 {
  margin-bottom: 1.5rem;
}

.feature-row-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--gray-700);
}

.feature-list li .material-symbols-outlined {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-row-image {
  position: relative;
}

.feature-row-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   HARDWARE SECTION
   ============================================ */

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.hardware-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.hardware-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.hardware-image {
  height: 220px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hardware-image img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
}

.hardware-content {
  padding: 1.5rem;
}

.hardware-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.hardware-content p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.hardware-price {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  border-radius: var(--radius-full);
}

/* ============================================
   APP SHOWCASE
   ============================================ */

.app-showcase {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--gray-800) 100%
  );
  color: var(--white);
}

.app-showcase .section-header h2 {
  color: var(--white);
}

.app-showcase .section-header p {
  color: var(--gray-300);
}

.app-screenshots {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.app-desktop {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.app-screenshot {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.app-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.app-screenshot-caption {
  padding: 1rem;
  background: var(--gray-50);
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}

.app-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Oom image cropped 20% top and bottom */
.oom-cropped {
  object-fit: cover;
  object-position: center;
  height: 100% !important;
}

.app-mobile .app-screenshot {
  max-width: 400px;
}

/* ============================================
   STORE SECTION
   ============================================ */

.store-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  height: 220px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.product-image img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-clickable {
  cursor: pointer;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 154, 99, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-overlay .material-symbols-outlined {
  font-size: 2rem;
}

.product-image:hover .product-overlay {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.product-badge.sale {
  background: var(--error);
}

.product-content {
  padding: 1.5rem;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.product-description {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.product-original-price {
  font-size: 1rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
}

.product-actions .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

/* ============================================
   PRICING TABLE SECTION
   ============================================ */

.pricing-table-wrapper {
  overflow-x: auto;
  margin: 0 -1.5rem;
  padding: 0 1.5rem;
}

.pricing-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Header Styles */
.pricing-table thead th {
  padding: 1.5rem 1rem;
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-200);
  vertical-align: top;
  text-align: center;
}

.pricing-table thead th.feature-column {
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  width: 220px;
  background: var(--white);
}

.pricing-table thead th.plan-column {
  position: relative;
  min-width: 160px;
}

.pricing-table thead th.plan-column.featured {
  background: var(--primary-light);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  border-top: 2px solid var(--primary);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  width: 140px;
}

.plan-header {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.plan-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
}

.plan-description {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--gray-500);
}

.plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-top: 0.5rem;
}

.plan-period {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-500);
}

/* Body Styles */
.pricing-table tbody td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.pricing-table tbody td.feature-name {
  text-align: left;
  font-weight: 500;
  color: var(--gray-700);
}

.pricing-table tbody td.featured-cell {
  background: var(--primary-light);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

/* Category Row */
.pricing-table tbody tr.category-row td {
  background: var(--gray-50);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  text-align: left;
  padding: 0.75rem 1rem;
}

/* Check and Cross Icons */
.pricing-table .material-symbols-outlined.check {
  color: var(--primary);
  font-size: 1.25rem;
}

.pricing-table .material-symbols-outlined.cross {
  color: var(--gray-300);
  font-size: 1.25rem;
}

/* Footer Styles */
.pricing-table tfoot td {
  padding: 1.5rem 1rem;
  background: var(--gray-50);
  border-top: 2px solid var(--gray-200);
  text-align: center;
}

.pricing-table tfoot td.featured-cell {
  background: var(--primary-light);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
}

.pricing-table tfoot .btn {
  width: 100%;
  max-width: 140px;
}

/* Hover Effects */
.pricing-table tbody tr:hover td {
  background: var(--gray-50);
}

.pricing-table tbody tr:hover td.featured-cell {
  background: rgba(31, 154, 99, 0.15);
}

.pricing-table tbody tr.category-row:hover td {
  background: var(--gray-50);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .pricing-table {
    min-width: 800px;
  }

  .pricing-table thead th.feature-column {
    width: 180px;
  }

  .plan-price {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-table-wrapper {
    margin: 0 -1rem;
    padding: 0 1rem;
  }

  .pricing-table {
    min-width: 700px;
  }

  .pricing-table thead th,
  .pricing-table tbody td,
  .pricing-table tfoot td {
    padding: 0.75rem 0.5rem;
  }

  .plan-name {
    font-size: 1rem;
  }

  .plan-description {
    font-size: 0.75rem;
  }

  .plan-price {
    font-size: 1.25rem;
  }

  .pricing-table tfoot .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
}

/* ============================================
   SUBSCRIPTION EXPLAINER SECTION
   ============================================ */

.subscription-explainer {
  max-width: 1100px;
  margin: 0 auto;
}

.explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.explainer-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}

.explainer-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.explainer-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.explainer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
}

.explainer-icon .material-symbols-outlined {
  font-size: 2rem;
}

.explainer-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.explainer-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

.explainer-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
}

.explainer-note .material-symbols-outlined {
  color: var(--primary);
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.explainer-note strong {
  display: block;
  color: var(--secondary);
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.explainer-note p {
  color: var(--gray-700);
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .explainer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .explainer-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .explainer-card {
    padding: 2rem 1.5rem 1.5rem;
  }

  .explainer-icon {
    width: 60px;
    height: 60px;
  }

  .explainer-icon .material-symbols-outlined {
    font-size: 1.75rem;
  }

  .explainer-note {
    padding: 1.25rem;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-white {
  margin: 0 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--secondary);
  color: var(--gray-300);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--gray-400);
  line-height: 1.7;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-700);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gray-700);
  color: var(--gray-300);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   CART SIDEBAR
   ============================================ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-slow);
  box-shadow: var(--shadow-xl);
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.cart-header h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  margin: 0;
}

.cart-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.cart-close:hover {
  background: var(--gray-200);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-image img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}

.qty-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.cart-item-remove {
  margin-left: auto;
  padding: 0.25rem 0.5rem;
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: color var(--transition);
}

.cart-item-remove:hover {
  color: var(--error);
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-400);
}

.cart-empty .material-symbols-outlined {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.cart-total-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.cart-checkout {
  width: 100%;
}

/* Cart Icon */
.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.cart-icon:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ============================================
   MODALS
   ============================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--transition);
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.modal-header h2 {
  font-size: 1.5rem;
  margin: 0;
}

.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--gray-200);
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  max-height: calc(90vh - 140px);
}

.scroll-container {
  padding: 1.5rem;
  overflow-y: auto;
  max-height: calc(90vh - 80px);
}

/* ============================================
   PRODUCT DETAIL MODAL
   ============================================ */
.product-modal .modal-content {
  max-width: 1000px;
  width: 95%;
  padding: 0;
  overflow: hidden;
}

.product-modal-content {
  position: relative;
}

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.product-modal-close:hover {
  background: var(--gray-100);
  transform: scale(1.1);
}

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 90vh;
}

.product-modal-gallery {
  background: var(--gray-50);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-modal-main-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
}

.product-modal-main-image img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.product-modal-thumbnails {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.product-modal-thumbnail {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  background: var(--white);
}

.product-modal-thumbnail:hover,
.product-modal-thumbnail.active {
  border-color: var(--primary);
}

.product-modal-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-info {
  padding: 2rem;
  overflow-y: auto;
  max-height: 90vh;
}

.product-modal-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.product-modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.product-modal-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-modal-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.product-modal-original-price {
  font-size: 1.25rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.product-modal-description {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-modal-features {
  margin-bottom: 1.5rem;
}

.product-modal-features h4,
.product-modal-specs h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.product-modal-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-modal-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--gray-600);
  font-size: 0.9375rem;
}

.product-modal-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
}

.product-modal-specs {
  margin-bottom: 1.5rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--gray-200);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 0.75rem 0;
  font-size: 0.9375rem;
}

.specs-table td:first-child {
  color: var(--gray-500);
  width: 40%;
}

.specs-table td:last-child {
  color: var(--gray-800);
  font-weight: 500;
}

/* Policy modal tables (refund, promo terms) */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9375rem;
}

.policy-table th {
  text-align: left;
  padding: 0.625rem 0.75rem;
  background: var(--gray-100);
  color: var(--gray-700);
  font-weight: 600;
  border-bottom: 2px solid var(--gray-200);
}

.policy-table td {
  padding: 0.625rem 0.75rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.policy-table tr:last-child td {
  border-bottom: none;
}

.scroll-container ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.scroll-container ul li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.scroll-container h3 {
  font-size: 1rem;
  color: var(--secondary);
  margin: 1.5rem 0 0.5rem;
}

.scroll-container h3:first-of-type {
  margin-top: 1rem;
}

.scroll-container p {
  margin-bottom: 0.75rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.scroll-container a {
  color: var(--primary);
  text-decoration: none;
}

.scroll-container a:hover {
  text-decoration: underline;
}
}

.product-modal-actions {
  display: flex;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.product-modal-actions .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Responsive Product Modal */
@media (max-width: 768px) {
  .product-modal-body {
    grid-template-columns: 1fr;
  }

  .product-modal-gallery {
    padding: 1.5rem;
  }

  .product-modal-main-image {
    min-height: 200px;
  }

  .product-modal-main-image img {
    max-height: 250px;
  }

  .product-modal-info {
    padding: 1.5rem;
    max-height: none;
  }

  .product-modal-title {
    font-size: 1.5rem;
  }

  .product-modal-price {
    font-size: 1.5rem;
  }

  .product-modal-actions {
    flex-direction: column;
  }
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--gray-700);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 154, 99, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Honeypot */
.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* Messages */
.success-message,
.error-message {
  display: none;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.success-message {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid var(--success);
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
  border: 1px solid var(--error);
}

.loading {
  display: none;
  text-align: center;
  padding: 1rem;
  color: var(--gray-500);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-logo {
    max-width: 420px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-row:nth-child(even) .feature-row-content {
    order: 0;
  }

  .app-screenshots {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem;
  }

  .bible-verse-container {
    margin-top: -30px;
    padding: 0 12px;
    font-family: "Great Vibes", cursive;
  }

  .hero {
    padding: 7rem 0 4rem;
  }

  .hero-logo-wrapper {
    padding: 1.5rem 1rem 1rem;
  }

  .hero-logo {
    max-width: 340px;
  }

  .hero-image img {
    height: 50vh;
  }

  .navbar-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
  }

  .navbar-nav.active {
    transform: translateX(0);
  }

  .nav-link {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-actions .btn {
    display: none;
  }

  .expo-btn {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6.5rem 0 3rem;
  }

  .hero-logo-wrapper {
    padding: 1rem 1rem 0.75rem;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .hero-logo {
    max-width: 260px;
  }

  .hero-title {
    font-size: 1.875rem;
    line-height: 1.25;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    font-size: 0.8125rem;
  }

  .hero-image img {
    height: 40vh;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .product-actions {
    flex-direction: column;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

.hidden {
  display: none !important;
}

/* Kragdag Logo Styles */
.kd-logo {
  background-color: var(--white);
  background-image: url(../assets/brand_nuwe_kragdag.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 80%;
  height: 59px;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto 1rem;
}

/* Multi-select for forms */
.multi-select-group {
  margin-bottom: 1.25rem;
}

.multi-select-group .main-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: var(--gray-700);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.checkbox-item label {
  margin: 0;
  font-weight: 400;
  cursor: pointer;
}

/* ============================================
   ORDER FORM MODAL
   ============================================ */
body.modal-open {
  overflow: hidden;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.order-modal-content {
  max-width: 1000px;
  width: 95%;
}

.order-layout {
  display: flex;
  gap: 2rem;
}

.order-summary {
  flex: 0 0 456px;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.5rem;
  align-self: flex-start;
  position: sticky;
  top: 0;
}

.order-details {
  flex: 1;
  min-width: 0;
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.form-section-title:first-child,
.order-summary .form-section-title {
  margin-top: 0;
}

/* Order Table Styles */
.order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.order-table th,
.order-table td {
  padding: 0.75rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.order-table th {
  font-weight: 600;
  color: var(--gray-600);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.order-table tbody tr:last-child td {
  border-bottom: none;
}

.order-col-qty {
  text-align: center;
  width: 50px;
}

.order-col-price {
  text-align: right;
  white-space: nowrap;
}

.order-total-row td {
  padding-top: 1rem;
  border-top: 2px solid var(--gray-300);
  border-bottom: none;
  font-size: 1rem;
}

.order-notice {
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--primary-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
  font-size: 0.85rem;
  color: var(--gray-700);
}

.order-notice p {
  margin: 0 0 0.5rem 0;
  color: var(--gray-800);
}

.order-notice ul {
  margin: 0;
  padding-left: 1.25rem;
}

.order-notice li {
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.order-notice li:last-child {
  margin-bottom: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkbox-group {
  margin: 0.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

.required {
  color: var(--error, #dc2626);
}

.btn-full {
  width: 100%;
  margin-top: 1.5rem;
}

#orderForm .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .order-layout {
    flex-direction: column;
    gap: 1.5rem;
  }

  .order-summary {
    flex: none;
    width: 100%;
    position: static;
  }

  .order-modal-content {
    max-width: 100%;
    max-height: 95vh;
  }

  .modal-body {
    max-height: calc(95vh - 100px);
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
