* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Darmalian exact colors - only button colors slightly changed */
  --primary: #6C63FF;        /* Darmalian primary - keep exact */
  --primary-dark: #5a52d4;
  --primary-light: #8f88ff;
  --secondary: #FF6584;       /* Darmalian secondary - keep exact */
  --secondary-dark: #e05572;
  --secondary-light: #ff8fa3;
  --accent: #2ecc71;          /* Keep exact */
  --accent-dark: #27ae60;
  
  /* Holderlian button variations - slightly different */
  --btn-primary: #FF8A5C;     /* New button color - warmer orange */
  --btn-primary-hover: #ff6b3d;
  --btn-secondary: #4ECDC4;    /* New secondary button - teal */
  --btn-secondary-hover: #3db9b0;
  
  --dark: #0f0f1a;
  --darker: #080812;
  --light: #f8faff;
  --lighter: #ffffff;
  --text: #1a1a2e;
  --text-light: #4a4a6a;
  --gray: #e1e5f0;
  --gray-dark: #2d2d44;
  
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(108, 99, 255, 0.15);
  --border-radius: 24px;
  --border-radius-sm: 16px;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dark-mode {
  --primary: #8f88ff;
  --primary-dark: #6C63FF;
  --secondary: #ff8fa3;
  --secondary-dark: #FF6584;
  --btn-primary: #FF9F6E;
  --btn-primary-hover: #ff8552;
  --btn-secondary: #6FD9D1;
  --btn-secondary-hover: #5ac9c1;
  --dark: #f8faff;
  --darker: #ffffff;
  --light: #12121a;
  --lighter: #1a1a26;
  --text: #f0f0f5;
  --text-light: #b0b0c0;
  --gray: #2a2a3a;
  --gray-dark: #3a3a50;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  transition: background 0.4s, color 0.3s;
}

#gradient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(248, 250, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(108, 99, 255, 0.1);
  transition: var(--transition);
}

.dark-mode header {
  background: rgba(10, 10, 20, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  text-decoration: none;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--btn-primary);  /* New button color */
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.nav-cta:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.nav-login {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

.nav-login:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  background: var(--gray);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 1.2rem;
  transition: var(--transition);
  position: relative;
}

.theme-toggle i {
  position: absolute;
  transition: var(--transition);
}

.theme-toggle .fa-sun {
  opacity: 0;
  transform: scale(0.5);
}

.dark-mode .theme-toggle .fa-moon {
  opacity: 0;
  transform: scale(0.5);
}

.dark-mode .theme-toggle .fa-sun {
  opacity: 1;
  transform: scale(1);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 200;
}

.menu-button span {
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

.menu-button.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: var(--secondary);
}

.menu-button.active span:nth-child(2) {
  opacity: 0;
}

.menu-button.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
  background: var(--accent);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: fadeUp 0.8s ease-out;
}

.chip-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.chip {
  padding: 0.4rem 1rem;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(108, 99, 255, 0.2);
}
@media (max-width: 480px) {
  .chip-group {
    justify-content: space-between;
    gap: 0.5rem;
  }
  
  .chip-group .chip {
    white-space: nowrap;
    font-size: 0.8.5rem;
    padding: 0.3rem 0.8rem;
  }
}

.hero-title {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.highlight-text {
  background: linear-gradient(135deg, var(--primary) 20%, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.2rem;
  background: var(--btn-primary);  /* New button color */
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(255, 138, 92, 0.3);
}

.btn-primary:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 138, 92, 0.4);
  gap: 1.2rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.2rem;
  background: transparent;
  color: var(--text);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--gray);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.platform-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.platform-badge {
  padding: 0.5rem 1rem;
  background: var(--lighter);
  border-radius: 50px;
  font-size: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--gray);
  color: var(--text);
}

.platform-badge i {
  color: var(--primary);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.profile-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 63% 37% 54% 46% / 42% 53% 47% 58%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  padding: 8px;
  box-shadow: 0 30px 60px -15px rgba(108, 99, 255, 0.6);
}

.profile-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
  background-size: 30px 30px, 30px 30px, 60px 60px, 60px 60px;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.profile-frame .profile-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.4), transparent 70%);
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.profile-frame::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 55% 45% 65% 35% / 40% 60% 40% 60%;
  z-index: 3;
  pointer-events: none;
}

.profile-frame .geo-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 15px,
    rgba(255, 255, 255, 0.05) 15px,
    rgba(255, 255, 255, 0.05) 30px
  );
  z-index: 3;
  pointer-events: none;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  filter: brightness(1.05) contrast(1.1);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.profile-image:hover {
  transform: scale(1.03);
}

.corner-accent {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  z-index: 4;
  pointer-events: none;
}

.corner-1 {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}

