:root {
  --primary: #071b3d;
  --secondary: #173b83;
  --accent: #ff7a18;
  --highlight: #f4b84d;
  --ink: #0f172a;
  --bg: #f7efe3;
  --surface: #fffdf8;
  --soft: #eef4ff;
  --dark: #101827;
  --card: #ffffff;
  --border: rgba(7, 27, 61, .12);
  --muted: #5d6b7a;
  --shadow: 0 24px 70px rgba(7, 27, 61, .12);
  --shadow-soft: 0 16px 44px rgba(7, 27, 61, .08);
  --container-pad: 24px;
  --hero-title-size: 5.35rem;
  --section-title-size: 3.5rem;
  --body-size: 1rem;
  --lead-size: 1.16rem;
}

[data-theme="dark"] {
  --bg: #09131f;
  --surface: #0d1a2a;
  --soft: #102235;
  --dark: #f8fafc;
  --card: rgba(255, 255, 255, .075);
  --border: rgba(255, 255, 255, .13);
  --muted: #b3bdcb;
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
  --shadow-soft: 0 16px 46px rgba(0, 0, 0, .24);
}

[data-theme="neon"] {
  --bg: #05060a;
  --surface: #071226;
  --soft: rgba(10,20,40,.4);
  --dark: #eaf6ff;
  --card: rgba(2,6,23,.55);
  --border: rgba(29,94,255,.12);
  --muted: #9fb8ff;
  --shadow: 0 30px 80px rgba(6, 12, 32, .6);
  --shadow-soft: 0 18px 46px rgba(6, 12, 32, .44);
  --primary: #07142b;
  --secondary: #081a3f;
  --accent: #39ffb2;
  --highlight: #7df6ff;
}

[data-theme="blue"] {
  --bg: #0a1e3f;
  --surface: #132a52;
  --soft: #1a3a6b;
  --dark: #ffffff;
  --card: rgba(255, 255, 255, .1);
  --border: rgba(148, 187, 255, .25);
  --muted: #b8d4ff;
  --shadow: 0 24px 80px rgba(10, 30, 63, .4);
  --shadow-soft: 0 16px 46px rgba(10, 30, 63, .3);
  --primary: #ffffff;
  --secondary: #e0ebff;
  --accent: #48d1ff;
  --highlight: #94bbff;
  --ink: #ffffff;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255,122,24,.12), transparent 24%),
    linear-gradient(135deg, #fffdf8 0%, #f7efe3 100%);
  color: var(--dark);
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: var(--body-size);
  line-height: 1.75;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: rgba(29,94,255,.2); color: var(--primary); }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.8; }
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--bs-heading-color, var(--ink));
}
[data-theme="dark"] .h1, [data-theme="dark"] .h2, [data-theme="dark"] .h3, [data-theme="dark"] .h4, [data-theme="dark"] .h5, [data-theme="dark"] .h6,
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: #f8fafc;
}
[data-theme="blue"] .h1, [data-theme="blue"] .h2, [data-theme="blue"] .h3, [data-theme="blue"] .h4, [data-theme="blue"] .h5, [data-theme="blue"] .h6,
[data-theme="blue"] h1,
[data-theme="blue"] h2,
[data-theme="blue"] h3,
[data-theme="blue"] h4,
[data-theme="blue"] h5,
[data-theme="blue"] h6 {
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, .3);
}
[data-theme="blue"] p { color: #b8d4ff; }
h1 { font-size: clamp(2.5rem, 4.6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.1vw, 2.6rem); }
h3 { font-size: 1.2rem; }
.container { padding-left: var(--container-pad); padding-right: var(--container-pad); }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--highlight), var(--accent));
  z-index: 3000;
  box-shadow: 0 0 12px rgba(244, 184, 77, .4);
}

.site-nav {
  padding: 12px 0;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 10px 36px rgba(7, 27, 61, .06);
}

