/* ============================================================
   DEEZION GLOBAL — LIGHT THEME STYLESHEET
   Inspired by TheGigabit.com style:
   - White/light grey backgrounds
   - Dark charcoal text
   - Bold amber (#FFB800) accent from logo
   - Clean cards with subtle shadows
   - Professional, airy, modern corporate
   ============================================================ */

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

:root {
  --bg:         #ffffff;
  --bg2:        #f8f9fc;
  --bg3:        #f1f4f9;
  --accent:     #FFB800;
  --accent-dk:  #cc9200;
  --accent-lt:  #FFF3CC;
  --navy:       #0f1b35;
  --text:       #1e293b;
  --text-mid:   #475569;
  --text-light: #94a3b8;
  --border:     #e2e8f0;
  --border-acc: rgba(255,184,0,0.3);
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 12px rgba(15,27,53,0.07);
  --shadow-md:  0 8px 32px rgba(15,27,53,0.11);
  --shadow-lg:  0 20px 60px rgba(15,27,53,0.14);
  --trans:      0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head:  'Sora', sans-serif;
  --font-body:  'Plus Jakarta Sans', sans-serif;
  --max-w:      1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--navy);
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 10px;
  border: 2px solid var(--accent);
  transition: var(--trans); cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-dk); border-color: var(--accent-dk);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,184,0,0.35);
}
.btn-primary-sm {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--navy);
  font-weight: 700; font-size: 0.85rem;
  padding: 10px 20px; border-radius: 8px;
  border: 2px solid var(--accent); transition: var(--trans);
}
.btn-primary-sm:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text);
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 10px;
  border: 2px solid var(--border); transition: var(--trans);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--navy);
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 10px;
  border: 2px solid #fff; transition: var(--trans);
}
.btn-white:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.5); transition: var(--trans);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ---- SECTION SHARED ---- */
.sec-head { text-align: center; margin-bottom: 60px; }
.sec-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-dk); background: var(--accent-lt);
  border: 1px solid var(--border-acc);
  padding: 5px 16px; border-radius: 100px; margin-bottom: 14px;
}
.sec-tag-light {
  color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}
.sec-h2 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 16px;
}
.sec-sub { font-size: 1rem; color: var(--text-mid); max-width: 580px; margin: 0 auto; line-height: 1.75; }
.accent-word { color: var(--accent); }
.accent-word-dark { color: var(--accent); }

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid transparent;
  transition: var(--trans);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; gap: 32px;
}
.nav-logo img { height: 44px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-link {
  font-size: 0.9rem; font-weight: 600; color: var(--text-mid);
  padding: 6px 0; position: relative; transition: color var(--trans);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--accent); border-radius: 2px;
  transition: right var(--trans);
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }

.nav-right { display: flex; align-items: center; gap: 16px; margin-left: 24px; }
.nav-phone { font-size: 0.85rem; font-weight: 600; color: var(--text-mid); display: flex; align-items: center; gap: 6px; transition: color var(--trans); }
.nav-phone:hover { color: var(--accent); }
.nav-phone i { color: var(--accent); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--trans); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; padding: 100px 24px 60px;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  overflow: visible;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-dk);
  background: var(--accent-lt); border: 1px solid var(--border-acc);
  padding: 7px 18px; border-radius: 100px; margin-bottom: 24px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,184,0,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(255,184,0,0); }
}
.hero-h1 {
  font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--navy); margin-bottom: 20px;
}
.hero-p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 36px; max-width: 460px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  padding: 0;
  overflow: hidden;
  flex-wrap: nowrap;
}
.hstat {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 18px 20px;
  min-width: 0;
}
.hstat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hstat-body { display: flex; flex-direction: column; min-width: 0; }
.hstat-top { display: flex; align-items: baseline; gap: 2px; line-height: 1; }
.hnum { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hplus { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--accent); display: inline; }
.hlabel { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; white-space: nowrap; }
.hdiv { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* Hero visual */
.hero-right { position: relative; }
.hero-visual {
  position: relative;
  /* Extra padding so floating cards don't clip outside */
  padding: 20px 36px 24px 28px;
  box-sizing: border-box;
}
.hv-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--bg2); }
.hero-svg { width: 100%; height: auto; display: block; }

