/* ============================================================
   CloudSync IT — Light Theme Stylesheet v3
   Brand: #7611F1 | Fonts: Urbanist + Nunito Sans
   ============================================================ */

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

:root {
  --primary:        #7611F1;
  --primary-dark:   #5c0dbe;
  --primary-light:  #9333ea;
  --primary-50:     #faf5ff;
  --primary-100:    #f3e8ff;
  --primary-200:    #e9d5ff;
  --grad:           linear-gradient(135deg, #7611F1 0%, #b44aff 100%);
  --grad-soft:      linear-gradient(135deg, #f3e8ff 0%, #ede9fe 100%);

  --bg:             #ffffff;
  --bg-alt:         #faf8ff;
  --bg-deep:        #f3eeff;
  --bg-section:     #f8f7fe;

  --text:           #1c1b3a;
  --text-muted:     #64658a;
  --text-light:     #9899b8;

  --border:         #ede9fb;
  --border-strong:  #d4c9f7;

  --card-bg:        #ffffff;
  --card-shadow:    0 2px 16px rgba(118,17,241,.07);
  --card-shadow-hv: 0 8px 40px rgba(118,17,241,.15);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --font-head: 'Urbanist', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
.alt-bg { background: var(--bg-alt); }
.deep-bg { background: var(--bg-deep); }

/* ── TYPOGRAPHY ── */
h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
}
h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -.025em;
  margin-bottom: 14px;
}
h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; }
h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; }
p  { font-size: 1rem; line-height: 1.7; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 800; color: var(--primary);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px;
  font-family: var(--font-head);
}
.section-label::before {
  content: ''; display: block; width: 18px; height: 2px;
  background: var(--primary); border-radius: 1px;
}
.section-label.center { justify-content: center; }

.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; line-height: 1.75; }
.section-sub.center { margin: 0 auto; text-align: center; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: #fff; text-decoration: none;
  padding: 14px 28px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 28px rgba(118,17,241,.3);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(118,17,241,.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 2px solid var(--primary);
  color: var(--primary); text-decoration: none;
  padding: 13px 28px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-100); border: 1px solid var(--primary-200);
  color: var(--primary); text-decoration: none;
  padding: 13px 26px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  transition: background .2s;
}
.btn-ghost:hover { background: var(--primary-200); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: border-color .3s, box-shadow .3s;
}
nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(118,17,241,.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-badge {
  background: #ffffff; border-radius: 10px;
  width: 40px; height: 40px;
  display: grid; place-items: center; flex-shrink: 0;
}
.logo-badge img { width: 40px; height: 40px; object-fit: contain; }
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--text); }
.logo-text span { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links > li > a {
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  color: var(--text-muted); text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--primary); background: var(--primary-50); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .6rem; opacity: .6; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 10px;
  min-width: 230px; list-style: none;
  box-shadow: 0 12px 40px rgba(118,17,241,.12);
}
.dropdown-menu li a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: .875rem; font-family: var(--font-head); font-weight: 600;
  color: var(--text-muted); text-decoration: none;
  transition: background .15s, color .15s;
}
.dropdown-menu li a:hover { background: var(--primary-50); color: var(--primary); }
.nav-dropdown:hover .dropdown-menu { display: block; }

.nav-cta {
  background: var(--grad) !important;
  color: #fff !important; padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--font-head) !important; font-weight: 700 !important;
  font-size: .875rem !important;
  box-shadow: 0 4px 16px rgba(118,17,241,.25);
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(118,17,241,.35) !important; }

.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(--text); border-radius: 2px; transition: .3s; }

.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: #fff; padding: 20px 24px 28px;
  z-index: 99; border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 4px;
  box-shadow: 0 8px 32px rgba(118,17,241,.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-muted); text-decoration: none;
  font-family: var(--font-head); font-weight: 600;
  font-size: 1rem; padding: 12px 16px; border-radius: 10px;
  transition: background .15s, color .15s;
}
/*.mobile-menu a:hover { background: var(--primary-50); color: var(--primary); }*/
.mobile-menu .mob-cta { background: var(--grad); color: #fff !important; text-align: center; margin-top: 10px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 130px 0 72px; text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 32px; line-height: 1.75; }

.breadcrumb { display: none !important; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; font-size: .85rem; font-family: var(--font-head); font-weight: 600; transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--primary); font-size: .85rem; font-family: var(--font-head); font-weight: 600; }
.breadcrumb-sep { color: var(--text-light); font-size: .75rem; }

/* ── CARDS ── */
.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--card-shadow);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.card:hover { box-shadow: var(--card-shadow-hv); transform: translateY(-4px); border-color: var(--primary-200); }

.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--primary-100);
  display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 20px;
}

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 0 64px;
  background: linear-gradient(160deg, #fff 0%, #faf7ff 60%, #f3eeff 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(118,17,241,.08) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-100); border: 1px solid var(--primary-200);
  border-radius: 100px; padding: 7px 18px; margin-bottom: 24px;
  font-family: var(--font-head); font-size: .78rem; font-weight: 800;
  color: var(--primary); letter-spacing: .08em; text-transform: uppercase;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: pulsedot 2s infinite; }
