

/* =======================================================
  FILE: styles.css
  - Shared stylesheet for ALL pages (no CSS in HTML)
  - Breakpoints:
      Desktop: default
      Tablet:  <= 1024px
      Mobile:  <= 600px
  ======================================================= */

:root {
  --navy: #0f172a;
  --navy-2: #111c35;
  --orange: #ea580c;
  --orange-2: #f97316;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --shadow: 0 25px 50px rgba(15, 23, 42, 0.18);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --container: 1140px;
  /* Increased global side padding (full-width look, but with more breathing room) */
  --px: 80px;

  --t: 220ms;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  /* Full-width layout with consistent side padding */
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--px);
}

/* Optional: slightly tighter reading measure when needed */
.measure { max-width: 72ch; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus { left: 16px; }

/* =======================================================
  Buttons & Links
  ======================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
  white-space: nowrap;
}
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 22px rgba(234, 88, 12, 0.25);
}
.btn--primary:hover { background: var(--orange-2); transform: translateY(-2px); }
.btn--ghost {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.10);
  color: var(--navy);
}
.btn--ghost:hover { background: rgba(15, 23, 42, 0.06); transform: translateY(-2px); }
.btn--outline-light {
  border-color: rgba(255,255,255,0.28);
  color: #fff;
  background: transparent;
}
.btn--outline-light:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--orange);
}
.link::after {
  content: "→";
  transition: transform var(--t);
}
.link:hover::after { transform: translateX(3px); }
.link--light { color: #fff; }

.text-accent { color: var(--orange); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}
.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(234, 88, 12, 0.18);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.9); opacity: 0.65; }
}

.kicker {
  margin: 0 0 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--orange);
  font-weight: 800;
}
.kicker--light { color: rgba(255,255,255,0.85); }

/* =======================================================
  Header / Nav (shared)
  ======================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px; /* thicker nav bar */
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}
.brand__text { display: grid; }
.brand__name { color: #fff; font-weight: 800; line-height: 1.1; }
.brand__tag { color: rgba(255,255,255,0.72); font-size: 0.78rem; font-weight: 600; }

.nav { display: flex; align-items: center; }

.nav__panel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: center; /* center page links */
  gap: 34px; /* a bit more spacing */
}

.nav__ctaBtn {
  margin-left: 10px;
}
.nav__link {
  color: rgba(255,255,255,0.75);
  font-weight: 650;
  font-size: 0.92rem;
  position: relative;
  padding: 8px 4px;
  transition: color var(--t);
}
.nav__link:hover { color: #fff; }
.nav__link.is-active { color: #fff; }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
}
.nav__toggle-lines {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  position: relative;
}
.nav__toggle-lines::before,
.nav__toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform var(--t), top var(--t), opacity var(--t);
}
.nav__toggle-lines::before { top: -7px; }
.nav__toggle-lines::after { top: 7px; }

body.menu-open .nav__toggle-lines { background: transparent; }
body.menu-open .nav__toggle-lines::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__toggle-lines::after { top: 0; transform: rotate(-45deg); }

/* =======================================================
  Hero
  ======================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(234, 88, 12, 0.25), transparent 65%),
              radial-gradient(900px 520px at 80% 20%, rgba(249, 115, 22, 0.16), transparent 62%),
              linear-gradient(180deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 90px 0 70px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  /* Removed background image ("SEO" text) to keep services positioning broad */
  background:
    radial-gradient(700px 420px at 18% 18%, rgba(234, 88, 12, 0.22), transparent 60%),
    radial-gradient(620px 360px at 82% 22%, rgba(249, 115, 22, 0.14), transparent 62%),
    radial-gradient(900px 520px at 55% 85%, rgba(255, 255, 255, 0.06), transparent 60%);
  opacity: 1;
}
.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(234, 88, 12, 0.40), transparent 60%);
  filter: blur(16px);
  top: -280px;
  left: -220px;
  opacity: 0.65;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}