/* Floating cards */
.hv-card {
  position: absolute; background: #fff;
  border: 1px solid var(--border); border-radius: 14px;
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md); z-index: 10;
  animation: floatCard 4s ease-in-out infinite;
}
.hv-card-1 { top: 4px; left: 4px; animation-delay: 0s; }
.hv-card-2 { top: 40%; right: 4px; animation-delay: 1.3s; }
.hv-card-3 { bottom: 4px; left: 10%; animation-delay: 2.6s; }
.hv-card strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy); white-space: nowrap; }
.hv-card span   { display: block; font-size: 0.72rem; color: var(--text-light); white-space: nowrap; }
.hvc-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.hvc-check { margin-left: auto; color: #22c55e; font-size: 1rem; }

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--navy); padding: 22px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ts-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.ts-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); white-space: nowrap; }
.ts-items { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.ts-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.65); }
.ts-item i { color: var(--accent); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 100px 0; background: var(--bg2); }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--trans); box-shadow: var(--shadow-sm);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-acc); }
.svc-card-featured { border-color: var(--border-acc); box-shadow: 0 4px 24px rgba(255,184,0,0.12); }
.svc-card-featured:hover { box-shadow: 0 20px 60px rgba(255,184,0,0.2); }

.svc-top {
  height: 120px; display: flex; align-items: flex-end; justify-content: space-between;
  padding: 20px 24px; position: relative; overflow: hidden;
}
.svc-top-blue { background: linear-gradient(135deg, #e8f0fe 0%, #dbeafe 100%); }
.svc-top-gold { background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%); }
.svc-top-green { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); }

.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: var(--shadow-sm);
}
.svc-icon-blue  { background: #fff; color: #0078d4; }
.svc-icon-gold  { background: #fff; color: var(--accent-dk); }
.svc-icon-green { background: #fff; color: #16a34a; }

.svc-num {
  font-family: var(--font-head); font-size: 3rem; font-weight: 800;
  color: rgba(15,27,53,0.08); line-height: 1; position: absolute; bottom: 8px; right: 20px;
}
/* Badge base */
.svc-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 11px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.svc-badge::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0;
}
/* Blue — Microsoft 365: Most Popular */
.svc-badge-blue {
  background: #1d4ed8; color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(29,78,216,0.35);
}
.svc-badge-blue::before { background: #93c5fd; }
/* Gold — Website Revamp: Most Affordable */
.svc-badge-gold {
  background: #d97706; color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(217,119,6,0.35);
}
.svc-badge-gold::before { background: #fde68a; }
/* Green — Cold Email: Most Effective */
.svc-badge-green {
  background: #16a34a; color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(22,163,74,0.35);
}
.svc-badge-green::before { background: #86efac; }

.svc-body { padding: 24px; }
.svc-body h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.25; }
.svc-body p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; }
.svc-list    { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.svc-list li { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: var(--text-mid); }
.svc-list li i { color: var(--accent); font-size: 0.7rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.88rem; font-weight: 700; color: var(--accent-dk);
  transition: gap var(--trans);
}
.svc-link:hover { gap: 12px; }

/* ============================================================
   WHY US
   ============================================================ */
.whyus { padding: 100px 0; background: var(--bg); }
.whyus-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.whyus-left .sec-tag { display: block; margin: 0 0 14px; text-align: left; }
.whyus-left .sec-h2  { text-align: left; margin-bottom: 14px; }

.why-features { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.why-feat { display: flex; gap: 16px; align-items: flex-start; }
.wf-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-lt); border: 1px solid var(--border-acc);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--accent-dk); margin-top: 2px;
}
.wf-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.wf-text p  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* Process box */
.process-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.proc-title {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 28px; letter-spacing: 0.02em;
  text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--text-light);
}
.proc-step { display: flex; gap: 18px; align-items: flex-start; }
.proc-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent); color: var(--navy);
  font-family: var(--font-head); font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.proc-content strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.proc-content p      { font-size: 0.83rem; color: var(--text-mid); line-height: 1.55; }
