/* ============================================
   OIKU KASIR - DESIGN SYSTEM & STYLES
   Modern POS Application Landing Page
   ============================================ */

/* ============================================
   IMPORTS - Google Fonts
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   DOWNLOAD PROTECTION MODAL
   ============================================ */
.download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
    animation: fadeIn 0.3s ease-out;
}

.download-modal.active {
    display: flex;
}

.download-modal-content {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background-color: #f3f4f6;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #4b5563;
}

.modal-close:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

.download-modal-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.download-modal-content p {
    color: #6b7280;
    font-size: 14px;
    margin: 0 0 24px 0;
}

.download-code-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 16px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.download-code-input:focus {
    outline: none;
    border-color: #0047AB;
    box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.1);
    background-color: #f9fafb;
}

.modal-submit-btn {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 12px;
}

.modal-hint {
    display: block;
    color: #9ca3af;
    font-size: 12px;
    margin-top: 12px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Colors - Primary Palette */
  --color-primary: #0047AB;
  --color-primary-dark: #003380;
  --color-primary-light: #0066CC;
  --color-secondary: #0047AB;
  --color-accent: #F59E0B;
  --color-accent-dark: #D97706;

  /* Gradient */
  --gradient-primary: linear-gradient(135deg, #0047AB 0%, #0066CC 100%);
  --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  --gradient-hero: linear-gradient(180deg, #0047AB 0%, #0047AB 100%);

  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 1.875rem;
  /* 30px */
  --text-4xl: 2.25rem;
  /* 36px */
  --text-5xl: 3rem;
  /* 48px */
  --text-6xl: 3.75rem;
  /* 60px */

  /* Spacing */
  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-5: 1.25rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-10: 2.5rem;
  /* 40px */
  --space-12: 3rem;
  /* 48px */
  --space-16: 4rem;
  /* 64px */
  --space-20: 5rem;
  /* 80px */
  --space-24: 6rem;
  /* 96px */

  /* Border Radius */
  --radius-sm: 0.375rem;
  /* 6px */
  --radius-md: 0.5rem;
  /* 8px */
  --radius-lg: 0.75rem;
  /* 12px */
  --radius-xl: 1rem;
  /* 16px */
  --radius-2xl: 1.5rem;
  /* 24px */
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Container */
  --container-max: 1280px;
  --container-padding: var(--space-6);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-gray-700);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gray-900);
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

/* Custom h1 sizing */
h1.h1-small {
  font-size: var(--text-4xl);
}

/* Custom h3 highlight color */
h3.text-white {
  color: #FFFFFF;
}

h3.font-bold {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 50;
}

.text-highlight {
  color: #FFBE4D;
  font-weight: 700;
  display: inline-block;
}

.text-gradient.hero {
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  display: inline-block;
}

.accent-text {
  color: #F59E0B;
  font-weight: 600;
}

/* Ensure text gradient works in all contexts */
.hero .text-gradient,
.hero-content .text-gradient,
.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  display: inline-block;
}

/* Force text gradient to work properly */
h1 .text-gradient,
h2 .text-gradient,
h3 .text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 60;
}

/* Ensure text gradient works on hero background */
.hero h1 .text-gradient,
.hero h2 .text-gradient,
.hero h3 .text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 70;
}

/* Ensure text gradient works in hero content */
.hero-content .text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 80;
}

/* ============================================
   NAVIGATION HEADER
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px);
  box-shadow: none;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--container-padding);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xl);
  font-weight: 700;
  font-family: var(--font-heading);
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.navbar-menu a {
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-menu a:hover {
  color: white;
}

.navbar-menu a.nav-active {
  color: white;
  font-weight: 600;
}

.navbar.scrolled .navbar-menu a.nav-active {
  color: var(--color-primary);
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width var(--transition-base);
}

.navbar-menu a:hover::after {
  width: 100%;
}

.navbar.scrolled .navbar-menu a {
  color: var(--color-gray-700);
}

.navbar.scrolled .navbar-menu a:hover {
  color: var(--color-primary);
}

.navbar.scrolled .navbar-menu a::after {
  background: var(--gradient-primary);
}

.navbar-cta {
  background: rgba(255, 255, 255, 0.95);
  color: #0047AB;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: white;
}

.navbar.scrolled .navbar-cta {
  background: var(--gradient-primary);
  color: white;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--text-2xl);
  color: white;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  transition: color var(--transition-base);
}

.navbar.scrolled .mobile-menu-toggle {
  color: var(--color-gray-700);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: 120px;
  padding-bottom: var(--space-20);
  background: #0047AB;
  background-image: url('../images/Gradasi.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: visible;
  min-height: 100vh;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.005) 0%, rgba(0, 102, 204, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Hero variant for pricing page */
