
/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #f7f6f2;
  --white: #ffffff;
  --navy: #1b1f3b;
  --orange: #ff5100;
  --orange-light: #ff6a1a;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --border: rgba(0,0,0,0.08);
  --card-shadow: 0 2px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --card-shadow-hover: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --radius: 20px;
  --radius-sm: 12px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 96px;
  background: rgba(247,246,242,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  display: flex; align-items: center; line-height: 1;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--navy); color: #fff !important;
  padding: 10px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  transition: all 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--orange); transform: translateY(-1px); }
.nav-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--text);
}
.nav-menu-btn svg { width: 22px; height: 22px; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 150px 40px 80px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(255,81,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 60%, rgba(27,31,59,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 90% 70%, rgba(255,81,0,0.04) 0%, transparent 50%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: var(--orange);
  margin-bottom: 28px; position: relative; z-index: 1;
  box-shadow: var(--card-shadow);
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px; background: var(--orange);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.4)} }
.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800; letter-spacing: -2.5px;
  line-height: 1.02; color: var(--navy);
  position: relative; z-index: 1;
  animation: fadeUp 0.7s 0.1s ease both;
  max-width: 900px;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400; color: var(--text-muted);
  max-width: 520px; margin: 24px auto 0;
  line-height: 1.7; position: relative; z-index: 1;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 12px; align-items: center; justify-content: center;
  margin-top: 36px; position: relative; z-index: 1;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 700;
  transition: all 0.25s; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,81,0,0.35);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,81,0,0.4); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  border: 1.5px solid rgba(27,31,59,0.2);
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

/* Testimonials floating */
.hero-testimonials {
  display: flex; gap: 16px; margin-top: 56px;
  justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
  animation: fadeUp 0.7s 0.4s ease both;
}
.tcard {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  max-width: 280px; text-align: left;
  box-shadow: var(--card-shadow);
}
.tcard-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.tcard-avatar {
  width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
}
.tcard-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tcard-handle { font-size: 13px; font-weight: 700; color: var(--navy); }
.tcard-verified { font-size: 11px; color: var(--orange); font-weight: 600; }
.tcard-text { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Stats bar */
.hero-stats {
  display: flex; gap: 0; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-top: 48px; width: 100%; max-width: 600px;
  box-shadow: var(--card-shadow);
  position: relative; z-index: 1;
  animation: fadeUp 0.7s 0.5s ease both;
}
.hero-stat {
  flex: 1; padding: 20px; text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-size: 24px; font-weight: 800; color: var(--orange); display: block; }
.hero-stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ─── TICKER ─── */
.ticker-section {
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.ticker-wrap {
  display: flex; gap: 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.ticker-track {
  display: flex; gap: 0; flex-shrink: 0;
  animation: scroll 30s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; white-space: nowrap;
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  border-right: 1px solid var(--border);
}
.ticker-item span { color: var(--orange); font-size: 18px; }
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-100%)} }

/* ─── SECTIONS ─── */
.section { padding: 100px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 20px; height: 2px; background: var(--orange); border-radius: 2px;
}
h2.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.1; color: var(--navy);
}
h2.section-title em { font-style: normal; color: var(--orange); }
.section-desc {
  font-size: 17px; color: var(--text-muted); line-height: 1.7;
  max-width: 560px; margin-top: 16px;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; margin-top: 60px;
}
.about-text { font-size: 17px; line-height: 1.8; color: var(--text-muted); }
.about-text strong { color: var(--navy); font-weight: 700; }
.about-text p + p { margin-top: 16px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--card-shadow); transition: all 0.3s;
}
.stat-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.stat-card-num {
  font-size: 2.5rem; font-weight: 800; color: var(--orange);
  line-height: 1; letter-spacing: -2px;
}
.stat-card-label { font-size: 14px; color: var(--text-muted); margin-top: 6px; font-weight: 500; }

