/* ============================================================
   HOME PAGE CSS — home.css
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
/* ── HERO ────────────────────────────────────────────────── */
.dark-hero {
  min-height: 100vh;
  background: #020617;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero-bg-dark {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(232, 160, 32, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(27, 140, 140, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(15, 31, 61, 1) 0%, #020617 100%);
  pointer-events: none;
}

.hero-abstract-wrap {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 70%;
  height: 80%;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

.hero-abstract-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.2) contrast(1.1);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
  padding: 80px 0;
}

.hero-text .hero-badge {
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.3);
  color: var(--amber);
}

.hero-h1 {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 28px;
  color: #fff;
}

.hero-hl-premium {
  display: block;
  background: linear-gradient(135deg, #fff 0%, var(--amber) 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 8px;
}

.hero-p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-trust {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
}

.trust-icons {
  display: flex;
  gap: 32px;
  filter: grayscale(1) brightness(2);
  opacity: 0.4;
  font-weight: 700;
  font-size: 14px;
}

/* Glass Visuals */
.hero-visual-wrap {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--amber);
  top: 10%;
  right: 10%;
  opacity: 0.15;
  animation: orbMove 20s infinite alternate;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: var(--teal);
  bottom: 10%;
  left: 10%;
  opacity: 0.12;
  animation: orbMove 25s infinite alternate-reverse;
}

@keyframes orbMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(30px, -40px);
  }
}

/* Corner Cards */
.hero-corner-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 140px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.c-icon {
  font-size: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.c-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.c-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Corner Positions */
.top-l {
  top: 10%;
  left: -5%;
}

.top-r {
  top: 5%;
  right: -5%;
}

.bot-l {
  bottom: 15%;
  left: -10%;
}

.bot-r {
  bottom: 5%;
  right: -15%;
}

/* Floating Animations */
.float-v1 {
  animation: floatV 6s ease-in-out infinite;
}

.float-v2 {
  animation: floatV 7s ease-in-out infinite reverse;
}

.float-v3 {
  animation: floatV 8s ease-in-out infinite;
  animation-delay: 1s;
}

.float-v4 {
  animation: floatV 6.5s ease-in-out infinite reverse;
  animation-delay: 0.5s;
}

@keyframes floatV {

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

  50% {
    transform: translateY(-15px);
  }
}

/* Animation Adjustments */
.dark-hero .btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.dark-hero .btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}


/* ── HOW WE WORK / PROCESS ───────────────────────────────── */
.process-section {
  background: var(--ivory);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.pg-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .4s, box-shadow .4s, border-color .4s;
  z-index: 1;
}

.pg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15, 31, 61, 0.08);
  border-color: var(--amber);
}

.pg-num {
  position: absolute;
  top: -10px;
  right: -5px;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  z-index: -1;
  opacity: 0.05;
  transition: color 0.4s, opacity 0.4s, transform 0.4s;
}

.pg-card:hover .pg-num {
  color: var(--teal);
  opacity: 0.12;
  transform: scale(1.05) translate(-5px, 5px);
}

.pg-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.pg-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.pg-card.pg-last {
  grid-column: 1 / -1;
  background: var(--navy);
  border-color: var(--navy);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.pg-card.pg-last .pg-title {
  color: var(--ivory);
  font-size: 28px;
  margin-bottom: 16px;
}

.pg-card.pg-last .pg-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  max-width: 600px;
}

.pg-card.pg-last .pg-num {
  top: -30px;
  right: 50%;
  transform: translateX(50%);
  font-size: 200px;
  opacity: 0.03;
}

.pg-card.pg-last:hover .pg-num {
  transform: translateX(50%) scale(1.05);
  color: var(--amber);
  opacity: 0.08;
}

@media (max-width: 960px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .pg-card.pg-last {
    grid-column: 1;
  }
}

.cap-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cap-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 14px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.cap-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(15, 31, 61, 0.04);
}

.cap-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.ui-blue {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
}

.ui-amber {
  background: rgba(232, 160, 32, 0.1);
  color: var(--amber);
}

.ui-teal {
  background: rgba(27, 140, 140, 0.1);
  color: var(--teal);
}

.cap-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cap-text {
  flex: 1;
}