.hero-pricing {
  min-height: 60vh;
  padding-bottom: 150px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pricing .hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Curved bottom for hero section */
.hero-pricing::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: white;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 2;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 25;
}

/* Hero content styling for all pages */
.hero-content {
  text-align: left;
  position: relative;
  z-index: 95;
}

/* Override for pages with single column hero */
.hero-container.single-column .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: var(--text-6xl);
  margin-bottom: var(--space-6);
  line-height: 1.1;
  color: white;
  font-weight: 700;
  position: relative;
  z-index: 90;
}

/* New Hero Typography Styles */
.hero-title {
  font-size: var(--text-4xl);
  font-weight: 400;
  line-height: 1.2;
  color: white;
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 90;
}

.hero-subtitle {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 90;
}

.hero-description {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-8);
  line-height: 1.7;
  position: relative;
  z-index: 90;
  max-width: 550px;
}

.hero-content h1 .text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 700;
  position: relative;
  z-index: 90;
}

.hero-content p {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  line-height: 1.6;
  position: relative;
  z-index: 90;
}

.hero-content p .accent-text {
  color: #F59E0B;
  font-weight: 600;
  position: relative;
  z-index: 100;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  position: relative;
  z-index: 90;
}

.btn {
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: var(--text-lg);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: #0047AB;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  font-weight: 600;
}

.btn-secondary:hover {
  background: white;
  color: #0047AB;
  border-color: white;
}

.btn-hero {
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-base);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.btn-download svg {
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
  z-index: 15;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-2xl);
  border: 4px solid rgba(255, 255, 255, 0.3);
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Ensure hero content is above all other elements */
.hero>.container>* {
  position: relative;
  z-index: 10;
}

/* Ensure text gradient works properly in all contexts */
.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 100;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: var(--space-20) 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-bottom: var(--space-20);
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse>* {
  direction: ltr;
}

.feature-content h2 {
  margin-bottom: var(--space-6);
}

.feature-content p {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  margin-bottom: var(--space-6);
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  margin-bottom: var(--space-6);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-image {
  position: relative;
}

.feature-image img {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits {
  padding: var(--space-20) 0;
  background: var(--color-gray-50);
}

.benefits h2 {
  text-align: center;
  margin-bottom: var(--space-12);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.benefit-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-base);
}

/* Flat Icon Styles */
.flat-icon {
  border-radius: 16px;
  /* Squircle for flat feel */
}

.flat-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5px;
}

/* Specific Colors for Flat Icons */
.icon-price {
  background: #EBF8FF;
  color: #0047AB;
}

.icon-mobile {
  background: #F0FFF4;
  color: #38A169;
}

.icon-easy {
  background: #FFF5F5;
  color: #E53E3E;
}

.icon-secure {
  background: #EBF4FF;
  color: #3182CE;
}

.icon-report {
  background: #FAF5FF;
  color: #805AD5;
}

.icon-multi {
  background: #FFFFF0;
  color: #D69E2E;
}

.icon-print {
  background: #EDF2F7;
  color: #4A5568;
}

.icon-update {
  background: #E6FFFA;
  color: #319795;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.benefit-card p {
  color: var(--color-gray-600);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  padding: var(--space-20) 0;
}

/* Pricing overlap variant for pricing page */
.pricing-overlap {
  margin-top: -120px;
  position: relative;
  z-index: 10;
  padding-top: 0;
}

