/* ─── RESET & ROOT ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --off-white: #fafaf8;
  --light-bg: #f9f7f2;
  --gold: #FDC70C;
  --gold-dark: #FEAC11;
  --gold-light: #FFFAEC;
  --icon-color: #F8A813;
  --charcoal: #1a1a1a;
  --dark: #111111;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --font: 'Inter', 'DM Sans', sans-serif;
  --text: #272727;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  padding: 0 2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}

.nav-logo {
  display: flex;
  width: 150px;
}

.footer-logo {
 width: 150px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-links a.active { color: var(--text); font-weight: 600; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 5% 1.8rem;
  z-index: 99;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 24px rgba(17, 16, 16, 0.08);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

/* ─── COMMON ─── */
section { position: relative; }

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-sub {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.75;
  max-width: 540px;
  margin-top: 0.8rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--text);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
  justify-content: center;
}

.btn-primary.receive {
  background: var(--text);
  color: var(--white);
}

.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover { border-color: var(--charcoal); background: var(--off-white); }

/* ─── HOME / HERO ─── */
#home {
  min-height: 100vh;
  padding: 100px 5% 80px;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: visible;
  position: relative;
}

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

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 0.4rem;
}

.hero-title .gold { color: var(--gold); }

.hero-sub {
  font-size: 0.85rem;
  color: var(--text);
  margin: 2rem 0;
  margin-right: clamp(0rem, 15vw - 8rem, 10rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 5rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 490px;
}

.map {
  position: absolute;
  top: 0;
  right: -62%;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.invoice {
  position: absolute;
  top: 8.1%;
  right: -20.4%;
  width: 100%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.10));
}

.issued {
  position: absolute;
  top: 71.4%;
  right: 59%;
  width: 50%;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.10));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.issued:hover {
  transform: translateY(-10px);
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.18));
}

.payment {
  position: absolute;
  top: 110.2%;
  left: 87%;
  width: 50%;
  height: auto;
  z-index: 4;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.10));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.payment:hover {
  transform: translateY(-10px);
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.18));
}

/* ─── FEATURES ─── */
#features {
  padding: 100px 5%;
  background: var(--white);
}

.features-inner { max-width: 1200px; margin: 0 auto; }

.features-head { text-align: center; margin-bottom: 3.5rem; }
.features-head .section-sub { margin: 0.8rem auto 0; text-align: center; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.feature-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px 22px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.feature-card:hover {
  border-color: var(--gold);
  border: 1.5px solid var(--gold);
  box-shadow: 0 8px 28px rgba(232,160,32,0.1);
  transform: translateY(-3px);
}

.feature-icon-wrap {
  width: 56px; 
  height: 56px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon-wrap img {
  height: 32px;
}

.fa-solid, .fa-regular {
  color: var(--icon-color);
}

.feature-icon-wrap svg { width: 18px; height: 18px; color: var(--gold-dark); }

.feature-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.feature-desc {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.65;
}

.dashboard {
  position: relative;
  top: -10%;
  left: 130%;
  max-width: 70%;
  height: auto;
}

.laptop {
  position: relative;
  top: 20%;
left: 60%;
  max-width: 65%;
  height: auto;
}

.customizable {
  position: relative;
  top: 16%;
    left: 30%;
  max-width: 75%;
  height: auto;
}

/* Connectors strip */
.connectors-strip {
  width: 100%;               /* full bleed */
  margin: 4rem 0 0;          /* no auto centering */
  background: url("/assets/img/connectors-bg.svg") no-repeat center center / cover;
  border-radius: 20px;          /* remove radius so it goes edge-to-edge */
  padding: 0 5%;
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
}

.connectors-strip dotlottie-wc {
  width: 350px;
  height: 350px;
}

.left-connectors {
  right: 10%;
}

.right-connectors {
  left: 10%;
}

.connectors-right { 
  text-align: center; 
}

.connectors-count {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.05em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
}

.digit-roller {
  position: relative;
  display: inline-block;
  height: 1em;
  width: 0.65em;
  overflow: hidden;
  vertical-align: bottom;
}

.digit-reel {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.digit-reel span {
  height: 1em;
  line-height: 1;
  display: block;
  text-align: center;
}

.connectors-count span { color: var(--gold); }

.connectors-label {
  font-size: 0.88rem;
  color: var(--text);
  margin: 0.4rem 0 1.5rem;
}

/* ─── HOW IT WORKS ─── */
#how-it-works {
  padding: 100px 5%;
  background: var(--white);
}

.how-inner { max-width: 1200px; margin: 0 auto; }

.how-head { margin-bottom: 4.5rem; }

.how-steps { display: flex; flex-direction: column; gap: 5rem; }

.how-steps { position: relative; }

.how-timeline {
  position: absolute;
  left: 50%;
  width: 0;
  z-index: 1;
  pointer-events: none;
}

.how-timeline-dot {
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.how-timeline-dot.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(253, 199, 12, 0.18);
}

.how-timeline-segment {
  position: absolute;
  left: 0;
  width: 2px;
  overflow: hidden;
  transform: translateX(-1px);
}

.how-timeline-segment-fill {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, var(--gold) 50%, transparent 50%);
  background-size: 2px 12px;
  background-repeat: repeat-y;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.9s ease;
}

.how-timeline-segment-fill.active {
  clip-path: inset(0 0 0% 0);
}

.how-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.how-step-visual {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  min-height: 180px;
  display: flex; align-items: center; justify-content: center;
}

.how-step-visual {
  overflow: hidden;
}

dotlottie-wc {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.mock-form {
  width: 100%;
  overflow: hidden;
}

.mock-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.mock-field {
  background: var(--border-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  height: 30px;
}

.mock-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  color: var(--gold-dark);
  border: 1px dashed var(--gold);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.76rem;
  font-weight: 600;
  margin-top: 8px;
}

.mock-invoice-list { width: 100%; }

.mock-inv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.76rem;
  color: var(--text);
}

.mock-inv-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
}