/* ─── SERVICES BENTO ─── */
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-label, .services-header .section-desc { margin-left: auto; margin-right: auto; display: flex; justify-content: center; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-card {
  background: var(--navy); border-radius: var(--radius);
  padding: 36px 32px; display: flex; flex-direction: column;
  justify-content: space-between; min-height: 220px;
  transition: transform 0.3s; cursor: default; overflow: hidden;
  position: relative;
}
.bento-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,81,0,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.bento-card:hover { transform: translateY(-4px); }
.bento-card:hover::before { opacity: 1; }
.bento-card.span2 { grid-column: span 2; }
.bento-card.light { background: var(--white); border: 1px solid var(--border); box-shadow: var(--card-shadow); }
.bento-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,81,0,0.15); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}
.bento-icon svg { width: 22px; height: 22px; color: var(--orange); }
.bento-card.light .bento-icon { background: rgba(27,31,59,0.06); }
.bento-card.light .bento-icon svg { color: var(--navy); }
.bento-title { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -0.5px; }
.bento-card.light .bento-title { color: var(--navy); }
.bento-body { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-top: 10px; }
.bento-card.light .bento-body { color: var(--text-muted); }

/* ─── PROCESS ─── */
.process-section { background: var(--navy); }
.process-section .section-label { color: rgba(255,81,0,0.9); }
.process-section .section-label::before { background: rgba(255,81,0,0.9); }
.process-section h2.section-title { color: #fff; }
.process-section .section-desc { color: rgba(255,255,255,0.6); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 60px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius); overflow: hidden;
}
.process-step {
  padding: 40px 32px; background: var(--navy);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(255,255,255,0.03); }
.step-num {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 20px;
}
.step-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.step-body { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.step-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.step-tag {
  background: rgba(255,81,0,0.15); color: var(--orange);
  border-radius: 100px; padding: 4px 12px; font-size: 12px; font-weight: 600;
}

/* ─── WHY US ─── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 60px; }
.why-col {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  box-shadow: var(--card-shadow);
}
.why-col.accent-col {
  background: var(--navy); border-color: transparent;
}
.why-col-title {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 24px;
}
.why-col.accent-col .why-col-title { color: var(--orange); }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.why-item { display: flex; align-items: flex-start; gap: 12px; }
.why-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  margin-top: 1px;
}
.why-icon svg { width: 12px; height: 12px; }
.why-icon.bad { border-color: rgba(255,50,50,0.3); background: rgba(255,50,50,0.05); }
.why-icon.bad svg { color: rgb(220,50,50); transform: rotate(45deg); }
.why-icon.good { border-color: var(--orange); background: var(--orange); }
.why-icon.good svg { color: #fff; }
.why-text { font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.5; }
.why-col.accent-col .why-text { color: rgba(255,255,255,0.85); }

/* ─── BUSINESS SERVICES ─── */
.biz-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 60px; }
.biz-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  box-shadow: var(--card-shadow); transition: all 0.3s;
}
.biz-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); border-color: rgba(255,81,0,0.2); }
.biz-num {
  font-size: 12px; font-weight: 700; color: var(--orange);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.biz-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.biz-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── FAQ ─── */
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; margin-top: 60px; }
.faq-sticky { position: sticky; top: 100px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--card-shadow); cursor: pointer;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(255,81,0,0.3); }
.faq-item.open .faq-q { background: var(--navy); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; gap: 12px; transition: background 0.2s;
}
.faq-q-text { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq-item.open .faq-q-text { color: #fff; }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 16px 22px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }

/* ─── BLOG ─── */
.blog-section { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 60px; }
.blog-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg);
  transition: all 0.3s; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.blog-img-wrap { height: 220px; overflow: hidden; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.04); }
.blog-content { padding: 24px; flex: 1; }
.blog-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.blog-title { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.4; }
.blog-desc { font-size: 13px; color: var(--text-muted); margin-top: 8px; line-height: 1.6; }