.proc-line { width: 2px; height: 20px; background: var(--border); margin: 8px 0 8px 19px; border-radius: 2px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 100px 0; background: var(--bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); transition: var(--trans);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-card-accent {
  background: var(--navy); border-color: transparent;
  box-shadow: var(--shadow-md);
}
.testi-card-accent p, .testi-card-accent .testi-author strong { color: #fff; }
.testi-card-accent .testi-author span { color: rgba(255,255,255,0.6); }
.testi-stars { color: var(--accent); margin-bottom: 16px; font-size: 0.85rem; display: flex; gap: 2px; }
.testi-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; flex-shrink: 0; color: #fff;
}
.av-1 { background: linear-gradient(135deg, var(--accent), var(--accent-dk)); color: var(--navy); }
.av-2 { background: linear-gradient(135deg, #6366f1, #4338ca); }
.av-3 { background: linear-gradient(135deg, #22c55e, #16a34a); }
.testi-author strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.testi-author span   { font-size: 0.78rem; color: var(--text-light); }
.testi-card-accent .testi-av.av-1 { color: var(--navy); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-sec {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d5a 100%);
  padding: 90px 0; position: relative; overflow: hidden; text-align: center;
}
.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.cta-text h2 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: #fff; line-height: 1.2; margin: 12px 0 14px;
}
.cta-text p  { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-deco { position: absolute; top: -40px; right: -60px; width: 280px; pointer-events: none; opacity: 0.6; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 100px 0; background: var(--bg); }
.contact-inner { display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: start; }
.contact-left .sec-tag { display: block; margin: 0 0 14px; text-align: left; }
.contact-left .sec-h2  { text-align: left; margin-bottom: 14px; }

.ci-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.ci-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; transition: var(--trans);
}
.ci-card:hover { border-color: var(--border-acc); background: var(--accent-lt); }
.ci-card > i   { color: var(--accent-dk); font-size: 1rem; margin-top: 2px; flex-shrink: 0; width: 18px; text-align: center; }
.ci-card strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 1px; }
.ci-card span   { font-size: 0.82rem; color: var(--text-mid); }

.ci-social { display: flex; gap: 10px; }
.ci-social a {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--bg2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-mid); transition: var(--trans);
}
.ci-social a:hover { background: var(--accent); color: var(--navy); border-color: var(--accent); transform: translateY(-2px); }

/* Form */
.contact-form {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 18px;
}
.cf-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-group label { font-size: 0.8rem; font-weight: 700; color: var(--text); letter-spacing: 0.04em; }
.cf-group input,
.cf-group select,
.cf-group textarea {
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: 9px; color: var(--text);
  font-family: var(--font-body); font-size: 0.9rem;
  padding: 12px 14px; transition: border-color var(--trans);
  outline: none; width: 100%; resize: none; appearance: none;
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: var(--text-light); }
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus { border-color: var(--accent); background: #fff; }
.cf-group select { cursor: pointer; }
.form-ok {
  display: flex; align-items: center; gap: 10px;
  background: #f0fdf4; border: 1px solid #86efac;
  border-radius: 9px; padding: 16px; color: #16a34a; font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); padding: 72px 0 28px; color: rgba(255,255,255,0.7); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 52px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 40px; width: auto; object-fit: contain; margin-bottom: 18px; filter: brightness(1.05); }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; max-width: 280px; margin-bottom: 22px; }
.footer-soc { display: flex; gap: 9px; }
.footer-soc a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--trans);
}
.footer-soc a:hover { background: var(--accent); color: var(--navy); border-color: var(--accent); }
.footer-col h5 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: color var(--trans); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; padding-top: 4px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bl { display: flex; gap: 20px; }
.footer-bl a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--trans); }
.footer-bl a:hover { color: var(--accent); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--accent); color: var(--navy);
  font-size: 0.9rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(255,184,0,0.45);
  opacity: 0; transform: translateY(16px); transition: var(--trans);
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--accent-dk); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablet: 1024px ---- */
@media (max-width: 1024px) {
  /* Hero: stack left then right, full width */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 110px 24px 60px;
    gap: 48px;
  }
  .hero-right { display: block; } /* SHOW the illustration */
  .hero-h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); }
  .hero-p { max-width: 100%; }

  /* Floating cards: reposition for single-column layout */
  .hv-card-1 { top: -14px; left: 0; }
  .hv-card-2 { top: auto; bottom: 50%; right: -16px; transform: translateY(50%); }
  .hv-card-3 { bottom: -14px; left: 8%; }

  .whyus-inner { grid-template-columns: 1fr; gap: 48px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ---- Mobile: 768px ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); padding: 12px 24px 20px; z-index: 998;
  }
  .nav-links.open .nav-link { padding: 12px 0; border-bottom: 1px solid var(--border); display: block; }
  .nav-right { display: none; }
  .hamburger { display: flex; }

  /* Hero illustration on mobile — show but compact */
  .hero {
    padding: 100px 20px 48px;
    gap: 36px;
  }
  .hero-right { display: block; }
  .hero-visual { margin: 0 auto; max-width: 480px; }

  /* Scale down floating cards on mobile */
  .hv-card {
    padding: 9px 12px;
    gap: 9px;
    border-radius: 11px;
  }
  .hv-card strong { font-size: 0.72rem; }
  .hv-card span   { font-size: 0.65rem; }
  .hvc-icon { width: 28px; height: 28px; font-size: 0.85rem; border-radius: 7px; }
  .hvc-check { font-size: 0.85rem; }
  .hv-card-1 { top: -10px; left: -8px; }
  .hv-card-2 { top: auto; bottom: 48%; right: -10px; transform: translateY(50%); }
  .hv-card-3 { bottom: -10px; left: 6%; }

  .svc-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 24px; }
  .cf-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  /* Stats: stack vertically on mobile */
  .hero-stats { flex-direction: column; border-radius: 14px; }
  .hstat { width: 100%; padding: 16px 18px; }
  .hdiv { width: calc(100% - 36px); height: 1px; margin: 0 18px; }
  .hstat-icon { width: 38px; height: 38px; font-size: 1rem; border-radius: 10px; }
  .hnum { font-size: 1.5rem; }
  .hplus { font-size: 1.1rem; }
  .ts-items { gap: 16px; }
}

/* ---- Small Mobile: 480px ---- */
@media (max-width: 480px) {
  .hero { padding: 96px 16px 40px; gap: 28px; }
  .hero-h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero-visual { max-width: 100%; }

  /* Extra-small: shrink floating cards further */
  .hv-card { padding: 7px 10px; gap: 7px; }
  .hv-card strong { font-size: 0.68rem; }
  .hv-card span   { font-size: 0.6rem; }
  .hvc-icon { width: 24px; height: 24px; font-size: 0.75rem; }
  .hv-card-1 { top: -8px; left: -4px; }
  .hv-card-2 { right: -6px; }
  .hv-card-3 { bottom: -8px; }

  .hero-stats { border-radius: 12px; }
  .hstat { padding: 14px 16px; gap: 12px; }
  .hdiv { width: calc(100% - 32px); margin: 0 16px; }
  .hstat-icon { width: 34px; height: 34px; font-size: 0.9rem; border-radius: 9px; }
  .hnum { font-size: 1.4rem; }
  .hplus { font-size: 1rem; }
  .hlabel { font-size: 0.65rem; }
  .container { padding: 0 16px; }
  .ts-items { gap: 12px; }
  .trust-strip { padding: 20px 16px; }
}
