/* ===========================================
   MOVERAY – The Shifting Company
   style.css  |  Mobile-First, Fluid, Responsive
   =========================================== */

/* ---- CSS Custom Properties ---- */
:root {
  --purple:       #6C3BFF;
  --purple-dark:  #5428e0;
  --purple-light: #8a62ff;
  --purple-pale:  rgba(108,59,255,0.08);
  --gold:         #ffd700;
  --wa-green:     #25D366;
  --white:        #FFFFFF;
  --grey-bg:      #F5F5F5;
  --dark:         #14142b;
  --text:         #2e2e48;
  --muted:        #6b6b8a;
  --border:       #e6e6f0;
  --radius:       18px;
  --radius-sm:    12px;
  --radius-pill:  999px;
  --shadow:       0 4px 24px rgba(108,59,255,0.12);
  --shadow-lg:    0 12px 48px rgba(108,59,255,0.18);
  --transition:   0.28s ease;
  --fh:           'Sora', sans-serif;
  --fb:           'Nunito', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--fb);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--transition); }
ul  { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--fh);
  line-height: 1.2;
  color: var(--dark);
}

.mt12 { margin-top: 12px; }

/* ---- Container (fluid) ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(108,59,255,0.35);
}
.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(108,59,255,0.45);
  color: var(--white);
}

.btn-wagreen {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-wagreen:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.btn-hero-wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  font-size: 1.05rem;
  padding: 16px 32px;
}
.btn-hero-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: var(--white);
}

.btn-hero-call {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  font-size: 1.05rem;
  padding: 16px 32px;
}
.btn-hero-call:hover {
  background: var(--white);
  color: var(--purple);
  border-color: var(--white);
}

.btn-nav {
  background: var(--white);
  color: var(--purple);
  padding: 10px 22px;
  font-size: 0.92rem;
  border: none;
}
.navbar.scrolled .btn-nav {
  background: var(--purple);
  color: var(--white);
}
.btn-nav:hover {
  background: var(--purple);
  color: var(--white) !important;
}

.btn-xl {
  padding: 18px 42px;
  font-size: 1.1rem;
}
.btn-full {
  width: 100%;
}

/* ===========================================
   NAVBAR
   =========================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.navbar.scrolled .logo { color: var(--dark); }
.logo-box {
  width: 36px; height: 36px;
  background: var(--white);
  color: var(--purple);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
}
.navbar.scrolled .logo-box { background: var(--purple); color: var(--white); }
.logo-footer .logo-box    { background: var(--purple); color: var(--white); }
.logo-accent { color: var(--gold); }
.navbar.scrolled .logo-accent { color: var(--purple-light); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.nav-link:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .nav-link:hover { background: var(--purple-pale); color: var(--purple); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: all var(--transition);
}
.navbar.scrolled .menu-toggle span { background: var(--dark); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(140deg, #3d1bba 0%, #6C3BFF 55%, #9065ff 100%);
  display: flex;
  align-items: center;
  padding: clamp(100px,14vw,130px) 0 clamp(60px,8vw,90px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.035'%3E%3Cpath d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(40,15,130,0.88) 0%, rgba(108,59,255,0.6) 60%, rgba(108,59,255,0.18) 100%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content { display: flex; flex-direction: column; gap: 22px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
}
.hero-accent {
  display: block;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  max-width: 480px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-n {
  font-family: var(--fh);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-l { font-size: 0.82rem; color: rgba(255,255,255,0.72); margin-top: 3px; }
.stat-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.22);
  flex-shrink: 0;
}

/* Hero image */
.hero-img-col {
  position: relative;
}
.hero-photo {
  width: 100%;
  height: clamp(320px, 45vw, 500px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 28px 72px rgba(0,0,0,0.32);
}
.hero-shield {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
}
.hero-shield i { color: var(--purple); font-size: 1.6rem; }
.hero-shield strong { display: block; font-family: var(--fh); font-size: 0.95rem; color: var(--dark); }
.hero-shield span  { font-size: 0.78rem; color: var(--muted); }

/* ===========================================
   SECTIONS – Generic
   =========================================== */
.section        { padding: clamp(64px,10vw,96px) 0; }
.section-purple { background: linear-gradient(135deg, #4a21d6 0%, #6C3BFF 100%); }
.section-grey   { background: var(--grey-bg); }

/* Section header */
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px,7vw,64px);
}
.sec-badge {
  display: inline-block;
  background: var(--purple-pale);
  color: var(--purple);
  border: 1px solid rgba(108,59,255,0.18);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.sec-badge.light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.sec-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--dark);
}
.sec-title.left { text-align: left; }
.sec-desc {
  font-size: 1.05rem;
  color: var(--muted);
}