.pricing h2 {
  text-align: center;
  margin-bottom: var(--space-4);
}

.pricing-subtitle {
  text-align: center;
  font-size: var(--text-xl);
  color: var(--color-gray-600);
  margin-bottom: var(--space-12);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-2xl);
  transform: translateY(-8px);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  transform: scaleX(1);
}

.pricing-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--color-white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.pricing-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.pricing-price {
  font-size: var(--text-5xl);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
}

.pricing-period {
  color: var(--color-gray-500);
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-8);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  color: var(--color-gray-700);
}

.pricing-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--color-primary-light);
  color: var(--color-white);
  border-radius: 50%;
  font-size: var(--text-sm);
  font-weight: bold;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  padding: var(--space-4);
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: var(--text-lg);
  transition: all var(--transition-base);
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   NEW PRICING DESIGN (JagainCuan Style)
   ============================================ */
.pricing-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card-new {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.pricing-card-new:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pricing-card-featured {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
  border: 2px solid #F59E0B;
}

.pricing-title-new {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: var(--space-6);
  text-align: center;
}

.pricing-features-new {
  list-style: none;
  margin-bottom: var(--space-6);
  padding: 0;
}

.pricing-features-new li {
  padding: var(--space-3) 0;
  color: var(--color-gray-700);
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.pricing-options-new {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: auto;
}

.pricing-btn-new {
  width: 100%;
  padding: var(--space-4);
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-base);
  transition: all var(--transition-base);
  cursor: pointer;
  text-align: center;
}

.pricing-btn-new:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pricing-btn-free {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.pricing-btn-free:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.pricing-btn-favorite {
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  color: white;
  border: none;
  position: relative;
  padding: var(--space-4) var(--space-4) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.pricing-btn-favorite:hover {
  background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pricing-note {
  font-size: var(--text-xs);
  font-weight: 500;
  opacity: 0.95;
  display: block;
}

/* ============================================
   FEATURES GRID (All Features Section)
   ============================================ */
.features-grid-all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  max-width: 1100px;
  margin: 0 auto;
}

.feature-item-all {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.feature-item-all:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon-check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

.feature-item-all span {
  color: var(--color-gray-700);
  font-size: var(--text-base);
  line-height: 1.4;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--space-20) 0;
  background: var(--gradient-primary);
  color: var(--color-white);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.cta-section p {
  font-size: var(--text-xl);
  margin-bottom: var(--space-8);
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--color-white);
  color: #0047AB;
  font-weight: 600;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-300);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand h3 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer-brand p {
  margin-bottom: var(--space-6);
  line-height: 1.8;
}

.footer-section h4 {
  color: var(--color-white);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: var(--color-gray-400);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-800);
  padding-top: var(--space-8);
  text-align: center;
  color: var(--color-gray-500);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
  padding: var(--space-20) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 600;
  color: var(--color-gray-700);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-4);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-card {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-card h3 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --text-6xl: 2.5rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
  }

  .hero-container,
  .feature-row,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .pricing-grid-new {
    grid-template-columns: repeat(2, 1fr);
    margin-top: var(--space-8);
  }

  .features-grid-all {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .navbar-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    gap: var(--space-4);
    z-index: 999;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: var(--space-12);
  }

  .hero-content h1 {
    font-size: var(--text-4xl);
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid-new {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-top: var(--space-6);
  }

  .pricing-card-new {
    padding: var(--space-6);
  }

  .pricing-title-new {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
  }

  .pricing-features-new li {
    font-size: var(--text-sm);
    padding: var(--space-2) 0;
  }

  .pricing-btn-new {
    padding: var(--space-3);
    font-size: var(--text-sm);
  }

  .features-grid-all {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .feature-item-all {
    padding: var(--space-3);
  }

  .feature-item-all span {
    font-size: var(--text-sm);
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

/* Fallback: jika JavaScript tidak berjalan, tetap terlihat */
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced animation untuk saat element pertama kali loading */
@media (prefers-reduced-motion: no-preference) {
  .scroll-animate {
    animation: fadeInUp 0.8s ease-out;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}