:root {
  --bg: #f8fafc;
  --bg-soft: #eef2f7;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --primary: #f97316;
  --primary-soft: #ffedd5;
  --border: #dbe3ef;
  --shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #111827;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  line-height: 1;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-amp {
  color: #f97316;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  text-decoration: none;
  color: #4b5563;
  font-weight: 700;
  position: relative;
  transition: color 0.22s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.22s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 0.35rem 0.62rem;
}

.hero {
  position: relative;
  min-height: 89vh;
  padding: 7.6rem 0 5.8rem;
  overflow: hidden;
  background: #0f172a;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.64) 0%, rgba(2, 6, 23, 0.74) 55%, rgba(2, 6, 23, 0.78) 100%);
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  z-index: 0;
  opacity: 0.5;
  animation: floatGlow 8s ease-in-out infinite;
}

.hero-glow-1 {
  width: 280px;
  height: 280px;
  right: -80px;
  top: -40px;
  background: #fed7aa;
}

.hero-glow-2 {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -90px;
  background: #bfdbfe;
  animation-delay: 1.4s;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: center;
  justify-items: center;
  text-align: center;
  max-width: 1020px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin: 1.2rem 0 0.9rem;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.hero-copy,
.section-copy {
  color: var(--muted);
  line-height: 1.65;
}

.hero h1,
.hero .hero-copy {
  color: #f8fafc;
}

.hero-highlight {
  color: #ff7a1a;
}

.hero .eyebrow {
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.52);
  border-color: rgba(229, 231, 235, 0.24);
  padding: 0.42rem 0.9rem;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f97316;
  display: inline-block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
  color: #9a3412;
  background: var(--primary-soft);
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  border-radius: 11px;
  padding: 0.78rem 1.15rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.24);
  background: var(--primary);
}

.btn-sm {
  padding: 0.62rem 0.92rem;
  font-size: 0.95rem;
  border-radius: 10px;
}

.nav-links .btn,
.nav-links .btn:visited,
.nav-links .btn:hover,
.nav-links .btn:active {
  color: #ffffff;
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.35);
  color: #fff;
  border-color: rgba(229, 231, 235, 0.28);
  backdrop-filter: blur(5px);
}

.hero .btn-ghost {
  color: #f8fafc;
  border-color: rgba(248, 250, 252, 0.34);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.95rem;
  margin-top: 0.65rem;
}

.hero-card {
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(226, 232, 240, 0.25);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.38);
  padding: 1.35rem;
  display: none;
  transition: transform 0.22s ease;
}

.hero-card h3 {
  color: #f8fafc;
}

.hero-card:hover {
  transform: translateY(-4px);
}

.hero-card ul,
.service-card ul,
.timeline ul,
.bullet-check {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
}

.hero-card ul {
  color: #cbd5e1;
}