.mock-inv-badge.paid { background: #dcfce7; color: #16a34a; }
.mock-inv-badge.pending { background: var(--gold-light); color: var(--gold-dark); }

.mock-payment { width: 100%; text-align: center; }

.mock-inv-id {
  font-size: 0.78rem;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 600;
}

.mock-pay-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.mock-pay-btn {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text);
  background: none;
}

.mock-pay-btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.mock-tracking { width: 100%; }

.mock-track-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.mock-track-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
}

.mock-progress {
  height: 5px;
  background: var(--border-light);
  border-radius: 3px;
  overflow: hidden;
}

.mock-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}

.how-step-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.how-step-desc {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* Get Started Steps */
.get-started {
  padding: 100px 5% 0 5%;
  background: var(--white);
}

.get-started-inner { max-width: 1200px; margin: 0 auto; }
.get-started-head { margin-bottom: 3rem; }

.gs-steps {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

.gs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 30px 16px;
}

.gs-icon {
  width: 160px;
  height: 160px;
  background: #FCFCFC;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1rem;
}

.gs-icon:hover {
  background: var(--gold-light);
  border: 1px solid var(--gold-dark);
  transition: background 0.2s !important;
}

.gs-arrow {
  margin-top: calc(30px + 80px - 10px);
  flex-shrink: 0;
  width: 80px;
  object-fit: contain;
  align-self: flex-start;
}

.gs-icon img {
  transition: transform 0.3s ease;
}

.gs-icon img:hover {
  transform: scale(1.2);
}

.gs-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.gs-desc {
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.6;
}

/* ─── BECOME A USER ─── */
#become-a-user {
  padding: 100px 5%;
  background: var(--white);
}

.become-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: url("/assets/img/affiliate.svg") no-repeat center center / cover;
  border: 1px solid #FEECBD;
  border-radius: 16px;
}

.become-content {
  padding: 2rem;
}

.become-content .section-title .gold { color: var(--gold); }
.become-content .section-sub { margin-bottom: 2rem; }

