:root {
  --primary: #e5a72d;
  --primary-hover: #d4951b;
  --secondary: #38b0ce;
  --secondary-hover: #2ba2bf;
  --bg-light: #ffffff;
  --bg-panel: rgba(255, 255, 255, 0.6);
  --text-main: #222222;
  --text-muted: #666666;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Glassmorphism Utility */
.glass {
  background: var(--bg-panel);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Card shimmer scan line on hover */
.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent);
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.1s;
}

.glass:hover::before {
  animation: shimmer-scan 0.65s ease forwards;
  opacity: 1;
}

@keyframes shimmer-scan {
  0% {
    left: -75%;
  }

  100% {
    left: 130%;
  }
}

/* Glowing border on hover */
.glass:hover {
  border-color: rgba(56, 176, 206, 0.3);
  box-shadow: 0 8px 40px rgba(56, 176, 206, 0.12), 0 0 0 1px rgba(56, 176, 206, 0.1);
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  text-align: center;
  box-sizing: border-box;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #d4951b);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(229, 167, 45, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: rgba(56, 176, 206, 0.1);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: visible;
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 80px;
  width: auto;
  border-radius: 0;
  box-shadow: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-main);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:not(.btn):hover {
  color: var(--primary);
}

.nav-link:not(.btn)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.nav-link:not(.btn):hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 70% 30%, rgba(56, 176, 206, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 30% 70%, rgba(229, 167, 45, 0.08) 0%, transparent 40%);
  filter: blur(40px);
}

/* Hero Decorative Elements Container */
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* Floating gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0;
  animation: orb-drift 12s ease-in-out infinite, orb-fade-in 1.2s ease-out 0.2s forwards;
}

.hero-orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(56, 176, 206, 0.35) 0%, rgba(56, 176, 206, 0.08) 50%, transparent 70%);
  top: -5%;
  right: 2%;
  animation-duration: 14s;
}

.hero-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(229, 167, 45, 0.28) 0%, rgba(229, 167, 45, 0.06) 50%, transparent 70%);
  bottom: 0%;
  left: -2%;
  animation-duration: 18s;
  animation-delay: 1s;
}

.hero-orb-3 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(56, 176, 206, 0.20) 0%, rgba(229, 167, 45, 0.10) 50%, transparent 70%);
  top: 45%;
  right: 20%;
  animation-duration: 10s;
  animation-delay: 3s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -22px) scale(1.1); }
  50% { transform: translate(-18px, 28px) scale(0.92); }
  75% { transform: translate(22px, 14px) scale(1.06); }
}

@keyframes orb-fade-in {
  to { opacity: 1; }
}

/* Rotating orbital rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: ring-spin 40s linear infinite, orb-fade-in 1.5s ease-out 0.5s forwards;
}

.hero-ring-1 {
  width: 480px;
  height: 480px;
  top: 50%;
  left: 50%;
  margin-top: -240px;
  margin-left: -240px;
  border: 1.5px dashed rgba(56, 176, 206, 0.18);
}

.hero-ring-2 {
  width: 680px;
  height: 680px;
  top: 50%;
  left: 50%;
  margin-top: -340px;
  margin-left: -340px;
  border: 1px dashed rgba(229, 167, 45, 0.14);
  animation-duration: 55s;
  animation-direction: reverse;
  animation-delay: 0.8s;
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Subtle radial grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(56, 176, 206, 0.08) 1.2px, transparent 1.2px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 65%);
  opacity: 0.8;
}




/* Cursor spotlight glow */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(380px circle at var(--cx, -500px) var(--cy, -500px),
      rgba(56, 176, 206, 0.05),
      transparent 70%);
  transition: background 0.1s;
}