.stats,
.mini-metrics {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mini-metrics {
  margin-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats div,
.mini-metrics div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero .stats div {
  background: rgba(17, 24, 39, 0.52);
  border: 1px solid rgba(229, 231, 235, 0.2);
  backdrop-filter: blur(6px);
  padding: 1rem 1.2rem;
  border-radius: 14px;
}

.stats div:hover,
.mini-metrics div:hover {
  transform: translateY(-3px);
  border-color: #fdb07a;
}

.stats strong,
.mini-metrics strong {
  display: block;
  font-size: 1.08rem;
}

.stats span,
.mini-metrics span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero .stats strong,
.hero .stats span {
  color: #f3f4f6;
}

.hero .stats strong {
  font-size: 2.65rem;
  color: #ff7a1a;
  line-height: 1;
}

.hero .stats span {
  margin-top: 0.3rem;
  font-size: 1.05rem;
  color: rgba(243, 244, 246, 0.95);
}

.section {
  padding: 5.6rem 0;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: start;
  margin-bottom: 1.8rem;
}

.cred-layout {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 2rem;
  align-items: stretch;
}

.cred-left .eyebrow {
  margin-bottom: 1rem;
}

.cred-left h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.cred-highlight {
  color: #f97316;
}

.cred-left .section-copy {
  max-width: 62ch;
  margin-bottom: 1.65rem;
  font-size: 1.03rem;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cert-card {
  min-height: 132px;
  border-color: #e5e7eb;
  box-shadow: none;
}

.cert-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}

.cert-card h3 {
  margin-bottom: 0.38rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.cert-card p {
  font-size: 0.92rem;
}

.compliance-banner {
  margin-top: 1rem;
  background: var(--primary);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.compliance-banner .cert-icon {
  background: rgba(15, 23, 42, 0.32);
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  margin-bottom: 0;
  flex-shrink: 0;
}

.compliance-banner h3,
.compliance-banner p {
  color: #fff;
  margin: 0;
}

.compliance-banner h3 {
  margin-bottom: 0.35rem;
}

.cred-right {
  background: radial-gradient(circle at 90% 10%, #22375f 0%, #0f1d37 52%, #0a1428 100%);
  border-radius: 18px;
  padding: 1.45rem;
  color: #e5e7eb;
}

.cred-right h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 2.6vw, 2.1rem);
  color: #fff;
}

.proof-list {
  display: grid;
  gap: 1.1rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  border: 1px solid rgba(226, 232, 240, 0.16);
  background: rgba(30, 41, 59, 0.5);
  border-radius: 14px;
  padding: 1.2rem 1.25rem;
}

.proof-item > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  border: 1px solid #fed7aa;
  color: #111827;
  font-size: 1.18rem;
  line-height: 1;
  flex-shrink: 0;
}

.proof-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.proof-item strong {
  display: block;
  color: #ff7a1a;
  font-size: 2.05rem;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-bottom: 0.22rem;
  font-weight: 800;
}

.proof-item span {
  display: flex;
  color: #000;
  font-size: 1.02rem;
}

.awards {
  margin-top: 1.1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.16);
  padding-top: 1rem;
}

.awards h4 {
  color: #fff;
  margin-bottom: 0.55rem;
}

.awards ul {
  margin: 0;
  padding-left: 1rem;
}

.awards li {
  color: #d6dde9;
  line-height: 1.7;
  font-size: 0.96rem;
}

.awards li::marker {
  color: #f97316;
}

.cards {
  margin-top: 1.45rem;
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #fdb07a;
}

.card p,
.case p,
.quote p,
.form-wrap p {
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.process-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.process-intro .eyebrow {
  margin-bottom: 0.9rem;
}

.process-intro h2 {
  margin-bottom: 0.8rem;
  line-height: 1.08;
}

.process-intro .section-copy {
  font-size: 1.05rem;
}

.process-timeline {
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

.process-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 1.55rem 1.7rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.process-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.process-icon i {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--primary);
  flex-shrink: 0;
  font-size: 0.96rem;
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.32);
}

.step-2 .process-icon i{
  background: #10b981;
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.32);
}

.step-3 .process-icon i {
  background: #3b82f6;
  box-shadow: 0 8px 22px rgba(59, 130, 246, 0.3);
}

.step-4 .process-icon i {
  background: #8b5cf6;
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.3);
}

.process-number {
  font-size: 3.05rem;
  color: #e5e7eb;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
}

.process-card h3 {
  margin: 0.2rem 0 0.45rem;
  font-size: clamp(1.5rem, 2.7vw, 2.15rem);
  line-height: 1.2;
}

.process-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin: 0;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  color: #475569;
  font-size: 0.84rem;
  font-weight: 600;
}

.process-desc {
  margin: 1rem 0 1rem;
  color: #475569;
  font-size: 1.04rem;
}

.process-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.4rem;
}

.process-points li {
  position: relative;
  padding-left: 1.1rem;
  color: #475569;
}

.process-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0.54rem;
}

.timeline-full article {
  background: #fff;
}

.timeline article,
.case {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.timeline article:hover,
.case:hover {
  transform: translateY(-4px);
  border-color: #fdb07a;
}

.timeline span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #9a3412;
  font-weight: 700;
}