/* Affiliate visual */
.become-visual {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.affiliate-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.affiliate-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.affiliate-title .gold { color: var(--gold); }

.affiliate-sub {
  font-size: 0.8rem;
  color: var(--text);
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.affiliate-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 1.2rem 0;
  flex-wrap: wrap;
}

.aff-node {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 13px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  min-width: 66px;
}

.aff-node.you { background: var(--gold-light); border-color: var(--gold); color: var(--gold-dark); }
.aff-node.reward { background: #dcfce7; border-color: #86efac; color: #16a34a; }

.aff-arrow { font-size: 0.9rem; color: var(--muted-light); }

.affiliate-reward {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  margin-top: 1rem;
}

.affiliate-reward-label {
  font-size: 0.68rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.affiliate-reward-value {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  margin: 2px 0;
}

.affiliate-reward-sub {
  font-size: 0.72rem;
  color: var(--text);
}

/* ─── CONTACT ─── */
#contact {
  padding: 100px 5%;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.map-left {
  position: absolute;
  left: -300px;
  top: -60px;
}

.contact-demo {
  padding: 8px 24px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.contact-center {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-right-inner {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
}

.email-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.fa-envelope {
  color: #FDC70C;
}

.email-address {
  font-weight: 600;
  color: #272727;
  font-size: 16px;
}

.contact-center .section-tag { color: #FEAC11; }

.contact-center .section-title { 
  font-size: 32px;
  font-weight: 700;
  color: #272727;
}

.contact-center .section-sub {
  font-weight: 300;
  font-size: 16px;
  color: #272727;
}

/* ─── FOOTER ─── */
footer {
  background: #F8F8F8;
  padding: 60px 5% 28px;
  display: flex;
  flex-direction: column;
}

.footer-upper {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 3rem;
  padding-bottom: 44px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 0.9rem;
}

.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.footer-social a {
  font-size: 30px;
  font-weight: 400;
  color: #2B2B29;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2B2B29;
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 14px;
  font-weight: 400;
  color: #2B2B29;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  color: #2B2B29;
  flex-wrap: wrap;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1600px) {
  .map {
    position: absolute;
    top: 0;
    right: -30%;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    }

    .invoice {
    position: absolute;
    top: 8.1%;
    right: 20.4%;
    width: 75%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.10));
    }

    .issued {
    position: absolute;
    top: 49.4%;
    right: 70%;
    width: 50%;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.10));
    transition: transform 0.3s ease, filter 0.3s ease;
    }

    .issued:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.18));
    }

    .payment {
        position: absolute;
        top: 80.2%;
        left: 50%;
        width: 50%;
        height: auto;
        z-index: 4;
        filter: drop-shadow(0 4px 16px rgba(0,0,0,0.10));
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .payment:hover {
        transform: translateY(-10px);
        filter: drop-shadow(0 12px 28px rgba(0,0,0,0.18));
    }
}


@media (max-width: 1280px) {
  .hero-sub { margin-right: 4rem; }
  .map {
    position: absolute;
    top: 0;
    right: -30%;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    }

    .invoice {
    position: absolute;
    top: 8.1%;
    right: 20.4%;
    width: 75%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.10));
    }

    .issued {
    position: absolute;
    top: 49.4%;
    right: 70%;
    width: 50%;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.10));
    transition: transform 0.3s ease, filter 0.3s ease;
    }

    .issued:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.18));
    }

    .payment {
        position: absolute;
        top: 75.2%;
        left: 50%;
        width: 50%;
        height: auto;
        z-index: 4;
        filter: drop-shadow(0 4px 16px rgba(0,0,0,0.10));
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .payment:hover {
        transform: translateY(-10px);
        filter: drop-shadow(0 12px 28px rgba(0,0,0,0.18));
    }
  .features-grid { gap: 1rem; }
  .gs-icon { width: 130px; height: 130px; }
  .gs-arrow { width: 60px; margin-top: calc(30px + 65px - 10px); }
  .left-connectors {
    right: 5%;
  }
  .right-connectors {
    left: 5%;
  }
}

@media (max-width: 1024px) {
  nav { padding: 0 4%; }

  /* Hero */
  #home { padding: 90px 5% 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-sub { margin-right: 0; margin-left: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { height: auto; max-width: 460px; margin: 0 auto 2.5rem; order: 1; display: flex; justify-content: center; }
  .map { display: none; }
  .invoice { position: static; width: 88%; margin: 0 auto; display: block; top: auto; right: auto; }
  .orbit {display: none;}
  .issued { display: none; }
  .payment { display: none; }
  .how-timeline { display: none; }

  /* Features */
  #features { padding: 80px 5%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card[style*="grid-column: span 2"] { grid-column: span 2; }
  .feature-card[style*="grid-column: span 2"] > div { width: 100%; }
  .dashboard, .laptop, .customizable { max-width: 60%; }
  .dashboard {
    left: 140%;
  }

  .laptop {
    left: 73%;
  }

  .customizable {
    left: 55%;
  }

  .connectors-strip { flex-direction: row; padding: 0 6%; }
  .connectors-strip dotlottie-wc {
    height: 200px;
    width: 200px;
  }
  .left-connectors {
    right: 10%;
  }
  .right-connectors {
    left: 10%;
  }
  /* How it works */
  #how-it-works { padding: 80px 5%; }
  .how-step { grid-template-columns: 1fr; gap: 2rem; }
  .how-step:nth-child(even) .how-step-visual { order: 1; }

  .get-started { padding: 80px 5% 0; }
  .become-inner {
    background: none;
  }
  .gs-steps { flex-wrap: wrap; justify-content: center; }
  .how-step:nth-child(even) .how-step-visual { order: 0; }
  .gs-arrow { display: none; }
  .gs-step { flex: 0 0 45%; }

  /* Become a user */
  #become-a-user { padding: 80px 5%; }
  .become-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .become-content { padding: 2rem 1.5rem; }
  .become-content .section-sub { margin-left: auto; margin-right: auto; }

  /* Contact */
  #contact { padding: 80px 5%; }
  .contact-inner { flex-direction: column; gap: 2.5rem; text-align: center; }
  .map-left { display: none; }

  /* Footer */
  .footer-upper { flex-wrap: wrap; justify-content: center; text-align: center; gap: 2.5rem; }
  .footer-social { justify-content: center; align-items: center;}
}