.hero__title {
  margin: 16px 0 14px;
  font-size: clamp(2.2rem, 4.4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 900;
}
.hero__subtitle {
  margin: 0 0 22px;
  max-width: 58ch;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__secondary-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn--ghost-light {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 22px;
  padding: 0;
}
.stat {
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.stat__k { font-size: 0.78rem; opacity: 0.78; margin: 0 0 2px; }
.stat__v { font-weight: 800; margin: 0; color: rgba(255,255,255,0.94); }

.hero__trust { margin-top: 10px; }
.trust__label { font-weight: 700; font-size: 0.9rem; opacity: 0.85; }
.trust__row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.chip {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.86);
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card__top {
  padding: 22px 22px 0;
}
.hero-card__eyebrow {
  margin: 0 0 8px;
  color: rgba(255,255,255,0.78);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.hero-card__title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 900;
}
.hero-card__text {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.78);
}
.hero-card__grid {
  padding: 0 22px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mini {
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), background var(--t), border-color var(--t);
}
.mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 220px at 20% 10%, rgba(234, 88, 12, 0.18), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}
.mini > * { position: relative; }

.mini:hover {
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 0.52);
  border-color: rgba(255,255,255,0.14);
}
.mini__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(234, 88, 12, 0.18);
  border: 1px solid rgba(234, 88, 12, 0.25);
  color: rgba(255,255,255,0.92);
  margin-bottom: 10px;
}
.mini__title { margin: 0 0 6px; font-size: 0.98rem; font-weight: 850; }
.mini__text { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.78); }