.guarantee {
  margin-top: 2.3rem;
  border-radius: 26px;
  background: linear-gradient(135deg, #0d1d3a 0%, #132a50 54%, #0a1a35 100%);
  color: #e2e8f0;
  padding: 3rem 2rem;
  text-align: center;
}

.guarantee p {
  max-width: 860px;
  margin: 0.8rem auto 1.7rem;
  color: #cbd5e1;
  font-size: clamp(1.05rem, 2.1vw, 1.22rem);
  line-height: 1.45;
}

.guarantee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.guarantee h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #ffffff;
}

.guarantee-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.9rem;
  justify-content: center;
}

.guarantee-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f8fafc;
}

.guarantee-tags span::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid var(--primary);
  border-radius: 2px;
  display: inline-block;
}

.services-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.2rem;
}

.services-intro h2 {
  margin-bottom: 0.8rem;
  line-height: 1.08;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.services-intro .section-copy {
  font-size: 1.06rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.45rem;
}

.service-panel {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #dce5f0;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
}

.service-body {
  padding: 1.9rem 1.8rem 1.6rem;
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.05rem;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.cloud-panel .service-icon {
  background: #3b82f6;
}

.security-panel .service-icon {
  background: #10b981;
}

.bi-panel .service-icon {
  background: #7c3aed;
}

.ai-panel .service-icon {
  background: var(--primary);
}

.service-panel h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.95rem, 2.4vw, 2.2rem);
  line-height: 1.15;
}

.service-panel p {
  margin: 0 0 1rem;
  color: #475569;
  font-size: 1.06rem;
  line-height: 1.5;
}

.service-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.66rem;
}

.service-points li {
  position: relative;
  padding-left: 1.2rem;
  color: #334155;
  font-weight: 600;
}

.service-points li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.78rem;
}

.service-foot {
  border-top: 1px solid #e5e7eb;
  padding: 1.15rem 1.8rem;
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cloud-panel .service-body {
  background: #e8eff8;
}

.security-panel .service-body {
  background: #e4f2ed;
}

.bi-panel .service-body {
  background: #eceaf7;
}

.ai-panel .service-body {
  background: #f4efe6;
}

.cases {
  display: block;
}

.cases-intro {
  text-align: center;
  margin-bottom: 2.2rem;
}

.cases-pill {
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  background: #ffe9d2;
}

.cases-title {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4.7vw, 3.45rem);
}

.cases-highlight {
  color: var(--primary);
  font-weight: 700;
}

.cases-subcopy {
  margin: 1rem auto 0;
  max-width: 640px;
  color: #64748b;
  line-height: 1.5;
}

.cases-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.9rem;
}

.cases-tab {
  border: 1px solid #d7dee9;
  background: #f8fafc;
  color: #475569;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.cases-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.24);
}

.case-featured {
  border: 1px solid #d8e0ea;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.case-featured-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 470px;
}

.case-featured-media {
  position: relative;
}

.case-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-tech-tags {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.case-tech-tags span {
  background: rgba(255, 255, 255, 0.9);
  color: #334155;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.case-featured-body {
  background: #f7f8fa;
  padding: 1.7rem 1.65rem;
  display: flex;
  flex-direction: column;
}

.case-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  color: #7b8794;
  font-size: 0.8rem;
}

.case-meta-row span:not(:first-child)::before {
  content: "•";
  margin-right: 0.45rem;
}

.case-segment {
  background: #fee7cf;
  color: #7c2d12;
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  font-weight: 700;
}

.case-featured-body h3 {
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1.15;
}

.case-featured-body h4 {
  margin: 0 0 0.36rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.83rem;
  color: #475569;
}

.case-featured-body p {
  margin: 0 0 1.1rem;
  color: #475569;
  line-height: 1.54;
}

.case-quote {
  margin: 0.35rem 0 0;
  border: 1px solid #f4d4b1;
  border-radius: 12px;
  background: #fff6ed;
  padding: 1rem 1rem 0.9rem;
}