@keyframes pulsedot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.6)} }

.hero h1 { margin-bottom: 22px; }
.hero > .container > .hero-grid > div > p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; max-width: 500px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Hero image */
.hero-img-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 24px 80px rgba(118,17,241,.18);
}
.hero-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.hero-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.hero-img-badge-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--grad); display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.hero-img-badge strong { font-family: var(--font-head); font-size: .9rem; display: block; }
.hero-img-badge span { font-size: .78rem; color: var(--text-muted); }
.hero-img-badge2 {
  position: absolute; top: 20px; right: 20px;
  background: var(--primary); color: #fff;
  border-radius: 14px; padding: 12px 16px; text-align: center;
  box-shadow: 0 8px 24px rgba(118,17,241,.4);
}
.hero-img-badge2 strong { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; display: block; }
.hero-img-badge2 span { font-size: .72rem; opacity: .85; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--primary); padding: 48px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.75); margin-top: 6px; font-weight: 600; }
.stat-divider { border-left: 1px solid rgba(255,255,255,.2); }

/* ── SERVICE DETAIL ── */
.service-detail {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--card-shadow);
}
.service-detail h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.service-detail h3 .icon { font-size: 1.4rem; }
.service-detail > p { color: var(--text-muted); margin-bottom: 22px; }
.feature-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--text-muted); }
.feature-list li::before { content: '✓'; color: var(--primary); font-weight: 800; flex-shrink: 0; margin-top: 1px; font-family: var(--font-head); }

/* ── PROCESS ── */
.process-box {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--card-shadow);
}
.process-step { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; padding-bottom: 0; }
.ps-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 7px; }
.ps-content h5 { font-family: var(--font-head); font-size: .95rem; font-weight: 700; }
.ps-content p { font-size: .8rem; color: var(--text-muted); margin-top: 2px; }
.ps-tag {
  margin-left: auto; flex-shrink: 0;
  background: var(--primary-100); border: 1px solid var(--primary-200);
  color: var(--primary); font-family: var(--font-head); font-size: .7rem; font-weight: 800;
  padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: .05em;
}

/* ── TESTIMONIALS ── */
.test-stars { color: #f59e0b; font-size: 1 rem; margin-bottom: 14px; letter-spacing: 2px; }
.test-quote { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: .85rem; color: #fff; flex-shrink: 0; }
.test-name { font-family: var(--font-head); font-size: .9rem; font-weight: 800; color: var(--text); }
.test-role { font-size: .78rem; color: var(--text-muted); }

/* ── PARTNER LOGOS ── 
.partners { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #ffffff; }
.partners-label { text-align: center; font-family: var(--font-head); font-size: .72rem; font-weight: 800; color: var(--text-light); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 36px; }
.partners-row { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }*/
 /* ── PARTNERS AUTO-SCROLL ── */
.partners { padding: 52px 0; background: var(--lt-bg2); border-top: 1px solid var(--lt-border); border-bottom: 1px solid var(--lt-border); overflow: hidden; }
.partners-label { text-align: center; font-family: var(--fh); font-size: .7rem; font-weight: 800; color: #aaa5cc; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 32px; }
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--lt-bg2), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--lt-bg2), transparent); }
.marquee-track { display: flex; gap: 24px; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.partner-logo-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 12px;
  border: 1.5px solid var(--lt-border); background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  white-space: nowrap; flex-shrink: 0;
}
.partner-logo-item img { height: 32px; width: auto; max-width: 80px; object-fit: contain; display: block; }

/* Individual partner logo badges */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #ffffff;
  width: 160px;
  height: 80px;
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
  cursor: default;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
 
.partner-logo:hover {
  box-shadow: 0 6px 24px rgba(118,17,241,.10);
  border-color: var(--primary-200);
  transform: translateY(-2px);
}
 
/* Logo image */
.partner-logo img {
  max-width: 120px;
  max-height: 44px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(15%) opacity(0.85);
  transition: filter .25s ease;
}
 
.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
}
 
/* ── Responsive ── */
@media (max-width: 768px) {
  .partners-row { gap: 12px; }
  .partner-logo { width: 130px; height: 70px; padding: 14px 20px; }
  .partner-logo img { max-width: 100px; max-height: 38px; }
}
 
@media (max-width: 480px) {
  .partners-row { gap: 10px; }
  .partner-logo { width: calc(50% - 10px); height: 64px; padding: 12px 16px; }
  .partner-logo img { max-width: 90px; max-height: 34px; }
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--bg-deep); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center; padding: 96px 0;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-section h2 { margin-bottom: 14px; }
.cta-section p { color: var(--text-muted); margin-bottom: 36px; line-height: 1.75; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid var(--border);
  color: var(--text); text-decoration: none;
  padding: 13px 24px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.cta-phone:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(118,17,241,.1); }