@media (max-width: 900px) {
  nav { padding: 0 5%; height: 60px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 60px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    grid-column: span 1 !important;
    width: 100%;
    display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
  }
  .feature-card[style*="grid-column: span 2"] > div {
    width: 100% !important;
  }
  .dashboard, .laptop, .customizable {
    position: relative;
    top: 0;
    left: 0;
    max-width: 70%;
    display: block;
    margin: 1rem auto 0;
  }
  .laptop {
    bottom: 40%;
  }
  .feature-card {
    overflow: visible;
  }
  .gs-step { flex: 0 0 100%; }
  .how-step:nth-child(even) .how-step-visual { order: 0; }
  .become-inner {
    background: none;
  }
  .left-connectors {
    right: 5%;
  }
  .right-connectors {
    left: 5%;
  }
  .btn-outline {
    padding: 6px 12px;
  }
  
}

@media (max-width: 640px) {
  nav { padding: 0 5%; height: 60px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 60px; }

  /* Hero */
  #home { padding: 80px 6% 50px; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-sub { font-size: 0.85rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary { width: 100%; }
  .hero-visual { max-width: 320px; margin-bottom: 2rem; }
  .invoice { width: 95%; }

  /* Features */
  #features { padding: 60px 6%; }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    grid-column: span 1 !important;
    width: 100%;
    display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
  }
  .feature-card[style*="grid-column: span 2"] > div {
    width: 100% !important;
  }
  .dashboard, .laptop, .customizable {
    position: relative;
    top: 0;
    left: 0;
    max-width: 70%;
    display: block;
    margin: 1rem auto 0;
  }
  .feature-card {
    overflow: visible;
  }
  .connectors-strip { padding: 28px 6%; border-radius: 14px; min-height: 120px; }
  .connectors-right {
    text-align: center;
    width: 100%;
  }

  .connectors-count {
    font-size: 2.6rem;
    display: inline-flex;
  }

  /* How it works */
  #how-it-works { padding: 60px 6%; }
  .how-steps { gap: 3rem; }
  .how-step-visual { padding: 20px; min-height: 150px; }

  .get-started { padding: 60px 6% 0; }
  .gs-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .gs-step {
    flex: 0 0 100%;
    width: 100%;
    max-width: 320px;
  }
  .gs-arrow {
    display: none;
  }
  .gs-icon {
    width: 140px;
    height: 140px;
  }
  .connectors-strip dotlottie-wc {
    display: none;
  }

  /* Become a user */
  #become-a-user { padding: 60px 6%; }
  .become-content { padding: 1.5rem 1rem; }
  .become-content .btn-primary { width: 100%; }

  /* Contact */
  #contact { padding: 60px 6%; }
  .contact-center .section-title { font-size: 1.6rem; }
  .contact-demo { width: 100%; }

  /* Footer */
  footer { padding: 48px 6% 24px; }
  .footer-upper { 
    flex-direction: column; gap: 2rem; 
    padding-bottom: 32px; 
    justify-content: center;
    align-items: center;
  }
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; font-size: 14px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .hero-visual { max-width: 280px; }
  .gs-icon { width: 110px; height: 110px; }
  .gs-icon img { max-width: 60px; }
  .feature-card { padding: 20px 16px; }
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
}