/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #e05c26;
  --orange-dark: #c2410c;
  --dark: #080920;
  --dark-2: #0d0f28;
  --white: #fff;
  --gray: #f4f5fb;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── NAVBAR ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,9,32,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  gap: 24px;
}

.nav-logo img { height: 100px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.08); }

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background .2s, transform .2s !important;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 12px 0 16px;
}

.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mob-cta {
  margin: 8px 20px 0;
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(224,92,38,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 16px;
}

.page-hero-tag span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero h1 .accent { color: var(--orange); }

.page-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-dark { background: var(--dark); color: #fff; }
.section-gray { background: var(--gray); }

.sec-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}

.sec-head {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

.sec-head-dark { color: #fff; }
.sec-sub-dark { color: rgba(255,255,255,0.5); }
.accent-text { color: var(--orange); }

/* ── HERO SECTION (HOME) ── */
.hero-sec {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-sec::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(224,92,38,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-left { flex: 1; max-width: 600px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,92,38,0.1);
  border: 1px solid rgba(224,92,38,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 24px;
}

.hero-pill span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.4s ease-in-out infinite;
}

.hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-h1 .hl { color: var(--orange); }

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-fill:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224,92,38,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background .2s, color .2s;
}

.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }

.hero-markets {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.hero-markets b { color: rgba(255,255,255,0.7); }

.hero-stats {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.srv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: box-shadow .25s, transform .25s;
}

.srv-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }

.srv-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.srv-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.srv-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.srv-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── DARK SERVICE CARDS ── */
.srv-card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 28px 24px;
  transition: background .25s, transform .25s;
}

.srv-card-dark:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.srv-card-dark h3 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.srv-card-dark p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
}

.testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }

.testi-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
  flex-shrink: 0;
}

.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.testi-role {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-top: 2px;
}

/* ── CTA SECTION ── */
.cta-sec {
  background: var(--orange);
  padding: 72px 0;
  text-align: center;
}

.cta-sec h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.cta-sec p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange);
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.15); }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 28px 24px;
}

.why-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.why-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── TRACK RECORD / RESULTS ── */
.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.track-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.track-client {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.track-what {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.track-result {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
}

.team-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid rgba(224,92,38,0.25);
}

.team-name { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── BLOG GRID ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.blog-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }

.blog-thumb {
  height: 180px;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.blog-body { padding: 22px 22px 24px; }

.blog-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 8px;
  display: block;
}

.blog-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

.blog-meta {
  font-size: 12px;
  color: rgba(100,116,139,0.7);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* ── CONTACT ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.contact-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.contact-info p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.cd-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(224,92,38,0.1);
  border: 1px solid rgba(224,92,38,0.2);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cd-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); display: block; margin-bottom: 2px; }
.cd-val { font-size: 14px; font-weight: 600; color: var(--text); }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
  width: 100%;
  justify-content: center;
}

.wa-btn:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.3); }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
}

.form-head { font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.form-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--text);
  outline: none;
  font-family: var(--font);
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}

.form-field::placeholder { color: #94a3b8; }

.form-field:focus {
  border-color: rgba(224,92,38,0.5);
  box-shadow: 0 0 0 3px rgba(224,92,38,0.08);
  background: #fff;
}

.form-field.full { grid-column: 1 / -1; }
textarea.form-field { resize: none; }

.form-submit {
  grid-column: 1 / -1;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  width: 100%;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224,92,38,0.3);
}

.form-note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}

/* ── FLAGS ── */
.ops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ops-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ops-flag { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.ops-name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ops-focus { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.ops-sub { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ── INDUSTRIES ── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.ind-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ind-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.ind-item h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.ind-item p { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ── ABOUT SECTIONS ── */
.who-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 760px;
}

.who-text p { margin-bottom: 16px; }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.mv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 32px 28px;
}

.mv-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}

.mv-card h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.mv-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── B2B PAGE ── */
.b2b-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.b2b-feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
}

.b2b-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(224,92,38,0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.b2b-feature h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.b2b-feature p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ── SERVICES LIST (full page) ── */
.svc-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}

.svc-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.svc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 6px;
  flex-shrink: 0;
}

.svc-list-item h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.svc-list-item p { font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ── PACKAGES ── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.pkg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
}

.pkg-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,92,38,0.1);
}

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pkg-name { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pkg-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }

.pkg-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.pkg-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

.pkg-feature::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}

.pkg-cta {
  display: block;
  text-align: center;
  background: var(--gray);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
}

.pkg-card.featured .pkg-cta {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.pkg-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

/* ── FOOTER ── */
.footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo { height: 60px; width: auto; margin-bottom: 16px; }

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: background .2s, color .2s;
}

.footer-social:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,0.45); transition: color .2s; }
.footer-col ul a:hover { color: var(--orange); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  transition: color .2s;
}

.footer-contact a:hover { color: var(--orange); }
.footer-contact span { font-size: 16px; }

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bar a { color: rgba(255,255,255,0.3); transition: color .2s; }
.footer-bar a:hover { color: var(--orange); }
.footer-bar-links { display: flex; gap: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-left { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); width: 100%; }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  .page-hero { padding: 110px 0 60px; }
  .hero-sec { padding: 100px 0 60px; min-height: auto; }
  .mv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-list-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
  .form-submit { grid-column: 1; }
  .form-note { grid-column: 1; }
  .hero-btns { flex-direction: column; }
  .btn-fill, .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