.hero-card__bottom {
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* =======================================================
  Full-bleed bands & sections (Creative, screen-filling vibe)
  ======================================================= */
.full-bleed { width: 100%; }

/* Give full-bleed sections more energy */
.process-band,
.insights-band {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.process-band {
  background: linear-gradient(135deg, #0b1227, var(--navy));
  padding: 86px 0;
}
.process-band__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 15% 20%, rgba(234, 88, 12, 0.22), transparent 62%),
    radial-gradient(820px 460px at 85% 10%, rgba(249, 115, 22, 0.14), transparent 62%),
    radial-gradient(900px 520px at 60% 90%, rgba(255, 255, 255, 0.06), transparent 60%);
  opacity: 1;
  pointer-events: none;
}
.process-band .container { position: relative; }
.process-band__title { color: #fff; }
.process-band__subtitle { color: rgba(255,255,255,0.78); }

.steps--band {
  margin: 0 0 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
/* IMPORTANT: override base .step styles that appear later in the file */
.process-band .step--band {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.process-band .step--band .step__title { color: rgba(255,255,255,0.96); }
.process-band .step--band .step__text { color: rgba(255,255,255,0.78); }

.process-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.process-cta__card {
  border-radius: var(--radius-lg);
  padding: 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.process-cta__card--dark {
  background: rgba(15, 23, 42, 0.60);
}
.process-cta__title { margin: 0 0 8px; font-weight: 950; }
.process-cta__text { margin: 0 0 14px; color: rgba(255,255,255,0.78); }

.insights-band{
  background: #fff;
  padding: 86px 0;
  position: relative;
  overflow: hidden;
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.insights-band__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 18% 28%, rgba(234, 88, 12, 0.10), transparent 62%),
    radial-gradient(760px 420px at 86% 18%, rgba(15, 23, 42, 0.06), transparent 62%),
    radial-gradient(900px 520px at 60% 90%, rgba(234, 88, 12, 0.06), transparent 60%);
  pointer-events: none;
}

.insights-band .container { position: relative; }
.insights-band__title { color: var(--navy); }
.insights-band__subtitle { color: var(--muted); }

.posts--band{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post--band{
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
}

.post--band:hover{
  transform: translateY(-4px);
  border-color: rgba(234, 88, 12, 0.30);
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.12);
}

.post--band .post__meta{ color: var(--muted); }
.post--band .post__title{ color: var(--navy); }
.post--band .post__text{ color: var(--muted); }

/* Fix outline-light buttons on white Insights section */
.insights-band .btn--outline-light{
  border-color: var(--orange);
  color: var(--orange);
  background: transparent;
}

.insights-band .btn--outline-light:hover{
  background: rgba(234, 88, 12, 0.08);
  transform: translateY(-2px);
}

/* Services band kept from earlier */
.services-band {
  padding: 0;
  background: linear-gradient(135deg, #0b1227, var(--navy));
  color: #fff;
}
.services-band__top {
  padding: 62px 0 40px;
  background: #fff;
  color: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-band__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.services-band__title {
  margin: 0 0 10px;
  font-size: clamp(2.0rem, 3.5vw, 3.0rem);
  letter-spacing: -0.02em;
  font-weight: 950;

  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-band__subtitle {
  color: var(--muted);
  max-width: 72ch;
}

.services-band__top .btn--outline-light{
  border-color: var(--orange);
  color: var(--orange);
}
.services-band__top .btn--outline-light:hover{
  background: rgba(234, 88, 12, 0.08);
}

.services-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.tile {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center; /* center content vertically */
  padding: 30px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.95;
  transform: scale(1.02);
  transition: transform var(--t), filter var(--t);
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
}
.tile:hover::before {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.tile__inner {
  position: relative;
  z-index: 1;
  max-width: 44ch;
}
.tile__kicker {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.88);
}
.tile__title {
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}
.tile__text {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.82);
}
.tile__link {
  display: inline-flex;
  gap: 10px;
  font-weight: 900;
  color: rgba(255,255,255,0.95);
}

.tile--brand::before {
  background:
    radial-gradient(900px 520px at 25% 15%, rgba(234, 88, 12, 0.55), transparent 58%),
    radial-gradient(900px 520px at 75% 85%, rgba(249, 115, 22, 0.28), transparent 60%),
    linear-gradient(135deg, #7c2d12, #0f172a);
}
.tile--web::before {
  background:
    radial-gradient(820px 460px at 20% 15%, rgba(255, 255, 255, 0.10), transparent 60%),
    radial-gradient(900px 520px at 85% 35%, rgba(234, 88, 12, 0.28), transparent 62%),
    linear-gradient(135deg, #1d4ed8, #0f172a);
}
.tile--growth::before {
  background:
    radial-gradient(820px 460px at 22% 18%, rgba(234, 88, 12, 0.35), transparent 62%),
    radial-gradient(820px 460px at 80% 70%, rgba(34, 197, 94, 0.18), transparent 62%),
    linear-gradient(135deg, #312e81, #0f172a);
}

/* =======================================================
  Sections
  ======================================================= */
.section { padding: 86px 0; background: var(--bg); }
.section--alt { background: var(--bg-soft); }
.section__header { margin-bottom: 34px; }
.section__header--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.section__title {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  letter-spacing: -0.02em;
  font-weight: 900;
}
.section__subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, rgba(234, 88, 12, 0.95), rgba(249, 115, 22, 0.25));
  opacity: 0.95;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 240px at 15% 10%, rgba(234, 88, 12, 0.10), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.card:hover::after { opacity: 1; }
.card > * { position: relative; }

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
  border-color: rgba(234, 88, 12, 0.35);
}
.card__title { margin: 0 0 8px; font-weight: 900; }
.card__text { margin: 0 0 14px; color: var(--muted); }

.list { display: grid; gap: 10px; margin: 0 0 12px; }
.list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: rgba(234, 88, 12, 0.22);
  border: 1px solid rgba(234, 88, 12, 0.45);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0 0 24px;
}
.step {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start; /* prevents vertical stretching look */
}
.step__num {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--orange);
  background: rgba(234, 88, 12, 0.10);
  border: 1px solid rgba(234, 88, 12, 0.25);
  line-height: 1;
}
.step__title {
  margin: 0 0 6px;
  font-weight: 900;
}
.step__text {
  margin: 0;
  color: var(--muted);
}
.step__text { margin: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  padding: 24px;
}
.panel--dark {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: var(--navy);
  color: #fff;
}
.panel__title { margin: 0 0 8px; font-weight: 900; }
.panel__text { margin: 0 0 14px; color: var(--muted); }
.panel--dark .panel__text { color: rgba(255,255,255,0.78); }

.posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.post {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  padding: 22px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.post:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.10);
  border-color: rgba(234, 88, 12, 0.30);
}
.post__meta { margin: 0 0 10px; color: var(--muted); font-weight: 650; font-size: 0.9rem; }
.post__title { margin: 0 0 10px; font-weight: 900; }
.post__text { margin: 0 0 14px; color: var(--muted); }

/* =======================================================
  CTA
  ======================================================= */
.cta { padding: 80px 0 90px; background: var(--bg-soft); }
.cta__box {
  border-radius: 26px;
  padding: 38px;
  background: linear-gradient(135deg, var(--navy), #0b1227);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}
.cta__title { margin: 0 0 10px; font-size: 1.7rem; font-weight: 900; }
.cta__text { margin: 0; color: rgba(255,255,255,0.78); }
.cta__actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* =======================================================
  Footer (shared)
  ======================================================= */
.site-footer{
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, #0b1227, var(--navy-2));
  padding: 66px 0 34px;
  color: rgba(255,255,255,0.86);
  position: relative;
  overflow: hidden;
}

.site-footer::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 18% 28%, rgba(234, 88, 12, 0.18), transparent 62%),
    radial-gradient(760px 420px at 86% 18%, rgba(59, 130, 246, 0.12), transparent 62%),
    radial-gradient(900px 520px at 60% 90%, rgba(255, 255, 255, 0.05), transparent 60%);
  pointer-events: none;
}

.site-footer .container{ position: relative; }

/* Footer typography on dark background */
.brand--footer .brand__name{ color: #fff; }
.brand--footer .brand__tag { color: var(--orange); }

.footer__text{ color: rgba(255,255,255,0.72); }

.footer__title{
  color: rgba(255,255,255,0.70);
}

.footer__link{
  color: rgba(255,255,255,0.70);
}
.footer__link:hover{
  color: #fff;
}

/* Social pills on dark background */
.social__link{
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.06);
}
.social__link:hover{
  border-color: rgba(234, 88, 12, 0.45);
  color: #fff;
}

/* Bottom row */
.footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.62);
}
.footer__bottom a:hover{
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer__text { margin: 14px 0 0; color: var(--muted); max-width: 40ch; }
.footer__title {
  margin: 0 0 12px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  font-weight: 900;
}
.footer__list { display: grid; gap: 10px; }
.footer__link { color: var(--muted); font-weight: 650; }
.footer__link:hover { color: var(--orange); }
.footer__muted { color: var(--muted); }
.social { display: flex; flex-wrap: wrap; gap: 10px; }
.social__link {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}

/* =======================================================
  Page templates (shared across inner pages)
  - Additive only (won't change the home page)
  ======================================================= */

.page-hero{
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background:
    radial-gradient(900px 520px at 18% 28%, rgba(234, 88, 12, 0.10), transparent 62%),
    radial-gradient(760px 420px at 86% 18%, rgba(15, 23, 42, 0.06), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  border-bottom: 1px solid var(--border);
}
.page-hero__inner{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: end;
}
.page-hero__title{
  margin: 0 0 10px;
  font-size: clamp(2.0rem, 3.4vw, 2.85rem);
  letter-spacing: -0.02em;
  font-weight: 950;
}
.page-hero__text{ margin: 0; color: var(--muted); max-width: 70ch; }
.page-hero__aside{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}
.page-hero__aside strong{ display: block; margin-bottom: 6px; }
.page-hero__aside p{ margin: 0; color: var(--muted); }

.section--tight{ padding: 56px 0; }

/* =======================================================
  Forms (contact + start-project)
  ======================================================= */

.form{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}
.form__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.field{ display: grid; gap: 8px; }
.field label{ font-weight: 800; font-size: 0.92rem; }
.field .hint{ color: var(--muted); font-size: 0.9rem; margin-top: -4px; }
.input, .select, .textarea{
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 12px;
  font: inherit;
  background: #fff;
  transition: border-color var(--t), box-shadow var(--t);
}
.textarea{ min-height: 130px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus{
  outline: none;
  border-color: rgba(234, 88, 12, 0.55);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12);
}
.form__full{ grid-column: 1 / -1; }
.form__actions{ display:flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; margin-top: 16px; }
.note{
  border: 1px dashed rgba(234, 88, 12, 0.35);
  background: rgba(234, 88, 12, 0.06);
  padding: 14px;
  border-radius: 14px;
  color: var(--muted);
}

/* =======================================================
  Pricing
  ======================================================= */

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.price-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.price-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(520px 240px at 15% 10%, rgba(234, 88, 12, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.price-card:hover{ transform: translateY(-4px); box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12); border-color: rgba(234, 88, 12, 0.30); }
.price-card:hover::before{ opacity: 1; }
.price-card > *{ position: relative; }
.price-card__kicker{ margin: 0 0 8px; color: var(--orange); font-weight: 950; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.72rem; }
.price-card__title{ margin: 0 0 10px; font-weight: 950; letter-spacing: -0.02em; }
.price-card__desc{ margin: 0 0 14px; color: var(--muted); }
.price-card__price{ display:flex; align-items: baseline; gap: 10px; margin: 10px 0 14px; }
.price-card__value{ font-weight: 950; font-size: 2.1rem; letter-spacing: -0.02em; }
.price-card__term{ color: var(--muted); font-weight: 700; }
.price-card__list{ margin: 0 0 16px; display:grid; gap: 10px; }
.price-card__list li{ position: relative; padding-left: 18px; color: var(--muted); }
.price-card__list li::before{
  content:"";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: rgba(234, 88, 12, 0.22);
  border: 1px solid rgba(234, 88, 12, 0.45);
}
.price-card--featured{
  background: linear-gradient(135deg, #0b1227, var(--navy));
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}
.price-card--featured .price-card__desc,
.price-card--featured .price-card__term,
.price-card--featured .price-card__list li{ color: rgba(255,255,255,0.78); }
.price-card--featured .price-card__kicker{ color: rgba(255,255,255,0.85); }
.price-card--featured .price-card__list li::before{ background: rgba(234, 88, 12, 0.35); border-color: rgba(234, 88, 12, 0.50); }

.faq{
  display: grid;
  gap: 12px;
}
.faq details{
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
}
.faq summary{
  cursor: pointer;
  font-weight: 900;
}
.faq p{ margin: 10px 0 0; color: var(--muted); }

/* =======================================================
  Blog (list + post + modal)
  ======================================================= */

.blog-controls{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-controls__left{ display:flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.blog-controls__right{ display:flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.search{
  display:flex;
  align-items:center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px;
  background: #fff;
}
.search svg{ width: 18px; height: 18px; color: var(--muted); }
.search input{
  border: none;
  outline: none;
  font: inherit;
  width: min(420px, 72vw);
}

.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display:grid;
  grid-template-rows: 190px 1fr;
}
.blog-card:hover{ transform: translateY(-4px); box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12); border-color: rgba(234, 88, 12, 0.30); }
.blog-card__media{ position: relative; }
.blog-card__media img{ width: 100%; height: 100%; object-fit: cover; }
.blog-card__fade{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.60)); }
.blog-card__body{ padding: 18px; display:grid; gap: 10px; }
.blog-card__meta{ display:flex; align-items:center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(234, 88, 12, 0.25);
  background: rgba(234, 88, 12, 0.08);
  color: var(--navy);
  font-weight: 850;
  font-size: 0.84rem;
}
.badge svg{ width: 16px; height: 16px; }
.small{ color: var(--muted); font-weight: 700; font-size: 0.86rem; }
.blog-card__title{ margin: 0; font-weight: 950; letter-spacing: -0.01em; }
.blog-card__excerpt{ margin: 0; color: var(--muted); }
.tags{ display:flex; flex-wrap: wrap; gap: 8px; }
.tag{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.03);
  color: var(--muted);
  font-weight: 750;
  font-size: 0.84rem;
}
.blog-card__footer{
  padding: 14px 18px 18px;
  border-top: 1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.blog-read{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  color: var(--orange);
}
.blog-read svg{ width: 18px; height: 18px; }

/* Dialog modal (blog demo admin) */
dialog{
  border: none;
  padding: 0;
  border-radius: 16px;
  width: min(720px, calc(100vw - 32px));
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.35);
}
dialog::backdrop{ background: rgba(15, 23, 42, 0.65); }
.modal{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.modal__header{
  padding: 16px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.modal__header button{
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-weight: 950;
}
.modal__body{ padding: 18px; }
.modal__footer{
  padding: 16px 18px;
  display:flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}

/* =======================================================
  Responsive additions
  ======================================================= */

@media (max-width: 1024px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .form__grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .blog-grid{ grid-template-columns: 1fr; }
  .blog-card{ grid-template-rows: 220px 1fr; }
}

@media (max-width: 600px){
  .page-hero{ padding: 56px 0; }
  .page-hero__aside{ padding: 16px; }
  .form{ padding: 18px; }
  .search input{ width: 64vw; }
}
.social__link:hover { border-color: rgba(234, 88, 12, 0.45); color: var(--orange); }
.footer__bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}
.footer__bottom-links { display: inline-flex; gap: 10px; align-items: center; }

/* =======================================================
  Tablet (<= 1024px)
  ======================================================= */
@media (max-width: 1024px) {
  :root { --px: 48px; }

  .nav__toggle { display: inline-grid; place-items: center; }

  .nav__panel {
    position: fixed;
    inset: 78px 0 auto 0;
    padding: 22px var(--px);
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t), transform var(--t);
    display: grid;
    gap: 14px;
    justify-items: start;
    z-index: 999;
  }
  body.menu-open .nav__panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__list {
    width: 100%;
    display: grid;
    gap: 14px;
    justify-items: start;
  }

  .nav__ctaBtn { width: 100%; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 760px; }

  .services-tiles { grid-template-columns: 1fr; }
  .tile { min-height: 360px; }

  .steps--band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-cta { grid-template-columns: 1fr; }

  .posts--band { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .posts { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .cta__box { grid-template-columns: 1fr; }
  .cta__actions { justify-content: flex-start; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  body.menu-open .nav__list {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__cta { margin-top: 8px; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 760px; }

  .services-tiles { grid-template-columns: 1fr; }
  .tile { min-height: 360px; }

  .steps--band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-cta { grid-template-columns: 1fr; }

  .posts--band { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .posts { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .cta__box { grid-template-columns: 1fr; }
  .cta__actions { justify-content: flex-start; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* =======================================================
  Mobile (<= 600px)
  ======================================================= */
@media (max-width: 600px) {
  :root { --px: 24px; }

  /* Center ALL button groups on mobile */
  .hero__actions,
  .hero__secondary-actions,
  .cta__actions {
    justify-content: center;
    text-align: center;
  }

  .hero__actions .btn,
  .hero__secondary-actions .btn,
  .cta__actions .btn {
    width: 100%;
    max-width: 420px;
  }

  .brand__logo { width: 40px; height: 40px; }
  .brand__name { font-size: 0.98rem; }

  .hero { padding: 72px 0 54px; }
  .hero__subtitle { font-size: 1rem; }

  .hero__stats { grid-template-columns: 1fr; }
  .hero-card__grid { grid-template-columns: 1fr; }


  .section { padding: 64px 0; }
  .section__header--row { flex-direction: column; align-items: start; }

  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr; }

  .cta { padding: 60px 0 70px; }
  .cta__box { padding: 28px; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}