/* ===========================================
   SERVICES GRID
   =========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.srv-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px,3vw,36px);
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple);
}
.srv-emoji {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.srv-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.srv-card p {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.88rem;
}
.srv-link:hover { gap: 10px; color: var(--purple-dark); }

/* ===========================================
   WHY CHOOSE US
   =========================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: clamp(20px,2.5vw,30px) clamp(14px,2vw,20px);
  text-align: center;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--gold);
}
.why-card h3 { font-size: 0.98rem; color: var(--white); margin-bottom: 8px; font-weight: 700; }
.why-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* ===========================================
   HOW IT WORKS
   =========================================== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 48px;
}
.proc-step {
  text-align: center;
  padding: clamp(16px,2.5vw,24px);
}
.proc-num {
  font-family: var(--fh);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--purple-pale);
  color: rgba(108,59,255,0.14);
  line-height: 1;
  margin-bottom: 6px;
}
.proc-emoji {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.proc-step h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.proc-step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}
.proc-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  color: var(--purple);
  opacity: 0.3;
  font-size: 1.3rem;
}
.proc-cta { text-align: center; }

/* ===========================================
   ABOUT
   =========================================== */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px,6vw,64px);
  align-items: center;
}
.about-img-col { position: relative; }
.about-photo {
  width: 100%;
  height: clamp(300px,40vw,460px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-float {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--purple);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 32px rgba(108,59,255,0.38);
}
.float-n {
  display: block;
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.float-l { font-size: 0.8rem; opacity: 0.85; }

.about-content { display: flex; flex-direction: column; gap: 18px; }
.about-content p { color: var(--muted); line-height: 1.8; }
.about-cards { display: flex; flex-direction: column; gap: 14px; }
.about-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.about-icon {
  width: 40px; height: 40px;
  background: var(--purple-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-card h4 { font-size: 0.97rem; margin-bottom: 4px; }
.about-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0; }
.about-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===========================================
   CONTACT
   =========================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* WhatsApp CTA box */
.wa-cta-box {
  background: linear-gradient(135deg, #4a21d6, #6C3BFF);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 4px;
}
.wa-cta-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.wa-ico {
  font-size: 2.6rem;
  color: var(--white);
  flex-shrink: 0;
}
.wa-cta-top h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.wa-cta-top p  { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; }

/* Info list */
.cinfo-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--grey-bg);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.cinfo-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cinfo-ico {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.cinfo-lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 2px;
}
.cinfo-val {
  display: block;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--dark);
}
.cinfo-val:hover { color: var(--purple); }

/* Social pills */
.contact-social-box {
  background: var(--grey-bg);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.soc-heading {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.soc-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.soc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  transition: all var(--transition);
}
.soc-pill:hover { transform: translateY(-2px) scale(1.04); color: var(--white); filter: brightness(1.1); }
.soc-pill.fb { background: #1877F2; }
.soc-pill.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.soc-pill.wa { background: #25D366; }
.soc-pill.tw { background: #000; }
.soc-pill.yt { background: #FF0000; }

/* Inquiry form card */
.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px,3vw,38px);
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.form-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 22px; }

.inquiry-form { display: flex; flex-direction: column; gap: 14px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.req { color: #e53e3e; }

.fg input, .fg select, .fg textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--fb);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108,59,255,0.1);
}
.fg textarea { resize: vertical; min-height: 110px; }

.form-alt {
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  margin-top: 2px;
}
.form-alt a { color: var(--wa-green); font-weight: 700; }

/* ===========================================
   NEWSLETTER
   =========================================== */
.nl-section {
  background: linear-gradient(135deg, #3d1bba 0%, #6C3BFF 100%);
  padding: clamp(48px,7vw,72px) 0;
}
.nl-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.nl-left {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.nl-icon {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.nl-left h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.nl-left p  { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }

.nl-form { flex: 1; max-width: 480px; }
.nl-field { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-input {
  flex: 1;
  min-width: 200px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  font-family: var(--fb);
  font-size: 1rem;
  outline: none;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  min-height: 50px;
  transition: border-color var(--transition);
}
.nl-input::placeholder { color: rgba(255,255,255,0.55); }
.nl-input:focus { border-color: var(--white); background: rgba(255,255,255,0.18); }

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: clamp(56px,8vw,80px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .logo { margin-bottom: 4px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.footer-soc { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.fsoc {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.fsoc:hover { transform: translateY(-3px); color: var(--white); filter: brightness(1.15); }
.fsoc.fb { background: #1877F2; }
.fsoc.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.fsoc.wa { background: #25D366; }
.fsoc.tw { background: #111; }
.fsoc.yt { background: #FF0000; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: var(--fh);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 5px; }
.footer-loc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.84rem; color: rgba(255,255,255,0.42); }
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-legal span { color: rgba(255,255,255,0.3); }
.legal-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.84rem;
  cursor: pointer;
  font-family: var(--fb);
  transition: color var(--transition);
  padding: 0;
}
.legal-btn:hover { color: var(--white); }

/* ===========================================
   FLOATING WHATSAPP
   =========================================== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 888;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  padding: 14px 22px 14px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: all var(--transition);
  text-decoration: none;
}
.wa-float i { font-size: 1.5rem; }
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 38px rgba(37,211,102,0.55);
  color: var(--white);
}

/* ===========================================
   MODALS
   =========================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,5,40,0.65);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.modal.active { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px,4vw,44px);
  max-width: 700px;
  width: 100%;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(22px) scale(0.98);
  transition: all 0.3s ease;
}
.modal.active .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  transition: all var(--transition);
}
.modal-close:hover { color: var(--dark); transform: rotate(90deg); }

.modal-box h2 {
  font-size: 1.65rem;
  padding-right: 36px;
  margin-bottom: 4px;
}
.modal-date { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; }

.modal-body { overflow-y: auto; flex: 1; padding-right: 4px; }
.modal-body::-webkit-scrollbar { width: 4px; }
.modal-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.modal-body h3 { font-size: 1rem; color: var(--purple); margin: 22px 0 6px; }
.modal-body p  { font-size: 0.91rem; color: var(--muted); line-height: 1.72; }
.modal-body a  { color: var(--purple); font-weight: 600; }

/* ===========================================
   SCROLL REVEAL ANIMATION
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger child reveals */
.srv-card:nth-child(1).reveal  { transition-delay: 0.05s; }
.srv-card:nth-child(2).reveal  { transition-delay: 0.1s; }
.srv-card:nth-child(3).reveal  { transition-delay: 0.15s; }
.srv-card:nth-child(4).reveal  { transition-delay: 0.05s; }
.srv-card:nth-child(5).reveal  { transition-delay: 0.1s; }
.srv-card:nth-child(6).reveal  { transition-delay: 0.15s; }

.why-card:nth-child(1).reveal  { transition-delay: 0.05s; }
.why-card:nth-child(2).reveal  { transition-delay: 0.1s; }
.why-card:nth-child(3).reveal  { transition-delay: 0.15s; }
.why-card:nth-child(4).reveal  { transition-delay: 0.2s; }
.why-card:nth-child(5).reveal  { transition-delay: 0.25s; }

.proc-step:nth-child(1).reveal { transition-delay: 0.05s; }
.proc-step:nth-child(3).reveal { transition-delay: 0.15s; }
.proc-step:nth-child(5).reveal { transition-delay: 0.25s; }
.proc-step:nth-child(7).reveal { transition-delay: 0.35s; }

/* ===========================================
   RESPONSIVE – Tablet (≤1024px)
   =========================================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ===========================================
   RESPONSIVE – Large Mobile / Small Tablet (≤860px)
   =========================================== */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero-img-col { display: none; }
  .hero-badge, .hero-subtitle { margin: 0 auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .proc-arrow {
    transform: rotate(90deg);
    padding: 6px 0;
  }

  .about-wrap    { grid-template-columns: 1fr; gap: 36px; }
  .about-float   { display: none; }
  .contact-wrap  { grid-template-columns: 1fr; }
}

/* ===========================================
   RESPONSIVE – Mobile (≤768px)
   =========================================== */
@media (max-width: 768px) {
  /* Mobile nav drawer */
  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -110%;
    width: min(300px, 88vw);
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: right 0.32s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.14);
    z-index: 1000;
    padding: 20px;
  }
  .nav-links.open { right: 0; }

  .nav-link {
    color: var(--text) !important;
    font-size: 1.08rem;
    padding: 13px 28px;
    width: 100%;
    text-align: center;
  }
  .nav-link:hover {
    background: var(--purple-pale) !important;
    color: var(--purple) !important;
  }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-bottom { flex-direction: column; text-align: center; }

  .nl-wrap { flex-direction: column; text-align: center; }
  .nl-left { justify-content: center; }
  .nl-form { max-width: 100%; width: 100%; }

  /* Float button – icon only on small screens */
  .wa-float span { display: none; }
  .wa-float {
    width: 60px; height: 60px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
  .wa-float i { font-size: 1.7rem; }
}

/* ===========================================
   RESPONSIVE – Small Mobile (≤520px)
   =========================================== */
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }

  .hero-title    { font-size: 2rem; }
  .hero-cta      { flex-direction: column; align-items: stretch; }
  .btn-hero-wa, .btn-hero-call { width: 100%; justify-content: center; }

  .form-row2     { grid-template-columns: 1fr; }

  .proc-arrow    { display: none; }

  .about-btns    { flex-direction: column; }
  .about-btns .btn { width: 100%; justify-content: center; }

  .modal-box     { padding: 22px 18px; }
}

/* ===========================================
   UTILITY – No-scroll for modals
   =========================================== */
body.no-scroll { overflow: hidden; }