/* ==========================================================================
   Infomatrix Technology - Shared Styles
   Brand: #f89826 orange, #0c0e12 ink, Manrope + Inter
   ========================================================================== */

:root {
  --brand: #f89826;
  --brand-2: #ff6b1a;
  --brand-dark: #b35e00;
  --ink: #0c0e12;
  --ink-2: #1a1d24;
  --muted: #606878;
  --muted-2: #8a909a;
  --line: #e8eaef;
  --line-2: #f0f2f5;
  --surface: #ffffff;
  --tint: #fff7ec;
  --tint-2: #fff2e0;
  --dark-bg: #0c0e12;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; letter-spacing: -.02em; }
a { color: inherit; }

/* Animations */
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.06); }
  66% { transform: translate(-20px, 20px) scale(.96); }
}
@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-35px, 25px) scale(1.08); }
  70% { transform: translate(18px, -30px) scale(.94); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(248,148,32,.55); }
  50% { box-shadow: 0 0 0 9px rgba(248,148,32,0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }
.d6 { transition-delay: .48s; }

/* ==========================================================================
   Navigation
   ========================================================================== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232,234,239,.6);
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: box-shadow .2s, padding .2s;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  color: #3c424c;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 9px;
  transition: color .18s, background .18s;
}
.nav-link:hover { color: var(--brand); background: var(--tint); }
.nav-link.active { color: var(--brand); font-weight: 600; }
.nav-link svg { width: 15px; height: 15px; }
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 9px;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--brand) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); margin: 5px 0;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
  overflow: hidden;
  background: linear-gradient(170deg, #fff 0%, #fffbf4 55%, #fff8ec 100%);
}
.orb { display: none; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(248,152,38,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(248,152,38,.15) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 75%);
  pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }
.hero-inner > * { animation: fadeUp .75s ease both; }
.hero-inner > *:nth-child(2) { animation-delay: .1s; }
.hero-inner > *:nth-child(3) { animation-delay: .2s; }
.hero-inner > *:nth-child(4) { animation-delay: .3s; }
.hero-inner > *:nth-child(5) { animation-delay: .4s; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.85);
  color: var(--brand-dark);
  border: 1px solid rgba(248,148,32,.3);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 16px 6px 11px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 18px rgba(248,148,32,.13);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(40px, 6.4vw, 72px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.02;
  margin-bottom: 1.5rem;
  letter-spacing: -.035em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--brand) 0%, var(--brand-2) 60%, #ff4500 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* Page hero (sub-pages) */
.page-hero {
  position: relative;
  padding: 5rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(170deg, #fff 0%, #fffbf4 55%, #fff8ec 100%);
  border-bottom: 1px solid rgba(248,152,38,.12);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(248,152,38,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(248,152,38,.12) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 75%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 1rem;
  letter-spacing: -.03em;
}
.page-hero p {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 28px -8px rgba(248,148,32,.6);
  transition: transform .2s, box-shadow .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -8px rgba(248,148,32,.7); }

.btn-secondary {
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid #dde0e8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s, color .2s, transform .2s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

/* ==========================================================================
   Trust items
   ========================================================================== */
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; color: #4a5060;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(232,234,239,.8);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.trust-item svg { width: 15px; height: 15px; color: var(--brand); }

/* ==========================================================================
   Stat Bar
   ========================================================================== */
.stat-bar { background: var(--ink); padding: 0 2.5rem; border-top: 2px solid rgba(248,152,38,.25); border-bottom: 1px solid rgba(255,255,255,.06); }
.stat-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: 2.25rem 1rem; border-right: 1px solid rgba(255,255,255,.07); text-align: center; }
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800; color: #fff;
  line-height: 1; margin-bottom: .4rem;
  letter-spacing: -.02em;
}
.stat-num span { color: var(--brand); }
.stat-num .star { font-size: .72em; vertical-align: .12em; margin-left: .04em; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 400; letter-spacing: .04em; text-transform: uppercase; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 5rem 2.5rem; max-width: 1440px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
  padding: 5px 12px;
  background: var(--tint);
  border-radius: 6px;
  border: 1px solid rgba(248,148,32,.18);
}
.section-label::before { content: ""; width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }
h2.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800; color: var(--ink);
  margin-bottom: 1rem; line-height: 1.1;
}
.section-intro { font-size: 17px; color: var(--muted); max-width: 640px; margin-bottom: 2.5rem; line-height: 1.65; }

/* ==========================================================================
   Service Cards
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.service-card {
  position: relative; background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.8rem 1.7rem;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s, border-color .3s;
  overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px -20px rgba(12,14,18,.18);
  border-color: rgba(248,148,32,.25);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #fff4e0, #ffe2bc);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(248,148,32,.18);
  transition: transform .3s;
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }
.service-icon svg { width: 20px; height: 20px; stroke: var(--brand); }
.service-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.service-card p { font-size: 14px; color: #6b727f; line-height: 1.58; }

/* Expanded service cards for sub-pages */
.service-card-expanded { padding: 2.2rem; }
.service-card-expanded h3 { font-size: 18px; margin-bottom: .65rem; }
.service-card-expanded p { font-size: 15px; line-height: 1.65; }
.service-card-expanded .service-icon { width: 50px; height: 50px; margin-bottom: 1.3rem; }
.service-card-expanded .service-icon svg { width: 22px; height: 22px; }

/* ==========================================================================
   Operations Section
   ========================================================================== */
.operations-section {
  background: linear-gradient(170deg, #f8f6f2 0%, #f2efe8 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.operations-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(248,152,38,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(248,152,38,.07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 70%);
  pointer-events: none;
}
.operations-section::after { display: none; }
.operations-inner { max-width: 1440px; margin: 0 auto; padding: 5rem 2.5rem; position: relative; z-index: 1; }
.operations-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.operations-head .section-label { background: rgba(248,148,32,.15); }
.operations-head h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin-bottom: 1rem; line-height: 1.1; letter-spacing: -.025em; }
.operations-head .tagline { font-size: 17px; color: var(--brand-dark); font-style: italic; font-weight: 500; margin-bottom: 1.25rem; }
.operations-head p { font-size: 16px; color: var(--muted); line-height: 1.65; }
.operations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.op-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 1.6rem 1.5rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.op-card:hover {
  transform: translateY(-3px);
  border-color: rgba(248,148,32,.3);
  box-shadow: 0 16px 36px -18px rgba(12,14,18,.18);
}
.op-card-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #fff4e0, #ffe2bc);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.op-card-icon svg { width: 18px; height: 18px; stroke: var(--brand); }
.op-card h3 { font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: .45rem; }
.op-card p { font-size: 13.5px; color: #6b727f; line-height: 1.55; }

/* Expanded op cards for sub-page */
.op-card-expanded { padding: 2rem 1.8rem; }
.op-card-expanded h3 { font-size: 17px; margin-bottom: .6rem; }
.op-card-expanded p { font-size: 14.5px; line-height: 1.6; }

/* ==========================================================================
   Why Section (dark)
   ========================================================================== */
.why-section { background: var(--ink); position: relative; overflow: hidden; }
.why-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(248,148,32,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(248,148,32,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.why-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.why-orb-1 { width: 500px; height: 500px; left: -120px; top: -100px; background: radial-gradient(circle, rgba(255,107,26,.2), transparent 65%); animation: floatOrb 20s ease-in-out infinite; }
.why-orb-2 { width: 420px; height: 420px; right: -80px; bottom: -60px; background: radial-gradient(circle, rgba(248,148,32,.15), transparent 65%); animation: floatOrb2 24s ease-in-out infinite; }
.why-inner {
  max-width: 1440px; margin: 0 auto; padding: 5rem 2.5rem;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: center;
}
.why-left .section-label { background: rgba(248,148,32,.15); border-color: rgba(248,148,32,.25); }
.why-left h2 { color: #fff; }
.why-left p { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.7; margin-top: 1rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 1.4rem 1.3rem;
  transition: background .25s, border-color .25s, transform .25s;
}
.why-card:hover { background: rgba(248,148,32,.08); border-color: rgba(248,148,32,.25); transform: translateY(-3px); }
.why-card-icon {
  width: 36px; height: 36px;
  background: rgba(248,148,32,.15);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .9rem;
}
.why-card-icon svg { width: 17px; height: 17px; stroke: var(--brand); }
.why-card h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.why-card p { font-size: 12.5px; color: rgba(255,255,255,.5); line-height: 1.55; }

/* ==========================================================================
   Managed Services Strip
   ========================================================================== */
.managed-strip {
  background: linear-gradient(160deg, #fafaf8, #f5f3ee);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.managed-strip::after { display: none; }
.managed-inner {
  max-width: 1440px; margin: 0 auto; padding: 5rem 2.5rem;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.managed-inner h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 1rem; }
.managed-inner > div > p { font-size: 16px; color: var(--muted); margin-bottom: 2rem; line-height: 1.65; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.benefit-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: #3c424c; line-height: 1.5; }
.check {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  box-shadow: 0 4px 12px -4px rgba(248,148,32,.65);
}
.check svg { width: 11px; height: 11px; stroke: #fff; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-section { background: #fff; border-top: 1px solid var(--line); }
.pricing-intro { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.pricing-intro h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 1rem; }
.pricing-intro p { font-size: 16px; color: var(--muted); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.pricing-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 2rem 1.8rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pricing-card.featured {
  border-color: rgba(248,148,32,.35);
  background: linear-gradient(160deg, #fffaf2, #fff);
  box-shadow: 0 10px 32px -14px rgba(248,148,32,.25);
  position: relative;
}
.pricing-card.featured::before {
  content: "Most clients"; position: absolute;
  top: -12px; left: 1.8rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 6px;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(12,14,18,.18); }
.pricing-card h3 { font-size: 17px; font-weight: 700; margin-bottom: .5rem; color: var(--ink); }
.pricing-card .price { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 800; color: var(--brand); margin-bottom: 1rem; }
.pricing-card p { font-size: 14px; color: #5b6370; line-height: 1.6; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-section {
  background: linear-gradient(170deg, #fafaf7, #f4f2ec);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-inner { max-width: 1440px; margin: 0 auto; padding: 5rem 2.5rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-top: 3rem; }
.review-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.review-card::before {
  content: "\201C"; position: absolute;
  top: 1rem; right: 1.4rem;
  font-size: 4rem; line-height: 1;
  color: rgba(248,148,32,.12);
  font-family: Georgia, serif;
  pointer-events: none;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px -18px rgba(12,14,18,.16); }
.review-card.featured {
  border-color: rgba(248,148,32,.35);
  background: linear-gradient(150deg, #fffaf3, #fff);
  box-shadow: 0 8px 32px -12px rgba(248,148,32,.2);
  grid-column: span 2;
}
.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 15px; height: 15px; fill: var(--brand); }
.review-quote { font-size: 14.5px; color: #3c424c; line-height: 1.68; flex: 1; }
.review-card.featured .review-quote { font-size: 16px; color: #2a3040; }
.review-author { padding-top: .85rem; border-top: 1px solid var(--line-2); }
.review-author strong { font-size: 13.5px; font-weight: 600; color: var(--ink); display: block; }
.review-source { font-size: 12px; color: var(--muted-2); }
.review-footer { display: flex; gap: 12px; margin-top: 2.5rem; flex-wrap: wrap; }
.review-footer a {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  padding: 10px 18px; border-radius: 9px;
  border: 1.5px solid var(--line);
  color: var(--ink); background: #fff;
  transition: border-color .2s, color .2s, transform .2s;
}
.review-footer a:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.review-footer a svg { width: 15px; height: 15px; }

/* ==========================================================================
   Serving Band
   ========================================================================== */
.serving-band { background: #fff; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); text-align: center; padding: 4rem 2rem; }
.serving-inner { max-width: 900px; margin: 0 auto; }
.serving-label { font-size: 12.5px; color: var(--muted-2); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.towns { font-size: clamp(18px, 2.4vw, 22px); font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--ink); }
.towns em {
  font-style: normal;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ==========================================================================
   CTA Strip
   ========================================================================== */
.cta-strip {
  position: relative;
  background: linear-gradient(150deg, #0d0f16, #12151e);
  padding: 5rem 2.5rem; text-align: center; overflow: hidden;
  border-top: 2px solid rgba(248,152,38,.25);
  border-bottom: 2px solid rgba(248,152,38,.25);
}
.cta-orb-1, .cta-orb-2 { display: none; }
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-strip h2 { color: #fff; font-size: clamp(30px, 3.6vw, 44px); margin-bottom: .9rem; }
.cta-strip p { color: rgba(255,255,255,.55); font-size: 17px; margin-bottom: 2.25rem; line-height: 1.6; }
.cta-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-links a {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  padding: 15px 28px; border-radius: 11px;
  transition: transform .2s, box-shadow .2s, border-color .2s, color .2s, background .2s;
}
.cta-links a.primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: 0 14px 32px -10px rgba(248,148,32,.65); }
.cta-links a.primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(248,148,32,.75); }
.cta-links a.secondary { border: 1.5px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); background: rgba(255,255,255,.04); }
.cta-links a.secondary:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.cta-links svg { width: 16px; height: 16px; }

/* ==========================================================================
   About Page
   ========================================================================== */
.about-story { max-width: 800px; margin: 0 auto; padding: 4rem 2.5rem; }
.about-story h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 1.5rem; line-height: 1.15; }
.about-story p { font-size: 16.5px; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; }
.about-story p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Contact Form
   ========================================================================== */
.contact-section { max-width: 1440px; margin: 0 auto; padding: 4rem 2.5rem; display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 1rem; }
.contact-info p { font-size: 16px; color: var(--muted); line-height: 1.65; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #fff4e0, #ffe2bc);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--brand); }
.contact-detail-text { font-size: 15px; color: var(--ink); }
.contact-detail-text a { color: var(--brand); text-decoration: none; font-weight: 600; }
.contact-detail-text small { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 40px -16px rgba(12,14,18,.1);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--ink); margin-bottom: .5rem;
  letter-spacing: .01em;
}
.form-group label .optional { font-weight: 400; color: var(--muted-2); font-size: 12px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px; color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(248,148,32,.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23606878' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-group label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 400;
  padding: 10px 16px; border: 1.5px solid var(--line);
  border-radius: 10px; cursor: pointer;
  transition: border-color .2s, background .2s;
  margin-bottom: 0;
}
.radio-group label:hover { border-color: rgba(248,148,32,.3); background: var(--tint); }
.radio-group input[type="radio"] { width: auto; accent-color: var(--brand); }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; }
.checkbox-group input[type="checkbox"] { width: auto; margin-top: 3px; accent-color: var(--brand); }
.checkbox-group label { font-size: 13.5px; font-weight: 400; color: #4a5060; line-height: 1.5; margin-bottom: 0; }
.form-submit { margin-top: 2rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer { background: #0a0c10; padding: 3.5rem 2.5rem 2rem; position: relative; }
footer::before { content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent, rgba(248,152,38,.3), transparent); }
.footer-inner { max-width: 1440px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 2rem;
}
.footer-brand img { height: 44px; width: auto; opacity: .95; display: block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.4); margin-top: 1rem; line-height: 1.65; max-width: 340px; }
.footer-col h4 { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.footer-col a, .footer-col span { display: block; font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: .55rem; transition: color .18s; line-height: 1.5; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 12.5px; color: rgba(255,255,255,.25);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.footer-social a:hover { background: rgba(248,148,32,.15); border-color: rgba(248,148,32,.3); color: var(--brand); }
.footer-social svg { width: 15px; height: 15px; }

/* ==========================================================================
   Scroll to Top
   ========================================================================== */
#scrolltop {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 44px; height: 44px;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
#scrolltop.visible { opacity: 1; transform: translateY(0); }
#scrolltop:hover { background: var(--brand); border-color: transparent; }
#scrolltop svg { width: 16px; height: 16px; stroke: #fff; }

/* ==========================================================================
   Thank You Page
   ========================================================================== */
.thankyou-section { max-width: 640px; margin: 0 auto; padding: 5rem 2rem; text-align: center; }
.thankyou-section h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 1.5rem; }
.thankyou-section p { font-size: 17px; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }

/* ==========================================================================
   Large displays
   ========================================================================== */

/* 4-column grids on wide screens */
@media (min-width: 1600px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .operations-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Large desktop / 4K scaled (1800px+) */
@media (min-width: 1800px) {
  .hero-inner { max-width: 1100px; }
  .page-hero-inner { max-width: 880px; }
  .section, .stat-inner, .operations-inner, .reviews-inner, .contact-section, .footer-inner { max-width: 1600px; }
  .why-inner, .pricing-section.section { max-width: 1600px; }
  .pricing-grid { max-width: 1400px; }
  .section-intro { max-width: 720px; }
  .operations-head { max-width: 800px; }
  .about-story { max-width: 900px; }
}

/* Ultrawide displays (2560px+) */
@media (min-width: 2560px) {
  .hero-inner { max-width: 1200px; }
  .page-hero-inner { max-width: 960px; }
  .section, .stat-inner, .operations-inner, .reviews-inner, .contact-section, .footer-inner { max-width: 1800px; }
  .why-inner, .pricing-section.section { max-width: 1800px; }
  .pricing-grid { max-width: 1600px; }
  .section-intro { max-width: 800px; }
  .operations-head { max-width: 880px; }
  .about-story { max-width: 1000px; }
  .cta-inner { max-width: 720px; }
  .services-grid, .ops-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-top .footer-col:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
  .footer-top .footer-brand { grid-column: 1; grid-row: 1 / 3; }
}

@media (max-width: 768px) {
  nav { padding: .85rem 1.25rem; }
  .nav-logo img { height: 38px; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: #fff; flex-direction: column;
    align-items: flex-start; padding: 5rem 1.5rem 2rem;
    box-shadow: -8px 0 32px rgba(0,0,0,.15);
    transition: right .3s ease;
    z-index: 200;
  }
  .nav-links.open { right: 0; }
  .nav-links .nav-link { font-size: 16px; padding: 12px 8px; width: 100%; }
  .nav-links .nav-cta { width: 100%; text-align: center; justify-content: center; margin-top: 1rem; }
  .nav-toggle { display: block; z-index: 201; }
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 199;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
  }
  .nav-overlay.open { opacity: 1; pointer-events: auto; }

  .hero { padding: 3.5rem 1.5rem; }
  .stat-inner { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 1.75rem 1rem; }
  .stat:last-child { border-bottom: none; }
  .section { padding: 4rem 1.5rem; }
  .operations-inner { padding: 4rem 1.5rem; }
  .operations-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .managed-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .review-card.featured { grid-column: span 1; }
  .reviews-inner { padding: 4rem 1.5rem; }
  .contact-section { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top .footer-col:nth-child(4) { grid-column: 1; grid-row: auto; }
  .footer-top .footer-brand { grid-column: 1; grid-row: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