[data-theme="dark"] .site-nav { background: rgba(9, 19, 31, .86); }
.navbar-toggler { border: 0; box-shadow: none !important; }
.navbar-nav { gap: .25rem; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  max-width: 100%;
}
.brand-logo {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  box-shadow: 0 16px 30px rgba(255, 122, 24, .24);
  flex-shrink: 0;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  display: block;
}
.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}
.brand-mark strong,
.brand-subtitle,
.brand-variants {
  display: block;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
}
.brand-mark strong {
  font-size: 1.02rem;
  color: var(--primary);
  letter-spacing: .01em;
}
.brand-subtitle {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
}
.brand-variants {
  font-size: .74rem;
  font-weight: 700;
  color: var(--accent);
}
[data-theme="dark"] .brand-mark strong { color: #fff; }
[data-theme="neon"] .brand-mark strong { color: var(--highlight); }
[data-theme="blue"] .brand-mark strong { color: #ffffff; }
[data-theme="blue"] .brand-subtitle { color: #e0ebff; }
[data-theme="blue"] .brand-variants { color: #48d1ff; }
[data-theme="blue"] .site-nav { background: rgba(10, 30, 63, .9); }
.nav-link {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: var(--dark);
  padding: .6rem .8rem;
  border-radius: 999px;
}
.nav-link:hover {
  background: rgba(29,94,255,.08);
  color: var(--primary);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .25rem;
  height: 2px;
  background: var(--highlight);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

.btn {
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  padding: 12px 22px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-premium {
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 36px rgba(7, 27, 61, .16);
}
.btn-ghost {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.88);
  color: var(--primary);
}
.btn-light-premium {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 24px rgba(7, 27, 61, .08);
}
.btn-form-submit {
  color: #07142b;
  border: 1px solid rgba(255,255,255,.86);
  background: linear-gradient(135deg, #fff 0%, #fff7e8 52%, #f4b84d 100%);
  box-shadow: 0 18px 38px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.9);
}
.btn-form-submit:hover {
  color: #07142b;
  box-shadow: 0 22px 46px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.9);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 180px);
  padding-top: 180px;
  isolation: isolate;
  overflow: hidden;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--bg));
}
.hero-section .row.align-items-center {
  min-height: calc(100vh - 200px);
  align-items: flex-start;
}
.hero-title {
  margin-top: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,122,24,.22), transparent 24%),
    radial-gradient(circle at 82% 25%, rgba(23,59,131,.2), transparent 26%),
    radial-gradient(circle at 70% 80%, rgba(244,184,77,.16), transparent 22%),
    linear-gradient(120deg, rgba(255,255,255,.98), rgba(247,239,227,.95));
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(2px);
  animation: floatPulse 12s ease-in-out infinite alternate;
}
.hero-bg::before {
  width: 540px;
  height: 540px;
  right: -180px;
  top: -180px;
  background: radial-gradient(circle, rgba(23,59,131,.22), transparent 68%);
}
.hero-bg::after {
  width: 420px;
  height: 420px;
  left: -140px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255,122,24,.16), transparent 70%);
  animation-duration: 16s;
}
[data-theme="dark"] .hero-bg {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,122,24,.24), transparent 24%),
    radial-gradient(circle at 82% 25%, rgba(29,94,255,.24), transparent 26%),
    radial-gradient(circle at 70% 80%, rgba(244,184,77,.2), transparent 22%),
    linear-gradient(120deg, #09131f, #12253a);
}
@keyframes floatPulse {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: .85; }
  to { transform: translate3d(24px, -24px, 0) scale(1.08); opacity: 1; }
}
.hero-title {
  max-width: 980px;
  color: var(--primary);
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(7, 20, 43, .08);
}
.hero-copy { max-width: 760px; font-size: var(--lead-size); color: #23344d; font-weight: 600; }
.hero-copy strong { color: var(--primary); }
.brand-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 0 0;
}
.brand-badges span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7, 27, 61, .1);
  border-radius: 999px;
  padding: 9px 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,239,227,.92));
  color: var(--primary);
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(7, 27, 61, .06);
}
.brand-badges span:nth-child(2n) {
  color: var(--secondary);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(238,244,255,.95));
}
.brand-badges span:nth-child(3n) {
  color: var(--accent);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--highlight);
  font: 800 .78rem "Manrope", sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-strip span, .industry-cloud span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255,255,255,.74);
  color: var(--primary);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.ai-orbit {
  position: relative;
  width: min(430px, 86vw);
  aspect-ratio: 1;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(29,94,255,.2);
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.28)),
    radial-gradient(circle at center, rgba(255,122,24,.16), transparent 44%);
  box-shadow: 0 28px 80px rgba(7, 27, 61, .16);
  backdrop-filter: blur(18px);
  animation: orbitGlow 8s ease-in-out infinite alternate;
}
.ai-orbit .core {
  position: absolute;
  inset: 34%;
  display: grid;
  place-items: center;
  border-radius: 35%;
  color: #fff;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 22px 54px rgba(8,26,47,.24);
}
.ai-orbit span {
  --angle: calc(var(--i) * 90deg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: rotate(var(--angle)) translate(178px) rotate(calc(-1 * var(--angle)));
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: #fff;
  color: var(--primary);
  font-weight: 900;
  box-shadow: var(--shadow);
}
.signal { position: absolute; inset: 16%; border: 1px dashed rgba(29,94,255,.34); border-radius: 50%; animation: spin 18s linear infinite; }
.signal.two { inset: 26%; animation-duration: 12s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbitGlow {
  from { transform: scale(1); box-shadow: 0 28px 80px rgba(7, 27, 61, .16); }
  to { transform: scale(1.02); box-shadow: 0 34px 90px rgba(23, 59, 131, .24); }
}

.section { padding: 108px 0; }
.section-heading { max-width: 850px; margin-bottom: 42px; }
.section-heading h2,
.intro-section h2 { text-wrap: balance; }
.lead-muted { font-size: var(--lead-size); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.stats-grid div, .premium-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.stats-grid div {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(255,255,255,.66)),
    var(--card);
}
[data-theme="dark"] .stats-grid div {
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.04)),
    var(--card);
}
.stats-grid strong { display: block; color: var(--primary); font: 800 2.6rem "Manrope", sans-serif; }
[data-theme="dark"] .stats-grid strong { color: #fff; }
.stats-grid span { color: var(--muted); font-weight: 700; }

.premium-card {
  height: 100%;
  padding: 32px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,255,255,.76)),
    var(--card);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