.case-quote p {
  margin: 0 0 0.65rem;
  font-style: italic;
  color: #334155;
}

.case-quote footer {
  color: #9a3412;
  font-size: 0.85rem;
  font-weight: 700;
}

.case-featured-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #0f1f3b;
  color: #e2e8f0;
}

.case-featured-metrics article {
  padding: 1.35rem 1.1rem 1.2rem;
  border-right: 1px solid rgba(148, 163, 184, 0.24);
}

.case-featured-metrics article:last-child {
  border-right: 0;
}

.case-featured-metrics strong {
  display: block;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.case-featured-metrics span {
  display: block;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.2rem;
}

.case-featured-metrics small {
  color: #cbd5e1;
  font-size: 0.82rem;
}

.why-section {
  background: #f8fafc;
}

.why-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.6rem;
}

.why-pill {
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.92rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #7c2d12;
  background: #ffe9d2;
}

.why-intro h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
}

.why-highlight {
  color: var(--primary);
}

.why-intro > p:last-child {
  margin: 1.05rem auto 0;
  color: #475569;
  line-height: 1.5;
  font-size: 1.05rem;
  max-width: 700px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.why-card {
  border: 1px solid #dbe3ef;
  border-radius: 22px;
  background: #fff;
  padding: 1.55rem 1.5rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.why-card-accent {
  border-color: #f4c08a;
}

.why-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fff3e5;
  color: #9a3412;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.why-icon-filled {
  background: #c2410c;
  color: #fff;
}

.why-head h3 {
  margin: 0;
  font-size: 1.95rem;
  line-height: 1.28;
}

.why-card > p {
  margin: 0;
  color: #475569;
  line-height: 1.62;
  font-size: 0.98rem;
}

.why-foot {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: flex-end;
}

.why-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: #fff0df;
  color: #7c2d12;
  padding: 0.34rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.why-tag::before {
  content: "●";
  font-size: 0.56rem;
}

.why-metric {
  text-align: right;
}

.why-metric strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: #c2410c;
}

.why-metric small {
  display: block;
  margin-top: 0.2rem;
  color: #64748b;
  font-size: 0.8rem;
}

.compare-section {
  padding-top: 1.4rem;
}

.compare-panel {
  border-radius: 22px;
  padding: 2.5rem 2rem 2.2rem;
  background: linear-gradient(105deg, #0f1b33 0%, #152648 58%, #1f2f49 100%);
  border: 1px solid #23334e;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.compare-head {
  text-align: center;
  margin-bottom: 1.55rem;
}

.compare-head h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(2rem, 4.3vw, 3rem);
  line-height: 1.08;
}

.compare-head h2 span {
  color: var(--primary);
}

.compare-head p {
  margin: 0.55rem 0 0;
  color: #cbd5e1;
  font-size: 0.98rem;
}

.compare-columns,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 150px 150px;
  align-items: center;
}

.compare-columns {
  margin: 0 auto 0.55rem;
  max-width: 860px;
}

.compare-columns span {
  text-align: center;
  color: #93a8c4;
  font-size: 0.98rem;
  font-weight: 700;
}

.compare-columns span:nth-child(2) {
  color: #f97316;
}

.compare-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 0.48rem;
}

.compare-row {
  background: rgba(51, 67, 96, 0.44);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 11px;
  padding: 0.92rem 0.82rem;
}

.compare-row h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 1rem;
}

.compare-row p {
  margin: 0.18rem 0 0;
  color: #9fb0c9;
  font-size: 0.87rem;
}

.compare-mark {
  justify-self: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
}

.compare-mark.yes {
  background: rgba(194, 65, 12, 0.58);
  color: #ffffff;
}

.compare-mark.no {
  background: rgba(30, 41, 59, 0.72);
  color: #e2e8f0;
}

.value-cta-section {
  background: #f8fafc;
  padding-top: 2.1rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-bottom: 2.4rem;
}

