/* ============================================
   KREDILINK - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --kredi-lime: #E2FF31;
  --kredi-lime-dark: #C4E000;
  --kredi-black: #0A0A0A;
  --kredi-charcoal: #111111;
  --kredi-gray-900: #141414;
  --kredi-gray-800: #1A1A1A;
  --kredi-gray-700: #222222;
  --kredi-gray-600: #2A2A2A;
  --kredi-gray-500: #3A3A3A;
  --kredi-gray-400: #6A6A6A;
  --kredi-gray-300: #8A8A8A;
  --kredi-gray-200: #AAAAAA;
  --kredi-gray-100: #CCCCCC;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--kredi-black);
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Grid Pattern Background */
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(226, 255, 49, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 255, 49, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--kredi-lime) 0%, #BFFF00 50%, var(--kredi-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow Effects */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--kredi-lime);
  color: var(--kredi-black);
}

.btn-primary:hover {
  background-color: var(--kredi-lime-dark);
  box-shadow: 0 0 30px rgba(226, 255, 49, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid var(--kredi-gray-600);
}

.btn-secondary:hover {
  border-color: var(--kredi-lime);
  color: var(--kredi-lime);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(226, 255, 49, 0.1);
  color: var(--kredi-lime);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

.badge-pulse {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--kredi-lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Cards */
.card {
  background-color: var(--kredi-gray-900);
  border: 1px solid var(--kredi-gray-700);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(226, 255, 49, 0.3);
  box-shadow: 0 0 40px rgba(226, 255, 49, 0.1);
}

.card-lg {
  padding: 2.5rem 3rem;
}

/* Icon Box */
.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kredi-gray-800);
  border: 1px solid var(--kredi-gray-700);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.icon-box i {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--kredi-lime);
}

.card:hover .icon-box {
  background-color: rgba(226, 255, 49, 0.1);
  border-color: rgba(226, 255, 49, 0.3);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(34, 34, 34, 0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--kredi-lime);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease;
}

.logo:hover .logo-icon {
  box-shadow: 0 0 20px rgba(226, 255, 49, 0.5);
}

.logo-icon i {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--kredi-black);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--kredi-lime);
}

/* Desktop Nav */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--kredi-gray-100);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background-color: var(--kredi-lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: flex;
  }
}

/* Mobile Menu */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle i {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--kredi-charcoal);
  border-top: 1px solid var(--kredi-gray-700);
  padding: 1.5rem;
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--kredi-gray-100);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--kredi-lime);
  background-color: var(--kredi-gray-800);
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero .glow-blob-1 {
  top: 25%;
  left: 25%;
  width: 600px;
  height: 600px;
  background-color: rgba(226, 255, 49, 0.05);
}

.hero .glow-blob-2 {
  bottom: 25%;
  right: 25%;
  width: 400px;
  height: 400px;
  background-color: rgba(226, 255, 49, 0.03);
  filter: blur(100px);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  overflow: visible;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--kredi-gray-700);
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero h1 .line {
  display: block;
}

.hero h1 .line.gradient-text {
  white-space: nowrap;
  font-size: clamp(1.5rem, 5vw, 4.5rem);
}

.hero p {
  font-size: 1.125rem;
  color: var(--kredi-gray-200);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .hero p {
    font-size: 1.25rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid var(--kredi-gray-600);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--kredi-lime);
  border-radius: 50%;
  animation: scroll-bounce 1.5s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   METRICS BAR
   ============================================ */
.metrics-bar {
  padding: 3rem 0;
  border-top: 1px solid var(--kredi-gray-800);
  border-bottom: 1px solid var(--kredi-gray-800);
  background-color: var(--kredi-charcoal);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--kredi-lime);
  margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
  .metric-value {
    font-size: 2.5rem;
  }
}

.metric-label {
  font-size: 0.875rem;
  color: var(--kredi-gray-400);
}

/* ============================================
   COMING SOON PAGE
   ============================================ */
.coming-soon {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 0;
}

.coming-soon-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.coming-soon-content .badge {
  margin-bottom: 1.5rem;
}