[data-theme="dark"] .premium-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.04)),
    var(--card);
}
.premium-card:hover { transform: translateY(-8px); border-color: rgba(29,94,255,.28); box-shadow: 0 30px 80px rgba(8,26,47,.16); }
.service-card {
  display: flex;
  flex-direction: column;
}
.service-card i { color: var(--accent); font-size: 2rem; margin-bottom: 24px; }
.service-card .card-link { margin-top: auto; }

.dark-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(199,151,61,.1), transparent 38%),
    linear-gradient(135deg, #050b17, #07142b 52%, #123a8c);
}
.dark-band p { color: rgba(255,255,255,.78); }
.process-lane { display: grid; gap: 16px; }
.process-lane div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  font: 800 1.15rem "Manrope", sans-serif;
  transition: transform .25s ease, background .25s ease;
}
.process-lane div:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,.12);
}
.process-lane span { color: var(--highlight); }

.industry-cloud { display: flex; flex-wrap: wrap; gap: 14px; }
.industry-cloud span { display: inline-flex; gap: 9px; align-items: center; }
.portfolio-card {
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(29,94,255,.28);
  box-shadow: 0 30px 90px rgba(8,26,47,.16);
}
.portfolio-visual {
  display: grid;
  place-items: center;
  min-height: 220px;
  color: #fff;
  font: 800 3.2rem "Manrope", sans-serif;
  background:
    linear-gradient(135deg, rgba(8,26,47,.98), rgba(18,58,140,.92)),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,.08) 13px);
  position: relative;
  overflow: hidden;
}
.portfolio-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,122,24,.1), transparent 50%);
}
.portfolio-card span { color: var(--highlight); font-weight: 800; text-transform: uppercase; font-size: .72rem; letter-spacing: .08em; }
.portfolio-card a { color: var(--accent); font-weight: 800; display: inline-flex; align-items: center; gap: 6px; }
.testimonial-card {
  border-left: 4px solid var(--highlight);
  border-radius: 20px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(8,26,47,.12);
}
.testimonial-card p { font-size: 1.16rem; color: var(--dark); font-weight: 600; line-height: 1.7; }
.testimonial-card footer { font-weight: 900; margin-top: 16px; }
.testimonial-card footer span { color: var(--muted); display: block; font-weight: 600; font-size: .9rem; }