.value-item {
  text-align: center;
  padding: 0.5rem 1rem;
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff3e5;
  color: #9a3412;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.95rem;
}

.value-item h3 {
  margin: 0 0 0.65rem;
  font-size: 2rem;
}

.value-item p {
  margin: 0;
  color: #475569;
  line-height: 1.58;
  font-size: 0.98rem;
}

.value-cta-card {
  border-radius: 20px;
  background: linear-gradient(180deg, #f97316 0%, #f35d08 100%);
  padding: 2.85rem 1.2rem 2.3rem;
  text-align: center;
}

.value-cta-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.12;
}

.value-cta-card p {
  margin: 0.9rem auto 1.55rem;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.03rem;
  line-height: 1.52;
}

.value-cta-btn {
  display: inline-block;
  text-decoration: none;
  background: #fff;
  color: #c2410c;
  border: 1px solid #fff;
  border-radius: 9px;
  padding: 0.86rem 1.42rem;
  font-weight: 800;
  font-size: 0.98rem;
}

.value-cta-btn:hover {
  color: #9a3412;
  transform: translateY(-1px);
}

.testimonials {
  background: #f6f1e8;
}

.testimonials-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.test-pill {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffedd5;
  color: #9a3412;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.4rem 0.85rem;
}

.testimonials-intro h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 5.3vw, 4rem);
}

.testimonials-intro > p:last-child {
  margin: 0.95rem auto 0;
  color: #475569;
  font-size: 1.04rem;
}

.testimonials-grid {
  margin-top: 2rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.35rem 1.35rem 1.2rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.test-stars {
  color: #f97316;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.testimonial-card h3 {
  margin: 0 0 0.72rem;
  font-size: 1.75rem;
  line-height: 1.27;
}

.testimonial-card > p {
  margin: 0;
  color: #334155;
  line-height: 1.62;
  font-size: 0.99rem;
}

.test-author {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #c2410c;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.test-author strong {
  display: block;
  font-size: 0.98rem;
}

.test-author small {
  display: block;
  color: #64748b;
  font-size: 0.84rem;
}

.quote span {
  color: #9a3412;
}

.cta-band {
  background: linear-gradient(125deg, #0d1a33 0%, #142442 56%, #1e2f4a 100%);
}

.eval-layout {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.7rem;
  align-items: center;
}

.eval-copy h2 {
  margin: 0 0 0.95rem;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(2.1rem, 5.3vw, 4.3rem);
}

.eval-copy h2 span {
  color: #ff7a1a;
}

.eval-copy > p {
  margin: 0 0 1.55rem;
  color: #f1f5f9;
  line-height: 1.58;
  max-width: 560px;
  font-size: 1.06rem;
}

.eval-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.05rem;
}

.eval-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.eval-check {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #c2410c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-top: 0.05rem;
}

.eval-points strong {
  display: block;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.eval-points small {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.form-wrap,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.contact-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-intro h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-size: clamp(2.1rem, 4.8vw, 4rem);
}

.contact-intro h2 span {
  color: #f97316;
}

.contact-intro p {
  margin: 0.85rem 0 0;
  color: #475569;
  font-size: 1.06rem;
}

.contact-layout {
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: start;
}

.contact-info h3 {
  margin: 0 0 1.2rem;
  font-size: 2rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #ffedd5;
  color: #c2410c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-item h4 {
  margin: 0 0 0.25rem;
  font-size: 1.06rem;
}

.contact-item p {
  margin: 0;
  color: #334155;
  line-height: 1.55;
}

.contact-social {
  margin-top: 1.35rem;
  display: flex;
  gap: 0.75rem;
}

.contact-social a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  text-decoration: none;
  background: #0f172a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-cards {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lead-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.35rem;
  display: grid;
  gap: 0.85rem;
}

.eval-form {
  background: #f8fafc;
  border-color: #e2e8f0;
  border-radius: 18px;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.3);
}

.lead-form label {
  display: grid;
  gap: 0.34rem;
  font-size: 0.91rem;
  color: #334155;
}