.corner-2 {
  top: 15px;
  right: 15px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 8px 0 0;
}

.corner-3 {
  bottom: 15px;
  left: 15px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 8px;
}

.corner-4 {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

.floating-badge {
  position: absolute;
  background: var(--lighter);
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(108, 99, 255, 0.2);
  backdrop-filter: blur(4px);
  z-index: 10;
  animation: floatBadge 5s ease-in-out infinite;
}

.badge-1 {
  top: 10%;
  right: -5%;
}

.badge-2 {
  bottom: 15%;
  left: -5%;
  animation-delay: 1s;
}

.floating-badge i {
  color: var(--primary);
  font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background: var(--lighter);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  border: 1px solid rgba(108, 99, 255, 0.2);
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--light);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--gray);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(108, 99, 255, 0.1);
  line-height: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  transform: scale(1.1);
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.step-example {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.id-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: monospace;
}

.id-badge.buyer {
  background: rgba(78, 205, 196, 0.1);
  color: #4ECDC4;
  border: 1px solid #4ECDC4;
}

.id-badge.seller {
  background: rgba(255, 138, 92, 0.1);
  color: #FF8A5C;
  border: 1px solid #FF8A5C;
}

.step-highlight {
  font-size: 0.9rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Platforms Section */
.platforms {
  padding: 100px 0;
  background: var(--light);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.platform-card {
  background: var(--lighter);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--gray);
  transition: var(--transition);
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.platform-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.platform-icon.instagram {
  background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
  color: white;
}

.platform-icon.facebook {
  background: #1877f2;
  color: white;
}

.platform-icon.jiji {
  background: #ff5a5f;
  color: white;
}

.platform-icon.whatsapp {
  background: #25d366;
  color: white;
}

.platform-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.platform-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.platform-stats {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--lighter);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--light);
  border-radius: var(--border-radius-sm);
  padding: 2rem;
  border: 1px solid var(--gray);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ID Showcase */
.id-showcase {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.id-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.id-card {
  background: var(--lighter);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.id-card.buyer-card {
  border-top: 5px solid #4ECDC4;
}

.id-card.seller-card {
  border-top: 5px solid #FF8A5C;
}

.id-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.id-header i {
  color: var(--primary);
}

.id-example {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: monospace;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--gray);
  border-radius: 16px;
  color: var(--text);
}

.id-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.id-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.id-features i {
  color: var(--accent);
}

.id-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.id-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Trust Section */
.trust-section {
  padding: 60px 0;
  background: var(--light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--lighter);
  border-radius: 16px;
  border: 1px solid var(--gray);
}

.trust-item i {
  font-size: 2rem;
  color: var(--primary);
}

.trust-item h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--lighter);
}

.faq-grid {
  max-width: 800px;
  margin: 3rem auto 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--gray);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: var(--light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--lighter);
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--lighter);
  color: var(--text-light);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-cta p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background: var(--light);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--border-radius);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.cta-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.cta-card .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-card .btn-primary:hover {
  background: var(--light);
  transform: translateY(-3px);
}

.cta-card .btn-outline {
  border-color: white;
  color: white;
}

.cta-card .btn-outline:hover {
  background: white;
  color: var(--primary);
}

.cta-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.cta-features i {
  color: var(--accent);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--lighter);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  width: 48px;
  height: 48px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-item a, .contact-item address {
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  font-style: normal;
  font-size: 1rem;
}

.social-proof {
  margin-top: 2rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #ffc107;
}

.proof-item span {
  color: var(--text-light);
  margin-left: 0.5rem;
}

.contact-form {
  background: var(--light);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--gray);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--lighter);
  border: 1px solid var(--gray);
  border-radius: 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Footer */
footer {
  background: #080812 !important;
  color: white;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.security-badge i {
  color: var(--accent);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatBadge {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(5px, -10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .platform-badges {
    justify-content: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--lighter);
    flex-direction: column;
    justify-content: center;
    transition: right 0.4s ease;
    box-shadow: var(--shadow-lg);
    z-index: 150;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .menu-button {
    display: flex;
  }
  
  .steps-grid,
  .platforms-grid,
  .features-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  
  .id-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .chip-group {
    justify-content: center;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .platform-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    display: inline-flex !important;
    flex: 0 1 auto !important;
    width: auto !important;
    min-width: 140px !important;
    padding: 0.9rem 1rem !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    gap: 0.5rem !important;
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    min-width: 120px !important;
    padding: 0.8rem 0.5rem !important;
    font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  .platform-badges {
    justify-content: space-between;
    gap: 0.5rem;
  }
  
  .platform-badges {
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
}
.security-badge a{
 color: #ff8fa3;
 text-decoration: none;
}

.darmalian {
  color: #f09433;
  text-decoration: underline;
}