:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --accent: #06b6d4;
  --dark: #0a0f1e;
  --dark-2: #0f172a;
  --dark-3: #1e293b;
  --light-bg: #f8fafc;
  --gradient-primary: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1e293b; background: #fff; }

/* ── NAVBAR ── */
#mainNav {
  background: transparent;
  transition: all 0.4s ease;
  padding: 1.2rem 0;
}
#mainNav.scrolled {
  background: rgba(10,15,30,0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar-brand img { height: 36px; }
.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85) !important;
  padding: 0.5rem 0.75rem !important;
  transition: color 0.3s;
}
.nav-link:hover { color: #fff !important; }
.btn-affiliate {
  background: var(--gradient-primary);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-affiliate:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(2,132,199,0.45);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(10,15,30,0.9) 0%, rgba(2,90,140,0.78) 100%),
              url('../images/iclick/hero-img.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(6,182,212,0.12) 0%, transparent 65%);
}
.hero-content { position: relative; z-index: 1; padding-top: 6rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.3);
  color: #67e8f9;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title .accent { color: #38bdf8; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.btn-hero-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2,132,199,0.5);
}
.btn-hero-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.28);
  text-decoration: none;
  transition: all 0.3s;
}
.btn-hero-outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07);
}
.hero-floats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 6rem;
  width: 100%;
}
.hero-float-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.float-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.float-title { font-weight: 700; font-size: 0.88rem; }
.float-sub { font-size: 0.76rem; color: rgba(255,255,255,0.52); margin-top: 0.15rem; }
.hero-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2.5rem;
  margin-top: 3rem;
  display: flex;
  gap: 3rem;
}
.h-stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
}
.h-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* ── STATS BAND ── */
#stats { background: var(--dark-2); padding: 4.5rem 0; }
.stat-item { text-align: center; padding: 1rem; }
.stat-number {
  font-family: 'Raleway', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-number .stat-accent { color: var(--accent); }
.stat-label { font-size: 0.82rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.07em; }
.stat-vr { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; margin: 0.5rem 0; }

/* ── SHARED SECTION LABELS ── */
.section-eyebrow {
  display: inline-block;
  background: rgba(2,132,199,0.09);
  color: var(--primary);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(2,132,199,0.18);
}
.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--dark-2);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title .accent { color: var(--primary); }
.section-sub { font-size: 1.02rem; color: #64748b; line-height: 1.75; max-width: 560px; }

/* ── ABOUT / WHY US ── */
#about { padding: 6rem 0; background: #fff; }
.feature-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(2,132,199,0.1);
  border-color: rgba(2,132,199,0.22);
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(2,132,199,0.12) 0%, rgba(6,182,212,0.12) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1.1rem;
}
.feature-title { font-weight: 700; font-size: 1rem; color: var(--dark-2); margin-bottom: 0.4rem; }
.feature-text { font-size: 0.88rem; color: #64748b; line-height: 1.65; }

/* ── SERVICES ── */
#services { padding: 6rem 0; background: var(--light-bg); }
.service-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 2.25rem;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.35s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.09);
}
.service-icon {
  width: 62px;
  height: 62px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #fff;
  margin-bottom: 1.4rem;
}
.service-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 0.7rem;
}
.service-text { font-size: 0.9rem; color: #64748b; line-height: 1.7; }

/* ── HOW IT WORKS ── */
#process { padding: 6rem 0; background: #fff; }
.process-step { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  width: 62px;
  height: 62px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1.4rem;
}
.step-title { font-weight: 700; font-size: 1.02rem; color: var(--dark-2); margin-bottom: 0.5rem; }
.step-text { font-size: 0.88rem; color: #64748b; line-height: 1.65; }
.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.5rem;
}
.process-connector i { color: #cbd5e1; font-size: 1.3rem; }

/* ── CTA BAND ── */
#cta-band {
  background: var(--gradient-primary);
  padding: 5rem 0;
  text-align: center;
}
#cta-band h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
#cta-band p { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 2rem; }
.btn-cta-white {
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  color: var(--primary-dark);
}
.btn-cta-outline-white {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  margin-left: 1rem;
}
.btn-cta-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ── CONTACT ── */
#contact { padding: 6rem 0; background: var(--dark-2); }
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 2.5rem;
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(2,132,199,0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--accent);
  flex-shrink: 0;
}
.ci-label { font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; }
.ci-value { font-weight: 600; color: #fff; font-size: 0.97rem; text-decoration: none; }
.ci-value:hover { color: var(--accent); }
.form-field {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px;
  color: #fff;
  padding: 0.85rem 1.1rem;
  font-size: 0.93rem;
  width: 100%;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  outline: none;
}
.form-field::placeholder { color: #475569; }
.form-field:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(2,132,199,0.15);
}
select.form-field option { background: #0f172a; color: #fff; }
.btn-send {
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2.5rem;
  border-radius: 8px;
  border: none;
  width: 100%;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2,132,199,0.4);
}
#contact .section-title { color: #fff; }
#contact .section-sub { color: #94a3b8; }

/* ── FOOTER ── */
footer { background: #050d1a; padding: 3.5rem 0 1.75rem; }
.footer-logo img { height: 30px; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.85rem; color: #64748b; line-height: 1.65; max-width: 270px; }
.footer-heading { font-weight: 700; font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: #64748b; text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
hr.footer-hr { border-color: rgba(255,255,255,0.06); margin: 2.25rem 0 1.5rem; }
.footer-copy { font-size: 0.78rem; color: #475569; }

/* ── BACK TO TOP ── */
#backTop {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s;
  z-index: 990;
}
#backTop.show { opacity: 1; transform: translateY(0); }

/* ── LEGAL PAGES ── */
.legal-hero {
  background: linear-gradient(135deg, rgba(10,15,30,0.95) 0%, rgba(2,90,140,0.85) 100%),
              url('images/iclick/hero-img.jpeg') center/cover no-repeat;
  padding: 8rem 0 4rem;
  text-align: center;
}
.legal-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
.legal-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.legal-breadcrumb a { color: var(--accent); text-decoration: none; }
.legal-breadcrumb a:hover { color: #fff; }
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #334155;
}
.legal-content p { margin-bottom: 1rem; }
.legal-content span { font-size: inherit !important; font-family: inherit !important; color: inherit !important; }
.legal-content .WordSection1 { all: unset; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-content { padding-bottom: 3rem; }
  .hero-divider { gap: 2rem; }
  .stat-vr { display: none; }
}
@media (max-width: 575px) {
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { text-align: center; justify-content: center; }
}