.coming-soon-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.coming-soon-content p {
  font-size: 1.125rem;
  color: var(--kredi-gray-300);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.coming-soon-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .coming-soon-cta {
    flex-direction: row;
    justify-content: center;
  }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.section-dark {
  background-color: var(--kredi-charcoal);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .badge {
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--kredi-gray-300);
  max-width: 42rem;
  margin: 0 auto;
}

/* ============================================
   PILLARS - STICKY STACKING CARDS
   ============================================ */
.pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    gap: 0;
  }
}

.pillar-card {
  position: relative;
  overflow: hidden;
  background-color: var(--kredi-gray-900);
  border: 1px solid var(--kredi-gray-700);
}

/* Sticky stacking on tablet and up */
@media (min-width: 768px) {
  .pillar-card {
    position: sticky;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  }

  .pillar-card:nth-child(1) {
    top: 100px;
    z-index: 1;
  }

  .pillar-card:nth-child(2) {
    top: 120px;
    z-index: 2;
  }

  .pillar-card:nth-child(3) {
    top: 140px;
    z-index: 3;
  }

  .pillar-card:nth-child(4) {
    top: 160px;
    z-index: 4;
  }
}

@media (min-width: 1024px) {
  .pillar-card {
    min-height: 480px;
    padding: 3rem;
  }

  .pillar-card:nth-child(1) {
    top: 100px;
  }

  .pillar-card:nth-child(2) {
    top: 130px;
  }

  .pillar-card:nth-child(3) {
    top: 160px;
  }

  .pillar-card:nth-child(4) {
    top: 190px;
  }
}

.pillar-card .gradient-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

.pillar-card:hover .gradient-bg {
  opacity: 1;
}

.pillar-card .card-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
}

@media (min-width: 768px) {
  .pillar-card .card-content {
    max-width: 700px;
  }
}

.pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}

@media (min-width: 768px) {
  .pillar-card h3 {
    font-size: 1.75rem;
    margin: 1rem 0 1rem;
  }
}

@media (min-width: 1024px) {
  .pillar-card h3 {
    font-size: 2rem;
  }
}

.pillar-card > p,
.pillar-card .card-content > p {
  color: var(--kredi-gray-300);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .pillar-card > p,
  .pillar-card .card-content > p {
    font-size: 1.125rem;
  }
}

.pillar-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .pillar-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
  }
}

.pillar-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--kredi-gray-400);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .pillar-features li {
    font-size: 1rem;
    margin-bottom: 0;
  }
}

.pillar-features li i {
  width: 1rem;
  height: 1rem;
  color: var(--kredi-lime);
}

@media (min-width: 768px) {
  .pillar-features li i {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--kredi-lime);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(34, 34, 34, 0.5);
  transition: gap 0.3s ease;
}

@media (min-width: 768px) {
  .pillar-link {
    font-size: 1rem;
    padding-top: 2rem;
    margin-top: 0.5rem;
  }
}

.pillar-link:hover {
  gap: 0.75rem;
}

.pillar-link i {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 768px) {
  .pillar-link i {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* Solutions section - extra padding for sticky scroll */
#solutions {
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  #solutions {
    padding-bottom: 15rem;
  }
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .process-grid {
    gap: 2.5rem;
  }
}

.process-card {
  position: relative;
}

.process-card .card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.process-card .icon-box {
  background-color: rgba(226, 255, 49, 0.1);
  border-color: rgba(226, 255, 49, 0.3);
}

.process-card .step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--kredi-gray-800);
}

.process-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.process-card p {
  color: var(--kredi-gray-400);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-card {
  position: relative;
  background-color: var(--kredi-gray-900);
  border: 1px solid var(--kredi-gray-700);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 4rem 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-card {
    padding: 5rem 4rem;
  }
}

.cta-card .glow-blob {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background-color: rgba(226, 255, 49, 0.1);
}

.cta-card .content {
  position: relative;
  z-index: 10;
}

.cta-card h2 {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.cta-card p {
  color: var(--kredi-gray-300);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-value {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--kredi-lime);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--kredi-gray-400);
}

/* ============================================
   ABOUT PAGE - PROBLEM/SOLUTION
   ============================================ */
.problem-solution {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .problem-solution {
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .problem-solution {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
    align-items: center;
  }
}

.problem-solution .badge-red {
  background-color: rgba(239, 68, 68, 0.1);
  color: #f87171;
}

.problem-solution h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
}

.problem-solution > div > p {
  color: var(--kredi-gray-300);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.problem-list,
.solution-list {
  list-style: none;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--kredi-gray-400);
  margin-bottom: 0.75rem;
}

.problem-list li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background-color: #f87171;
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--kredi-gray-300);
  margin-bottom: 0.75rem;
}