.premium-accordion .accordion-item {
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
}
.premium-accordion .accordion-button { font-weight: 900; box-shadow: none; background: var(--card); color: var(--dark); padding: 20px 24px; }
.premium-accordion .accordion-button:not(.collapsed) { background: rgba(29,94,255,.08); color: var(--primary); }
.premium-accordion .accordion-body { padding: 20px 24px; color: var(--muted); line-height: 1.8; }
.page-hero {
  padding: 180px 0 100px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255,122,24,.24), transparent 23%),
    radial-gradient(circle at 14% 18%, rgba(7,27,61,.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 48%, #eef4ff 100%);
}
.page-hero h1 {
  max-width: 980px;
  color: #07142b;
  text-shadow: 0 2px 0 rgba(255,255,255,.7), 0 18px 38px rgba(7,20,43,.12);
}
.page-hero p {
  max-width: 740px;
  font-size: var(--lead-size);
  line-height: 1.8;
  color: #24364f;
  font-weight: 650;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
}
.hero-proof-card {
  padding: 32px;
  border: 1px solid rgba(7,27,61,.1);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,255,255,.78)),
    var(--card);
  box-shadow: 0 20px 50px rgba(7, 27, 61, .1);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(7, 27, 61, .14);
}
[data-theme="dark"] .hero-proof-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045)),
    var(--card);
}
.hero-proof-card span,
.feature-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--highlight);
  font: 900 .78rem Manrope, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-proof-card strong {
  display: block;
  color: var(--primary);
  font: 800 1.22rem/1.35 Manrope, sans-serif;
}
[data-theme="dark"] .hero-proof-card strong { color: #fff; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.feature-list {
  display: grid;
  gap: 14px;
}
.feature-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 800;
}
.feature-list i {
  color: var(--highlight);
  font-size: 1.25rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-weight: 800;
  color: var(--accent);
}
.cta-panel h2 { max-width: 780px; }
.cta-panel p { max-width: 720px; margin-bottom: 0; }
.timeline span { color: var(--highlight); font-weight: 900; }

.premium-form {
  display: grid;
  color: #fff;
  border: 0;
  border-radius: 24px;
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(244,184,77,.28), transparent 28%),
    linear-gradient(135deg, #081a3f 0%, #07142b 58%, #040914 100%);
  box-shadow: 0 30px 80px rgba(7, 27, 61, .28);
}
.btn-ghost { border: 1px solid var(--border); background: rgba(255,255,255,.72); }
.btn-light-premium { background: #fff; color: var(--primary); }

.btn-premium:active, .btn-premium:focus { transform: translateY(0); box-shadow: 0 8px 22px rgba(13,37,83,.12); }
.btn-premium:hover { filter: brightness(.98); }
.premium-form input,
.premium-form textarea,
.premium-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,.97);
  color: var(--primary);
  box-shadow: inset 0 1px 2px rgba(7,27,61,.06);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  font-family: inherit;
  font-size: 1rem;
}
.premium-form input:focus,
.premium-form textarea:focus,
.premium-form select:focus {
  outline: none;
  border-color: rgba(255,255,255,.32);
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(7,27,61,.06), 0 0 0 4px rgba(29,94,255,.12);
}
.premium-form textarea { min-height: 180px; resize: vertical; }
.map-shell {
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 16px;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(29,94,255,.12), rgba(255,122,24,.12));
  font-weight: 900;
  text-align: center;
  padding: 24px;
}
.map-shell strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.map-shell span {
  display: block;
  color: var(--secondary);
  font-weight: 700;
}
.contact-card h2 { font-size: clamp(2rem, 3vw, 3rem); }
.contact-card h2,
.form-heading h3 {
  color: #07142b;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}
.contact-card p { max-width: 560px; }
.contact-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}
[data-theme="dark"] .contact-list a,
[data-theme="dark"] .contact-list span { color: #fff; }
.contact-list i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
}
.form-heading h3 { margin-bottom: 8px; }
.premium-form .form-heading h3 {
  color: #fff;
  text-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.form-heading p {
  margin-bottom: 18px;
  color: rgba(255,255,255,.86);
}
.form-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.form-highlight span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.92);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: capitalize;
}