/* ── SERVICE NAV PILLS ── */
.service-nav {
  position: sticky; top: 70px; z-index: 50;
  background: rgba(255,255,255,.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.service-nav-inner { display: flex; gap: 8px; overflow-x: auto; padding: 0 24px; scrollbar-width: none; max-width: 1200px; margin: 0 auto; }
.service-nav-inner::-webkit-scrollbar { display: none; }
.snav-pill {
  white-space: nowrap; padding: 8px 18px; border-radius: 100px;
  background: var(--primary-50); border: 1.5px solid var(--primary-100);
  color: var(--primary); text-decoration: none;
  font-family: var(--font-head); font-size: .9rem; font-weight: 700;
  flex-shrink: 0; transition: background .2s, border-color .2s;
}
.snav-pill:hover { background: var(--primary-100); border-color: var(--primary-200); }

/* ── IMAGE SECTION ── */
.img-rounded { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(118,17,241,.12); }
.img-rounded img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── WHY US ICON BOXES ── */
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-num-box { width: 42px; height: 42px; border-radius: 10px; background: var(--grad); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: .85rem; color: #fff; flex-shrink: 0; }
.why-item h4 { margin-bottom: 4px; }
.why-item p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--primary); border-radius: var(--radius-lg); padding: 40px; color: #ffffff; }
.contact-info-card h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }
.contact-info-card p { opacity: .85; line-height: 1.7; margin-bottom: 32px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.cinfo-icon { width: 44px; height: 44px; background: rgba(255,255,255,.15); border-radius: 10px; display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.cinfo-label { font-size: .75rem; opacity: .7; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-head); }
.cinfo-value { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: #fff; text-decoration: none; margin-top: 2px; display: block; }
.cinfo-value:hover { opacity: .8; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.hours-item { background: rgba(255,255,255,.12); border-radius: 10px; padding: 12px 14px; }
.hours-day { font-size: .75rem; opacity: .7; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.hours-time { font-family: var(--font-head); font-weight: 800; font-size: .9rem; margin-top: 2px; }

.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--card-shadow); }
.contact-form-card h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  border-radius: 10px; font-family: var(--font-body); font-size: .9rem;
  color: var(--text); transition: border-color .2s, box-shadow .2s;
  outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 4px rgba(118,17,241,.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364658a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-submit { width: 100%; padding: 15px; border: none; background: var(--grad); color: #fff; font-family: var(--font-head); font-size: 1rem; font-weight: 800; border-radius: 100px; cursor: pointer; transition: transform .2s, box-shadow .2s; box-shadow: 0 6px 24px rgba(118,17,241,.3); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(118,17,241,.4); }
/* ── Custom Checkbox with Tick ── */
.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-group--checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  border: 2px solid var(--border-strong);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: background .2s, border-color .2s;
  padding: 0;
  box-shadow: none;
}

.form-group--checkbox input[type="checkbox"]:hover {
  border-color: var(--primary);
}

.form-group--checkbox input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.form-group--checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: 2.5px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-group--checkbox input[type="checkbox"]:focus {
  outline: 3px solid rgba(118,17,241,.25);
  outline-offset: 2px;
}

.form-group--checkbox input[type="checkbox"]:required:invalid {
  border-color: #7611c9;
}

.form-group--checkbox label {
  font-size: .82rem;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
}

.form-group--checkbox label a {
  color: var(--primary);
  text-decoration: none;
}

.form-group--checkbox label a:hover {
  text-decoration: underline;
}


/* ── PROSE (Privacy / T&C) ── */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 48px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.prose h3 { font-size: 1.05rem; margin: 24px 0 8px; color: var(--text); }
.prose p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.prose ul { color: var(--text-muted); padding-left: 20px; margin-bottom: 14px; line-height: 1.8; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--primary); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose .last-updated { background: var(--primary-100); border: 1px solid var(--primary-200); color: var(--primary); font-family: var(--font-head); font-size: .8rem; font-weight: 700; padding: 8px 16px; border-radius: 8px; display: inline-block; margin-bottom: 32px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
footer { background: #1c1b3a; color: rgba(255,255,255,.9); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.7; margin: 14px 0 18px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6); text-decoration: none; font-size: .875rem; margin-bottom: 8px; transition: color .2s; }
.footer-contact a:hover { color: #fff; }
.footer-col h4 { font-family: var(--font-head); font-size: .875rem; font-weight: 800; margin-bottom: 16px; color: #fff; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; font-size: .8rem; transition: color .2s; }
.footer-bottom a:hover { color: #fff; }
 
/* ── Footer Logo ── */
.footer-brand .logo { display: inline-block; margin-bottom: 4px; }
.footer-logo-img {
  height: 72px; width: auto; max-width: 240px;
  object-fit: contain; object-position: left center; display: block;
  mix-blend-mode: lighten;
}
 
/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-divider { border-left: none; }
}
@media(max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid, .grid-2-col { grid-template-columns: 1fr; gap: 36px; }
  .hero-img-wrap { max-height: 260px; }
  .hero-img-wrap img { height: 260px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .feature-list { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .footer-logo-img { height: 58px; }
}
@media(max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 88px 0 48px; }
  .card { padding: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .partners-row { gap: 12px; }
  .partner-logo { min-width: 100px; padding: 10px 14px; }
  .footer-logo-img { height: 48px; }
}