.eval-form label {
  font-size: 0.86rem;
  color: #0f172a;
  font-weight: 600;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  padding: 0.66rem;
  font: inherit;
}

.eval-form input,
.eval-form textarea,
.eval-form select {
  border-color: #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  padding: 0.64rem 0.68rem;
}

.eval-form textarea {
  resize: vertical;
}

.eval-form .btn {
  width: 100%;
  border-radius: 8px;
  font-weight: 700;
  background: #f97316;
  border-color: #f97316;
  margin-top: 0.15rem;
}

.eval-disclaimer {
  text-align: center;
  font-size: 0.74rem;
  color: #64748b;
  margin-top: 0.1rem;
}

.eval-form .form-msg {
  min-height: 0;
}

.contact-form {
  background: #f8fafc;
  border-color: #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  padding: 1.25rem 1.2rem;
}

.contact-form label {
  font-size: 0.86rem;
  color: #0f172a;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-color: #cbd5e1;
  border-radius: 8px;
  padding: 0.66rem 0.68rem;
}

.contact-form .btn {
  width: 100%;
  border-radius: 8px;
  background: #f97316;
  border-color: #f97316;
  font-weight: 700;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: 2px solid #fdba74;
  outline-offset: 1px;
}

.char-count {
  color: #64748b;
  font-size: 0.76rem;
}

.form-msg {
  min-height: 1.2rem;
  margin: 0;
  color: #9a3412;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.6rem 0 1.4rem;
  background: var(--primary);
  color: #ecfeff;
}

.site-footer p,
.site-footer h3,
.site-footer h4 {
  margin: 0;
}

.site-footer p {
  color: #ccfbf1;
  line-height: 1.6;
}

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

.copy {
  margin-top: 1.5rem;
  text-align: center;
  color: #99f6e4;
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(16px) scale(1.04);
  }
}