.mega-footer {
  padding-top: 108px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(244,184,77,.2), transparent 24%),
    linear-gradient(135deg, rgba(255,122,24,.12), transparent 34%),
    linear-gradient(135deg, #050b17 0%, #0b1730 48%, #123a8c 100%);
}
.mega-footer p, .mega-footer a { color: rgba(255,255,255,.82); display: block; margin-bottom: 12px; transition: color .25s ease; }
.mega-footer a:hover { color: #fff; }
.mega-footer h6 { font-weight: 900; color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-cta {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}
.footer-brand {
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.footer-logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(255,122,24,.22);
}
.footer-stack {
  gap: 5px;
}
.footer-brand strong {
  color: #fff;
  font-size: 1.02rem;
}
.footer-subtitle {
  color: rgba(255,255,255,.78);
  letter-spacing: .08em;
}
.newsletter { display: flex; gap: 8px; }
.newsletter input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 12px 14px;
  color: #07142b;
  background: rgba(255,255,255,.96);
}
.newsletter button {
  width: 54px;
  border: 0;
  border-radius: 8px;
  color: #07142b;
  background: linear-gradient(135deg, #fff7e8, var(--highlight));
  font-weight: 900;
  flex: 0 0 54px;
}
.footer-contact {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-weight: 750;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.footer-contact i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #07142b;
  background: linear-gradient(135deg, #ffffff, var(--highlight));
  flex: 0 0 32px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.58);
}
.theme-toggle, .whatsapp-float {
  position: fixed;
  right: 22px;
  z-index: 1100;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.theme-toggle:hover, .whatsapp-float:hover { transform: scale(1.1); }
.theme-toggle { bottom: 88px; background: var(--card); color: var(--primary); }
[data-theme="dark"] .theme-toggle { color: #fff; }
.whatsapp-float { bottom: 24px; background: #25d366; color: #fff; font-size: 1.35rem; }
.admin-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.remember-line { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 700; }
.remember-line input { width: auto; }
.form-error { color: #dc2626; font-weight: 700; margin: 0; }

@media (max-width: 1200px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  :root {
    --hero-title-size: 4rem;
    --section-title-size: 2.75rem;
    --lead-size: 1.08rem;
  }
  .site-nav .navbar-collapse { margin-top: 18px; padding: 18px; border-radius: 12px; background: var(--card); box-shadow: var(--shadow); }
  .stats-grid, .timeline, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-proof-card { max-width: 560px; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .section { padding: 82px 0; }
  .ai-orbit span { transform: rotate(var(--angle)) translate(138px) rotate(calc(-1 * var(--angle))); }
  .footer-cta { flex-direction: column; text-align: center; align-items: flex-start; }
}

@media (max-width: 768px) {
  .portfolio-card span { font-size: .68rem; }
  .portfolio-visual { min-height: 180px; font-size: 2.8rem; }
}

@media (max-width: 575px) {
  :root {
    --container-pad: 16px;
    --hero-title-size: 2.8rem;
    --section-title-size: 2.12rem;
    --body-size: .98rem;
    --lead-size: 1.02rem;
  }
  h1, h2 { overflow-wrap: anywhere; }
  .brand-mark span { width: 44px; height: 44px; }
  .brand-mark strong { font-size: .92rem; }
  .stats-grid, .timeline, .feature-grid { grid-template-columns: 1fr; }
  .footer-cta, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-section .min-vh-100 { padding-top: 120px; }
  .ai-orbit span { transform: rotate(var(--angle)) translate(112px) rotate(calc(-1 * var(--angle))); width: 56px; height: 56px; }
  .admin-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { gap: 10px; }
  .newsletter { width: 100%; }
  .page-hero { padding: 138px 0 68px; }
  .hero-proof-card, .cta-panel, .premium-form { padding: 24px; }
  .cta-panel .btn { width: 100%; }
  .section { padding: 68px 0; }
  .trust-strip { gap: 8px; }
  .trust-strip span { padding: 8px 12px; font-size: .85rem; }
  .portfolio-visual { min-height: 160px; font-size: 2.4rem; }
  .testimonial-card { padding: 24px; }
  .footer-cta { padding: 32px 20px; }
}

@media (max-width: 380px) {
  :root {
    --hero-title-size: 2.34rem;
    --section-title-size: 1.9rem;
  }
  .ai-orbit span { transform: rotate(var(--angle)) translate(96px) rotate(calc(-1 * var(--angle))); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