/* Subtle dot grid on sections */
.section {
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(56, 176, 206, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.section>* {
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -1px;
  margin-bottom: 24px;
}

/* Glitch effect for "X-Penny" */
.glitch-text {
  position: relative;
  display: inline-block;
  color: var(--text-dark);
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text::before {
  color: var(--secondary);
  animation: glitch-top 5s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
  transform: translateX(-3px);
  opacity: 0;
}

.glitch-text::after {
  color: var(--primary);
  animation: glitch-bot 5s infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  transform: translateX(3px);
  opacity: 0;
}

@keyframes glitch-top {

  0%,
  88% {
    opacity: 0;
    transform: translateX(0);
  }

  89% {
    opacity: 1;
    transform: translateX(-4px);
  }

  91% {
    opacity: 1;
    transform: translateX(4px);
  }

  93% {
    opacity: 0;
    transform: translateX(0);
  }

  94% {
    opacity: 1;
    transform: translateX(-2px);
  }

  96% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes glitch-bot {

  0%,
  90% {
    opacity: 0;
    transform: translateX(0);
  }

  91% {
    opacity: 1;
    transform: translateX(4px);
  }

  93% {
    opacity: 1;
    transform: translateX(-4px);
  }

  95% {
    opacity: 0;
    transform: translateX(0);
  }

  96% {
    opacity: 1;
    transform: translateX(2px);
  }

  98% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* Animated flowing gradient for "AI Eastern Medicine Robots" */
.text-gradient {
  background: linear-gradient(90deg,
      var(--primary) 0%,
      var(--secondary) 30%,
      #a8e6f0 50%,
      var(--secondary) 70%,
      var(--primary) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Only animate in the hero */
.hero-content .text-gradient {
  animation: gradient-flow 4s linear infinite;
  filter: drop-shadow(0 0 18px rgba(56, 176, 206, 0.4));
}

@keyframes gradient-flow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 250% center;
  }
}

/* Typewriter cursor blink */
.typewriter::after {
  content: '|';
  color: var(--secondary);
  animation: blink-cursor 1s step-end infinite;
  margin-left: 2px;
}

@keyframes blink-cursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px auto;
  min-height: 2.5em;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(229, 167, 45, 0.1);
  border: 1px solid rgba(229, 167, 45, 0.25);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Hero Particles Canvas */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scroll-fade 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--secondary);
  border-radius: 3px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

@keyframes scroll-fade {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* ======================== STATS BAR ======================== */
.stats-bar {
  padding: 50px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(229, 167, 45, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(56, 176, 206, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 10px 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
  flex-shrink: 0;
}

/* ======================== FEATURED PRODUCTS ======================== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.featured-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  cursor: pointer;
}

.featured-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(56, 176, 206, 0.15), 0 0 0 1px rgba(56, 176, 206, 0.15);
}

.featured-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(229, 167, 45, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}

.featured-card:hover .featured-card-glow {
  opacity: 1;
}

.featured-card-img {
  padding: 30px 30px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
  z-index: 1;
}

.featured-card-img img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0px 8px 16px rgba(0,0,0,0.08));
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-card-img img {
  transform: scale(1.08);
}

.featured-card-body {
  padding: 20px 30px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.featured-tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(229, 167, 45, 0.12);
  color: var(--primary);
  border: 1px solid rgba(229, 167, 45, 0.2);
  margin-bottom: 14px;
}

.featured-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-main);
  line-height: 1.3;
}

.featured-card-body p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.featured-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
  transition: color 0.3s, transform 0.3s;
}

.featured-card:hover .featured-link {
  color: var(--primary);
  transform: translateX(4px);
}

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

/* ======================== HOW IT WORKS ======================== */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-item {
  text-align: center;
  padding: 40px 24px 32px;
  position: relative;
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-8px);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.step-connector {
  position: absolute;
  top: 55px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 5;
}

.step-item:last-child .step-connector {
  display: none;
}

.step-item h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.step-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ======================== WHY CHOOSE US ======================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: inline-block;
  animation: icon-float 3s ease-in-out infinite;
}

.why-card:nth-child(2) .why-icon { animation-delay: 0.3s; }
.why-card:nth-child(3) .why-icon { animation-delay: 0.6s; }
.why-card:nth-child(4) .why-icon { animation-delay: 0.9s; }
.why-card:nth-child(5) .why-icon { animation-delay: 1.2s; }
.why-card:nth-child(6) .why-icon { animation-delay: 1.5s; }

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

.why-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ======================== CTA BANNER ======================== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
  text-align: center;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  left: -100px;
  animation: cta-float 8s ease-in-out infinite;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: -80px;
  right: -80px;
  animation: cta-float 10s ease-in-out infinite reverse;
}

.cta-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--primary);
  top: 50%;
  left: 60%;
  animation: cta-float 6s ease-in-out infinite 2s;
}

@keyframes cta-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -20px) scale(1.05); }
  50% { transform: translate(-10px, 15px) scale(0.95); }
  75% { transform: translate(15px, 10px) scale(1.02); }
}

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

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.cta-buttons .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}



