/* ============================================================
   index.css — Homepage only
   ============================================================ */

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 64px 5% 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: heroOrbFloat 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 70%);
  top: -130px;
  right: -80px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.07), transparent 70%);
  bottom: 60px;
  left: 6%;
  animation-delay: -4.5s;
}

@keyframes heroOrbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.04); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 72px;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

/* Hero text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2s ease infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.6); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 300;
  line-height: 0.98;
  color: var(--dark);
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.08s ease both;
}

.hero-title strong {
  font-weight: 700;
}

.hero-typed-wrap {
  display: inline;
}

.hero-typed {
  color: var(--gold);;
  font-style: italic;
}

.typed-cursor {
  color: var(--gold);
  animation: blinkCursor 0.85s step-end infinite;
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 0.7s 0.16s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.24s ease both;
}

.hero-stats {
  display: none;
  gap: 44px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.32s ease both;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Floating dashboard card */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-deep);
  position: relative;
  animation: fadeUp 0.8s 0.14s ease both;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gold-lt), transparent 50%, var(--gold));
  opacity: 0.18;
  z-index: -1;
}

.hcard-header {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
}

.hcard-logo {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.hcard-logo img{
  animation: wave 1.2s ease-in-out infinite alternate;
}

@keyframes wave {
 0%   { transform: rotate(-10deg); }
  100% { transform: rotate(10deg); }
}




.hcard-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}

.hcard-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.hcard-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #16a34a;
}

.hcard-live span {
  width: 6px;
  height: 6px;
  background: #16a34a;
  border-radius: 50%;
  animation: pulseDot 2s ease infinite;
}

.hcard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.hcard-metric {
  background: var(--off-white);
  border-radius: 11px;
  padding: 13px;
}

.hcard-metric-val {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-dk);
  line-height: 1;
}

.hcard-metric-lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}

.hcard-bars {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hcard-bar-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 9px;
}

.hcard-bar-row span:first-child {
  width: 64px;
  flex-shrink: 0;
  font-size: 11px;
}

.hcard-bar-row span:last-child {
  width: 34px;
  text-align: right;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-dk);
}

.hcard-bar {
  flex: 1;
  height: 6px;
  background: var(--off-white);
  border-radius: 3px;
  overflow: hidden;
}

.hcard-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 3px;
  animation: barFill 1.6s 1s ease both;
}

@keyframes barFill {
  from { width: 0 !important; }
}

.hcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

.hcard-tag {
  font-size: 11px;
  background: rgba(201, 168, 76, 0.09);
  color: var(--gold-dk);
  border-radius: 20px;
  padding: 3px 10px;
  font-weight: 500;
}

/* ── SERVICES TEASER ───────────────────────────────────────── */
.section-head-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.svc-mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  position: relative;
  overflow: hidden;
}

.svc-mini-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.svc-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.svc-mini-card:hover::before {
  transform: scaleX(1);
}

.svc-mini-icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.svc-mini-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.svc-mini-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── WHY SECTION ───────────────────────────────────────────── */
.why-section {
  background: var(--dark);
  padding: 96px 5%;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1240px;
}

.why-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 52px);
  color: #fff;
  font-weight: 400;
  line-height: 1.14;
  margin-bottom: 22px;
}

.why-title strong {
  color: var(--gold);
  font-weight: 700;
}

.why-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.82;
  margin-bottom: 32px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-pt {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-pt-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(201, 168, 76, 0.504);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.why-pt h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.why-pt p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.62;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: 15px;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.28s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.3);
}

.why-card-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-card h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.why-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.44);
  line-height: 1.62;
}

/* ── ROI CALCULATOR ────────────────────────────────────────── */
.roi-section {
  background: var(--off-white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 80px 5%;
}

.roi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
}

.roi-calc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-gold);
}

.roi-calc-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.roi-slider {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
  height: 6px;
  border-radius: 3px;
}

.roi-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-muted);
  margin: 6px 0 24px;
}

.roi-budget-val {
  font-weight: 700;
  color: var(--gold-dk) !important;
}

.roi-result-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 16px;
}

.roi-result-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.roi-result-label {
  font-size: 12px;
  color: var(--text-muted);
}

.roi-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── PROCESS ───────────────────────────────────────────────── */
.process-section {
  background: var(--off-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(12.5% + 17px);
  right: calc(12.5% + 17px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
  opacity: 0.3;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 18px;
}

.process-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.process-step:hover .process-num {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: scale(1.08);
}

.process-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testi-section {
  background: var(--white);
}

.testi-outer {
  overflow: hidden;
  margin-top: 48px;
  padding: 8px 0;
}

.testi-track {
  display: flex;
  gap: 18px;
  animation: testiScroll 32s linear infinite;
  width: max-content;
}

.testi-track:hover {
  animation-play-state: paused;
}

@keyframes testiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testi-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  width: 330px;
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}

.testi-card:hover {
  box-shadow: var(--shadow-gold);
}

.testi-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 13.5px;
  line-height: 1.76;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.testi-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
}

.testi-role {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

.spark {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ead201;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 10px #ebb400, 0 0 20px #e4ce00;
  animation: sparkleFade 2.8s ease-out forwards;
}

@keyframes sparkleFade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) translateY(-20px);
  }
}



/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-inner .hero-card { display: none; }
}

@media (max-width: 900px) {
  .section-head-split { grid-template-columns: 1fr; gap: 40px; }
  .services-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section { padding: 72px 5%; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps::before { display: none; }
  .roi-inner { grid-template-columns: 1fr; gap: 44px; }
  .roi-section { padding: 64px 5%; }
}

@media (max-width: 640px) {
  .hero { padding: 48px 5% 60px; }
  .hero-title { font-size: clamp(40px, 9vw, 64px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 24px; }
  .hero-stats .hero-stat { flex: 1 1 calc(50% - 12px); }
  .services-mini-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .testi-card { width: 290px; }
}

@media (max-width: 480px) {
  .hero { padding: 36px 16px 52px; }
  .services-mini-grid { grid-template-columns: 1fr; }
  .why-section { padding: 60px 16px; }
  .roi-section { padding: 56px 16px; }
}