/* ─── CONTACT FORM ─── */
.contact-section { background: var(--navy); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-left h2 { color: #fff; }
.contact-left .section-label { color: var(--orange); }
.contact-left .section-label::before { background: var(--orange); }
.contact-left p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-top: 20px; }
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: center; gap: 14px; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,81,0,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--orange); }
.contact-detail-label { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-detail-val { font-size: 15px; color: rgba(255,255,255,0.85); font-weight: 500; margin-top: 2px; }

/* Form */
.form-card {
  background: var(--white); border-radius: 24px;
  padding: 40px; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.form-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.5px; }
.form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--bg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; color: var(--text); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,81,0,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit {
  width: 100%; padding: 16px; background: var(--orange); color: #fff;
  border: none; border-radius: 100px; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all 0.25s; margin-top: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 20px rgba(255,81,0,0.35);
}
.form-submit:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,81,0,0.4); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-success {
  display: none; text-align: center; padding: 32px 20px;
}
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--navy); }
.form-success p { color: var(--text-muted); margin-top: 8px; font-size: 15px; }

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 80px 40px; background: var(--bg);
  text-align: center;
}
.cta-banner-inner {
  max-width: 700px; margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, #2a2f5c 100%);
  border-radius: 28px; padding: 60px 48px;
  position: relative; overflow: hidden;
}
.cta-banner-inner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,81,0,0.15) 0%, transparent 70%);
}
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.15; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 17px; margin-top: 14px; position: relative; }
.cta-banner .hero-actions { margin-top: 32px; }

/* ─── FOOTER ─── */
footer {
  background: #111; color: rgba(255,255,255,0.6);
  padding: 60px 40px 40px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .footer-logo { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 16px; }
.footer-brand .footer-logo span { color: var(--orange); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom-left { color: rgba(255,255,255,0.4); }
.footer-badges { display: flex; gap: 8px; }
.footer-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 4px 14px; font-size: 12px; color: rgba(255,255,255,0.5); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--bg); flex-direction: column;
  padding: 24px; padding-top: 90px; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 20px; border-radius: var(--radius-sm);
  font-size: 17px; font-weight: 600; color: var(--navy);
  border: 1px solid transparent; transition: all 0.2s;
}
.mobile-nav a:hover { background: var(--white); border-color: var(--border); }
.mobile-nav-cta {
  background: var(--orange) !important;
  color: #fff !important; text-align: center;
  margin-top: 8px; border-radius: 100px !important;
  border-color: transparent !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-menu-btn { display: block; }
  .hero { padding: 100px 20px 60px; }
  .hero h1 { font-size: clamp(2.4rem,9vw,3.5rem); letter-spacing: -1.5px; }
  .section { padding: 70px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.span2 { grid-column: span 2; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sticky { position: static; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner-inner { padding: 40px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-testimonials { display: none; }
  .hero-stats { max-width: 100%; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.span2 { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

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


/* ── TOOLS SHARED ── */
.tools-hero { padding: 140px 40px 60px; text-align: center; max-width: 700px; margin: 0 auto; }
.tools-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: var(--navy); letter-spacing: -1.5px; line-height: 1.1; }
.tools-hero p { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-top: 16px; }

.tools-categories { max-width: 1100px; margin: 0 auto; padding: 0 40px 80px; }
.tools-category { margin-bottom: 60px; }
.tools-category-title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 24px; letter-spacing: -0.5px; display: flex; align-items: center; gap: 10px; }
.tools-category-title span { font-size: 14px; color: var(--orange); font-weight: 800; }

.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.tool-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--card-shadow); transition: transform 0.2s, box-shadow 0.2s; }
.tool-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.tool-card-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.tool-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.tool-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.tool-card .btn-primary { font-size: 13px; padding: 10px 18px; }

/* ── TOOL PAGE SHARED ── */
.tool-page { padding: 140px 40px 80px; max-width: 900px; margin: 0 auto; }
.tool-page-header { text-align: center; margin-bottom: 48px; }
.tool-page-header .section-label { justify-content: center; }
.tool-page-header h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--navy); letter-spacing: -1.5px; line-height: 1.15; }
.tool-page-header p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }

.tool-card-main { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--card-shadow); margin-bottom: 24px; }
.tool-card-main h2 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }

.tool-form-group { margin-bottom: 20px; }
.tool-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.tool-form-group input[type="text"],
.tool-form-group input[type="number"],
.tool-form-group input[type="email"],
.tool-form-group select,
.tool-form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-size: 14px; font-family: inherit; background: #fff; color: var(--text); transition: border-color 0.2s; }
.tool-form-group input:focus,
.tool-form-group select:focus,
.tool-form-group textarea:focus { outline: none; border-color: var(--orange); }
.tool-form-group textarea { min-height: 120px; resize: vertical; }
.tool-form-group select { cursor: pointer; }
.tool-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .tool-form-row { grid-template-columns: 1fr; } }

.tool-btn-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.tool-btn-group .btn-primary,
.tool-btn-group .btn-secondary { font-size: 14px; padding: 12px 24px; }

.tool-results { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--card-shadow); margin-bottom: 24px; display: none; }
.tool-results h2 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }

.tool-score-big { font-size: 48px; font-weight: 800; color: var(--navy); line-height: 1; }
.tool-score-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.tool-score-excellent { color: #22c55e; }
.tool-score-good { color: #3b82f6; }
.tool-score-needs { color: #f59e0b; }
.tool-score-weak { color: #ef4444; }

.tool-result-section { margin-bottom: 24px; }
.tool-result-section h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.tool-result-section ul { margin: 0; padding-left: 20px; }
.tool-result-section li { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }
.tool-result-section p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.tool-tag { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-right: 6px; margin-bottom: 6px; }
.tool-tag-green { background: #dcfce7; color: #166534; }
.tool-tag-red { background: #fee2e2; color: #991b1b; }
.tool-tag-orange { background: #ffedd5; color: #9a3412; }
.tool-tag-blue { background: #dbeafe; color: #1e40af; }

.tool-cta-card { background: var(--navy); border-radius: var(--radius); padding: 40px; text-align: center; color: #fff; }
.tool-cta-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.tool-cta-card p { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 20px; }

.tool-disclaimer { font-size: 12px; color: var(--text-muted); margin-top: 16px; padding: 12px; background: var(--bg); border-radius: 8px; border: 1px solid var(--border); }

/* ── STAFFING CALCULATOR STEPS ── */
.calc-steps { display: flex; gap: 8px; margin-bottom: 24px; overflow-x: auto; padding-bottom: 8px; }
.calc-step { flex: 1; min-width: 120px; padding: 12px 16px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; text-align: center; font-size: 13px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
.calc-step.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.calc-step.completed { background: var(--navy); color: #fff; border-color: var(--navy); }

.calc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 900px) { .calc-layout { grid-template-columns: 1fr; } }

.calc-live-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--card-shadow); position: sticky; top: 120px; height: fit-content; }
.calc-live-panel h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.calc-live-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.calc-live-row:last-child { border-bottom: none; }
.calc-live-row .label { color: var(--text-muted); }
.calc-live-row .value { font-weight: 700; color: var(--navy); }
.calc-live-total { font-size: 18px; font-weight: 800; color: var(--orange); }

/* ── SCORECARD TABLE ── */
.scorecard-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.scorecard-table th,
.scorecard-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.scorecard-table th { font-weight: 700; color: var(--navy); background: var(--bg); }
.scorecard-table td { color: var(--text-muted); }

/* ── MULTI-STEP FORM ── */
.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.step-nav { display: flex; justify-content: space-between; margin-top: 24px; }


/* ── WHATSAPP FLOATING BUTTON ── */
/* WhatsApp number must remain in international format without +, spaces, or brackets */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}
.whatsapp-label {
  position: absolute;
  right: 64px;
  background: var(--navy);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-btn:hover .whatsapp-label {
  opacity: 1;
}
@media (max-width: 600px) {
  .whatsapp-btn {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
  .whatsapp-label {
    display: none;
  }
}