/* Sections General */
.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text {
  padding: 40px;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--primary);
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateX(10px);
  border-color: rgba(56, 176, 206, 0.3);
}

.feature-icon {
  font-size: 2rem;
  display: inline-block;
  animation: icon-float 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
  animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
  animation-delay: 1s;
}

@keyframes icon-float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.1);
  }
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Products Section */
.product-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 40px;
  overflow: hidden;
}

.product-spotlight.row-reverse {
  direction: rtl;
}

.product-spotlight.row-reverse > * {
  direction: ltr;
}

.spotlight-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-content h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.spotlight-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  color: var(--text-main);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: bold;
}

.spotlight-image {
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.bg-gradient {
  background: linear-gradient(45deg, rgba(229, 167, 45, 0.1), rgba(56, 176, 206, 0.1));
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.product-card {
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(229, 167, 45, 0.4);
  box-shadow: 0 10px 30px rgba(229, 167, 45, 0.1);
}

.product-card h4 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Product Status Badges */
.product-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}

.product-status-badge.available {
  background: rgba(46, 160, 67, 0.1);
  color: #2ea043;
  border: 1px solid rgba(46, 160, 67, 0.25);
}

.product-status-badge.coming-soon {
  background: rgba(229, 167, 45, 0.1);
  color: #c48a15;
  border: 1px solid rgba(229, 167, 45, 0.3);
}

/* Coming Soon Section */
.coming-soon-section {
  background: rgba(0, 0, 0, 0.015);
}

.coming-soon-card {
  position: relative;
}

.coming-soon-card .spotlight-image {
  position: relative;
}

.coming-soon-card .spotlight-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}


/* Technology Section */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tech-card {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.05);
}

.tech-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  font-family: var(--font-heading);
}

.tech-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  color: var(--secondary);
}

.tech-card p {
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* Contact / Agents */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.agent-card {
  padding: 40px 30px;
  position: relative;
  overflow: visible;
  /* allow region-badge to overflow card top */
}

.region-badge {
  position: absolute;
  top: -15px;
  left: 30px;
  background: var(--bg-light);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.agent-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  margin-top: 10px;
  color: var(--text-main);
}

.agent-name {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.contact-details p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-details p:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-details span {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Notice Banner */
.notice-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, rgba(229, 167, 45, 0.08), rgba(56, 176, 206, 0.08));
  border: 1px solid rgba(229, 167, 45, 0.3);
  border-left: 4px solid var(--primary);
  border-radius: 16px;
  animation: notice-fade-in 0.8s ease-out;
}

@keyframes notice-fade-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notice-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.notice-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.notice-content p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-main);
}

.notice-content p strong {
  color: var(--primary);
}



/* Email links in contact details */
.contact-details a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Agent card hover enhancement */
.agent-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Footer */
.footer {
  padding: 40px 0;
  text-align: center;
  border-radius: 0;
  border-bottom: none;
  border-left: none;
  border-right: none;
  margin-top: 60px;
}

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

/* Responsive */
@media (max-width: 992px) {

  .about-grid,
  .product-spotlight {
    grid-template-columns: 1fr;
  }

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

  .featured-grid .featured-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .step-connector {
    display: none;
  }

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

@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .logo img {
    height: 55px;
  }

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

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    align-items: center;
  }

  .nav.active {
    display: flex;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 10px 0;
  }

  .nav .btn {
    margin-top: 10px;
    width: auto;
    max-width: 200px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .notice-banner {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .notice-icon {
    font-size: 1.5rem;
  }

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

  .stats-grid {
    flex-wrap: wrap;
    gap: 10px;
  }

  .stat-item {
    flex: 0 0 45%;
    padding: 15px 10px;
  }

  .stat-divider {
    display: none;
  }

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

  .featured-grid .featured-card:last-child {
    max-width: 100%;
  }

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

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

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .scroll-indicator {
    display: none;
  }
}