@media (max-width: 1050px) {
  .cred-layout,
  .split-head,
  .hero-grid,
  .form-wrap,
  .contact-grid,
  .timeline,
  .cards-5,
  .cards-3,
  .cards-2,
  .services-grid,
  .cases,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .case-featured-main {
    grid-template-columns: 1fr;
  }

  .case-featured-media {
    min-height: 360px;
  }

  .case-featured-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-featured-metrics article:nth-child(2n) {
    border-right: 0;
  }

  .compare-panel {
    padding: 2.1rem 1.3rem 1.8rem;
  }

  .compare-columns,
  .compare-row {
    grid-template-columns: 1fr 120px 120px;
  }

  .eval-layout {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .eval-copy > p {
    max-width: 100%;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 6.2rem 0 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .hero .stats strong {
    font-size: 2.1rem;
  }

  .hero .stats span {
    font-size: 0.98rem;
  }

  .menu-btn {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    right: 4%;
    top: 68px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 12px;
    padding: 0.8rem;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .split-head,
  .cred-layout,
  .hero-grid,
  .form-wrap,
  .contact-grid,
  .timeline,
  .cards-5,
  .cards-3,
  .cards-2,
  .services-grid,
  .cases,
  .footer-grid,
  .contact-cards,
  .mini-metrics,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-glow {
    opacity: 0.22;
  }

  .process-card {
    padding: 1.25rem 1.2rem;
  }

  .process-number {
    font-size: 2.35rem;
  }

  .process-points {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .proof-item strong {
    font-size: 1.7rem;
  }

  .service-body {
    padding: 1.35rem 1.2rem 1.2rem;
  }

  .service-foot {
    padding: 0.95rem 1.2rem;
  }

  .service-panel h3 {
    font-size: clamp(1.6rem, 7vw, 1.95rem);
  }

  .cases-title {
    font-size: clamp(1.8rem, 9.5vw, 2.4rem);
  }

  .cases-subcopy {
    font-size: 0.95rem;
  }

  .cases-tab {
    font-size: 0.78rem;
    padding: 0.52rem 0.82rem;
  }

  .case-featured-body {
    padding: 1.3rem 1.1rem;
  }

  .case-featured-body h3 {
    font-size: 1.75rem;
  }

  .case-featured-metrics {
    grid-template-columns: 1fr;
  }

  .case-featured-metrics article {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  }

  .case-featured-metrics article:last-child {
    border-bottom: 0;
  }

  .why-intro h2 {
    font-size: clamp(1.9rem, 9.2vw, 2.65rem);
  }

  .why-intro > p:last-child {
    font-size: 0.97rem;
  }

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

  .why-card {
    padding: 1.25rem 1.1rem;
  }

  .why-head h3 {
    font-size: 1.35rem;
  }

  .why-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-metric {
    text-align: left;
  }

  .compare-section {
    padding-top: 0.8rem;
  }

  .compare-panel {
    padding: 1.45rem 0.8rem 1rem;
    border-radius: 18px;
  }

  .compare-head {
    margin-bottom: 1.2rem;
  }

  .compare-head h2 {
    font-size: clamp(1.55rem, 8.5vw, 2rem);
  }

  .compare-head p {
    font-size: 0.9rem;
  }

  .compare-columns,
  .compare-row {
    grid-template-columns: 1fr 72px 72px;
  }

  .compare-columns span {
    font-size: 0.79rem;
  }

  .compare-row {
    padding: 0.82rem 0.62rem;
  }

  .compare-row h3 {
    font-size: 0.9rem;
  }

  .compare-row p {
    font-size: 0.76rem;
  }

  .compare-mark {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }

  .eval-copy h2 {
    font-size: clamp(1.95rem, 10vw, 2.8rem);
  }

  .eval-copy > p {
    font-size: 0.97rem;
  }

  .eval-points strong {
    font-size: 1.02rem;
  }

  .eval-points small {
    font-size: 0.9rem;
  }

  .eval-form {
    padding: 1.1rem 1rem;
  }

  .eval-form label {
    font-size: 0.82rem;
  }

  .eval-disclaimer {
    font-size: 0.71rem;
  }

  .contact-intro {
    margin-bottom: 1.45rem;
  }

  .contact-intro h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .contact-intro p {
    font-size: 0.94rem;
  }

  .contact-info h3 {
    font-size: 1.55rem;
    margin-bottom: 1rem;
  }

  .contact-item h4 {
    font-size: 0.98rem;
  }

  .contact-item p {
    font-size: 0.93rem;
  }

  .contact-form {
    padding: 1.05rem 0.95rem;
  }

  .contact-form label {
    font-size: 0.81rem;
  }

  .value-cta-section {
    padding-top: 1.2rem;
  }

  .value-item {
    padding: 0.35rem 0.5rem;
  }

  .value-item h3 {
    font-size: 1.45rem;
  }

  .value-item p {
    font-size: 0.92rem;
  }

  .value-cta-card {
    border-radius: 16px;
    padding: 2rem 0.85rem 1.6rem;
  }

  .value-cta-card h2 {
    font-size: clamp(1.55rem, 8.2vw, 2rem);
  }

  .value-cta-card p {
    font-size: 0.95rem;
    margin: 0.75rem auto 1.25rem;
  }

  .value-cta-btn {
    font-size: 0.92rem;
    padding: 0.76rem 1.15rem;
  }

  .testimonials-intro h2 {
    font-size: clamp(1.8rem, 9.5vw, 2.5rem);
  }

  .testimonials-intro > p:last-child {
    font-size: 0.94rem;
  }

  .testimonial-card {
    padding: 1.15rem 1rem 1.05rem;
  }

  .testimonial-card h3 {
    font-size: 1.35rem;
  }

  .testimonial-card > p {
    font-size: 0.93rem;
  }

  .guarantee {
    padding: 2.2rem 1.2rem;
    border-radius: 20px;
  }

  .guarantee-tags {
    gap: 0.85rem 1.2rem;
  }

  .guarantee-tags span {
    font-size: 0.95rem;
  }
}