.solution-list li i {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--kredi-lime);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ============================================
   VISION/MISSION CARDS
   ============================================ */
.vision-mission-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .vision-mission-grid {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .vision-mission-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.vision-card,
.mission-card {
  position: relative;
  overflow: hidden;
}

.vision-card .glow-blob {
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  background-color: rgba(226, 255, 49, 0.1);
  filter: blur(80px);
}

.mission-card .glow-blob {
  bottom: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  background-color: rgba(226, 255, 49, 0.1);
  filter: blur(80px);
}

.vision-card .card-content,
.mission-card .card-content {
  position: relative;
  z-index: 10;
}

.vision-card .icon-box,
.mission-card .icon-box {
  background-color: rgba(226, 255, 49, 0.1);
  border-color: rgba(226, 255, 49, 0.3);
  margin-bottom: 1.5rem;
}

.vision-card h3,
.mission-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--kredi-lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.vision-card p,
.mission-card p {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 1024px) {
  .vision-card p,
  .mission-card p {
    font-size: 1.875rem;
  }
}

/* Values Grid */
.values-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .values-grid {
    margin-top: 4rem;
  }
}

.value-card .icon-box {
  margin-bottom: 1rem;
}

.value-card .icon-box i {
  width: 2rem;
  height: 2rem;
}

.value-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--kredi-gray-400);
}

/* ============================================
   SECURITY SECTION
   ============================================ */
.security-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .security-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .security-grid {
    gap: 2.5rem;
  }
}

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

.security-card .icon-box {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background-color: rgba(226, 255, 49, 0.1);
  border-color: rgba(226, 255, 49, 0.3);
  border-radius: 16px;
}

.security-card .icon-box i {
  width: 1.75rem;
  height: 1.75rem;
}

.security-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.security-card p {
  color: var(--kredi-gray-400);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .trust-badges {
    gap: 1.5rem;
    margin-top: 4rem;
  }
}

@media (min-width: 1024px) {
  .trust-badges {
    gap: 2rem;
  }
}

.trust-badge {
  padding: 0.75rem 1.5rem;
  background-color: var(--kredi-gray-800);
  border: 1px solid var(--kredi-gray-700);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--kredi-gray-300);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .contact-hero {
    padding: 10rem 0 5rem;
  }
}

.contact-hero .glow-blob {
  top: 33%;
  left: 25%;
  width: 400px;
  height: 400px;
  background-color: rgba(226, 255, 49, 0.05);
}

.contact-hero .content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.contact-hero p {
  font-size: 1.125rem;
  color: var(--kredi-gray-200);
}

/* Contact Form Wrapper - Centered Layout */
.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

@media (min-width: 1024px) {
  .contact-form-wrapper {
    padding-bottom: 4rem;
  }
}

/* Contact Grid (legacy - kept for reference) */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }
}

/* Contact Info */
.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
}

.contact-info-item .icon-box {
  flex-shrink: 0;
}

.contact-info-item h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--kredi-gray-400);
  white-space: pre-line;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--kredi-lime);
}

/* Map Placeholder */
.map-placeholder {
  margin-top: 2.5rem;
  aspect-ratio: 16/9;
  background-color: var(--kredi-gray-900);
  border: 1px solid var(--kredi-gray-700);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder .content {
  text-align: center;
}

.map-placeholder i {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--kredi-lime);
  margin-bottom: 0.75rem;
}

.map-placeholder p {
  font-size: 0.875rem;
  color: var(--kredi-gray-400);
}