.cap-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.cap-desc {
  font-size: 12px;
  color: var(--text-2);
}

/* Impact Panels */
.impact-panel {
  left: 0;
  bottom: 80px;
  z-index: 3;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  animation: floatUD 7s ease-in-out infinite alternate;
}

.impact-panel-2 {
  right: -20px;
  bottom: 20px;
  z-index: 1;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  transform: scale(0.9);
  animation: floatUD 6s ease-in-out infinite alternate-reverse;
}

.bounce-delay-1 {
  animation-delay: 0.5s;
}

.bounce-delay-2 {
  animation-delay: 1.2s;
}

.imp-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.imp-data {
  display: flex;
  flex-direction: column;
}

.imp-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
}

.imp-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ── WHY CHOOSE US / DIFFERENTIATORS ─────────────────────── */
.differentiators-section {
  background: var(--ivory-2);
}

.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.diff-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.diff-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.diff-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.diff-content p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.vision-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: 22px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vision-card::before {
  content: 'B';
  position: absolute;
  top: -40px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 220px;
  font-weight: 900;
  color: rgba(255, 255, 255, .03);
  line-height: 1;
  pointer-events: none;
}

.vc-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.vc-quote {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ivory);
  font-style: italic;
  line-height: 1.45;
  margin-top: auto;
  margin-bottom: 24px;
}

.vc-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.vc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
}

.vc-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ivory);
}

.vc-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── SERVICES PREVIEW ────────────────────────────────────── */
.services-preview-section {
  background: var(--ivory);
}

.svc-head {
  text-align: center;
  margin-bottom: 0;
}

/* ── TECHNOLOGY ──────────────────────────────────────────── */
.tech-section {
  background: var(--ivory-2);
}

.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 26px;
}

.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 15px 17px;
  transition: border-color .2s, box-shadow .2s;
}

.tech-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.tech-check {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--teal-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.tech-check svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ti-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.ti-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── STATS ───────────────────────────────────────────────── */
.stats-section {
  background: var(--ivory);
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── AI LEVERAGE ─────────────────────────────────────────── */
.ai-section {
  background: var(--navy);
  padding: 100px var(--page-pad);
  color: var(--ivory);
  overflow: hidden;
  position: relative;
}

.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.ai-text .section-label {
  color: var(--amber);
}

.ai-text .section-label::before {
  background: var(--amber);
}

.ai-text .section-title {
  color: var(--ivory);
}

.ai-text .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.ai-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.ai-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.ai-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--amber);
  font-size: 14px;
}

.ai-list strong {
  color: var(--ivory);
  font-weight: 700;
}

.ai-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseRing 4s infinite;
}

.ai-grid-box {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-beam {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(27, 140, 140, 0.2) 60deg, transparent 120deg);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.ai-icon-center {
  width: 80px;
  height: 80px;
  background: var(--navy-2);
  border: 2px solid var(--teal);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 30px rgba(27, 140, 140, 0.4);
}

.ai-icon-center svg {
  width: 40px;
  height: 40px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-node {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1px;
}

.ai-node.n1 {
  top: 10%;
  right: 10%;
  animation: floatUD 4s infinite alternate;
}

.ai-node.n2 {
  bottom: 20%;
  left: 0%;
  animation: floatUD 5s infinite alternate-reverse;
}

.ai-node.n3 {
  bottom: 10%;
  right: 15%;
  animation: floatUD 6s infinite alternate;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section {
  background: var(--ivory-3);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--ivory);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.test-stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.test-quote {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
  flex: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.ta-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.ta-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.ta-role {
  font-size: 12px;
  color: var(--text-3);
}

/* ── FAQs ────────────────────────────────────────────────── */
.faq-section {
  background: var(--ivory);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--ivory-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 32px;
  transition: border-color 0.2s;
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--teal);
}

.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.faq-a {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {

  .hero-inner,
  .vision-inner,
  .tech-inner,
  .stats-inner,
  .diff-inner,
  .ai-inner,
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-corner-card {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-bottom: 60px;
    padding-top: calc(var(--nav-h) + 20px);
  }

  .hero-h1 {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.1;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .hero-mini-row {
    grid-template-columns: 1fr;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}