.map-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.5), transparent);
  pointer-events: none;
}

/* Contact Form */
.contact-form-card {
  background-color: var(--kredi-gray-900);
  border: 1px solid var(--kredi-gray-700);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background-color: rgba(226, 255, 49, 0.05);
  filter: blur(80px);
  pointer-events: none;
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-form-card {
    padding: 3rem;
  }
}

.form-content {
  position: relative;
  z-index: 1;
}

/* Progress Bar */
.progress-bar {
  margin-bottom: 2rem;
}

.progress-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.progress-bar-header span {
  font-size: 0.875rem;
  color: var(--kredi-gray-400);
}

.progress-bar-header .progress-percent {
  color: var(--kredi-lime);
  font-weight: 500;
}

.progress-bar-track {
  height: 0.25rem;
  background-color: var(--kredi-gray-800);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--kredi-lime);
  border-radius: 9999px;
  transition: width 0.3s ease;
}

/* Form Step Header */
.form-step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-step-header .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(226, 255, 49, 0.1);
  border: none;
  border-radius: 50%;
}

.form-step-header .icon-box i {
  width: 1.25rem;
  height: 1.25rem;
}

.form-step-header h3 {
  font-weight: 600;
}

.form-step-header p {
  font-size: 0.875rem;
  color: var(--kredi-gray-400);
}

/* Form Fields */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--kredi-gray-800);
  border: 1px solid var(--kredi-gray-700);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--kredi-gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--kredi-lime);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236A6A6A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

/* Form Summary */
.form-summary {
  padding: 1rem;
  background-color: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(34, 34, 34, 0.5);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.form-summary h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--kredi-gray-300);
  margin-bottom: 0.75rem;
}

.form-summary p {
  font-size: 0.875rem;
  color: var(--kredi-gray-400);
  margin-bottom: 0.5rem;
}

.form-summary p span {
  color: var(--kredi-gray-500);
}

/* Form Navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(34, 34, 34, 0.5);
}

.form-nav .btn-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--kredi-gray-400);
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.form-nav .btn-back:hover {
  color: #ffffff;
}

.form-nav .btn-back i {
  width: 1rem;
  height: 1rem;
}

.form-nav .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Success State */
.form-success {
  text-align: center;
  padding: 3rem 0;
}

.form-success .icon-box {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  background-color: rgba(226, 255, 49, 0.1);
  border: none;
  border-radius: 50%;
}

.form-success .icon-box i {
  width: 2.5rem;
  height: 2.5rem;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--kredi-gray-400);
  max-width: 24rem;
  margin: 0 auto 2rem;
}

.form-success a {
  color: var(--kredi-lime);
  transition: opacity 0.3s ease;
}

.form-success a:hover {
  opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--kredi-charcoal);
  border-top: 1px solid rgba(34, 34, 34, 0.5);
}

.footer-main {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .footer-main {
    padding: 5rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--kredi-gray-200);
  line-height: 1.7;
  max-width: 20rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kredi-gray-800);
  border: 1px solid var(--kredi-gray-700);
  border-radius: 12px;
  color: var(--kredi-gray-300);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--kredi-lime);
  border-color: rgba(226, 255, 49, 0.5);
  transform: translateY(-3px);
}

.social-link i {
  width: 1rem;
  height: 1rem;
}

/* Footer Links */
.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.875rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--kredi-gray-300);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--kredi-lime);
}

.footer-links a i {
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0;
  transform: translate(4px, -4px);
  transition: all 0.3s ease;
}

.footer-links a:hover i {
  opacity: 1;
  transform: translate(0, 0);
}

/* Footer Bottom */
.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(34, 34, 34, 0.5);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--kredi-gray-400);
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-bottom p {
    text-align: left;
  }
}

.footer-bottom .regulatory {
  max-width: 42rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-bottom .regulatory {
    text-align: right;
  }
}

.footer-bottom .regulatory span {
  color: var(--kredi-gray-300);
  font-weight: 500;
}

/* ============================================
   ANIMATIONS (AOS-like)
   ============================================ */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* Staggered delays */
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="400"] { transition-delay: 400ms; }
