/*
Theme Name: ProdigicLeap Consulting
Theme URI: https://prodigileap.com/
Author: OpenAI Codex
Description: A modern, conversion-focused WordPress theme for the ProdigicLeap technology consulting website.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: prodigileap-consulting
*/

:root {
  --bg-dark: #08111f;
  --bg-dark-alt: #0f1d33;
  --bg-light: #f5f8fc;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: #ffffff;
  --surface-muted: #edf3fb;
  --text-dark: #0f1728;
  --text-light: #f8fbff;
  --text-muted: #68809f;
  --line: rgba(104, 128, 159, 0.22);
  --primary: #0b8bdc;
  --primary-dark: #0670b6;
  --secondary: #19c2a7;
  --accent: #ffc857;
  --shadow: 0 24px 60px rgba(3, 14, 28, 0.18);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1180px;
  --transition: 200ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(11, 139, 220, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(25, 194, 167, 0.08), transparent 24%),
    var(--bg-light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 17, 31, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text-light);
}

.brand-lockup {
  width: clamp(190px, 24vw, 320px);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.16));
}

@media (max-width: 820px) {
  .brand-lockup {
    width: min(210px, 52vw);
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  padding: 0;
  margin: 0;
  color: var(--text-light);
}

.main-nav a {
  color: inherit;
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
}

.main-nav .menu-item {
  position: relative;
}

.main-nav .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 240px;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  margin: 0;
  border-radius: 18px;
  background: rgba(8, 17, 31, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.main-nav .menu-item-has-children {
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.main-nav .sub-menu li {
  width: 100%;
}

.main-nav .sub-menu a {
  display: block;
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
}

.main-nav .sub-menu a:hover,
.main-nav .sub-menu a:focus {
  background: rgba(255, 255, 255, 0.08);
}

.main-nav .menu-item-has-children:hover > .sub-menu,
.main-nav .menu-item-has-children:focus-within > .sub-menu {
  display: flex;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--text-light);
  padding: 10px 12px;
}

.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
}

.button-primary,
input[type="submit"] {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 16px 30px rgba(11, 139, 220, 0.22);
}

.button-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-dark {
  background: var(--text-dark);
  color: var(--text-light);
}

.hero {
  position: relative;
  padding: 92px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(25, 194, 167, 0.24), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(11, 139, 220, 0.3), transparent 26%),
    linear-gradient(180deg, #10233b 0%, #17304b 100%);
  color: var(--text-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  color: rgba(248, 251, 255, 0.84);
}

.hero h1,
.section-heading h2,
.page-hero h1 {
  line-height: 1.05;
  margin: 18px 0;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  max-width: 11ch;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(248, 251, 255, 0.78);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

.metric-card,
.glass-card {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.metric-card strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-panel {
  position: relative;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(30px);
}

.hero-panel::before {
  width: 180px;
  height: 180px;
  right: 10%;
  top: -24px;
  background: rgba(25, 194, 167, 0.24);
}

.hero-panel::after {
  width: 220px;
  height: 220px;
  left: -24px;
  bottom: -24px;
  background: rgba(11, 139, 220, 0.24);
}

.hero-stack {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-copy {
  max-width: 610px;
}

.hero-trust-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.hero-trust-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(248, 251, 255, 0.8);
  font-weight: 600;
}

.hero-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 0 0 6px rgba(25, 194, 167, 0.12);
}

.hero-visual-card {
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-visual-copy {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-visual-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(248, 251, 255, 0.82);
}

.hero-visual-card img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stack-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.stack-card h3,
.card h3,
.service-card h3,
.industry-card h3,
.case-card h3,
.engagement-card h3,
.feature-card h3 {
  margin-top: 0;
}

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

.stack-mini {
  padding: 18px;
  border-radius: 18px;
  background: rgba(8, 17, 31, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section {
  padding: 88px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 80% 15%, rgba(25, 194, 167, 0.15), transparent 22%),
    linear-gradient(180deg, #08111f 0%, #10213c 100%);
  color: var(--text-light);
}

.section-muted {
  background: linear-gradient(180deg, #eff4fb 0%, #ffffff 100%);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-heading p,
.lede {
  max-width: 66ch;
  color: var(--text-muted);
}

.section-dark .section-heading p,
.section-dark .lede,
.section-dark .card p,
.section-dark .industry-card p,
.section-dark .engagement-card p {
  color: rgba(248, 251, 255, 0.74);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.service-card,
.industry-card,
.case-card,
.engagement-card,
.feature-card,
.contact-card,
.seo-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  color: var(--text-dark);
}

.section-dark .service-card,
.section-dark .industry-card,
.section-dark .engagement-card,
.section-dark .feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .service-card,
.section-dark .service-card h3,
.section-dark .service-card p,
.section-dark .service-card li,
.section-dark .industry-card,
.section-dark .industry-card h3,
.section-dark .industry-card p,
.section-dark .engagement-card,
.section-dark .engagement-card h3,
.section-dark .engagement-card p,
.section-dark .feature-card,
.section-dark .feature-card h3,
.section-dark .feature-card p {
  color: var(--text-light);
}

.section-dark .contact-card,
.section-dark .seo-card,
.section-dark .case-card {
  color: var(--text-dark);
}

.contact-card h3,
.contact-card p,
.contact-card label,
.contact-card a,
.contact-card strong,
.contact-card span,
.contact-card li,
.seo-card h3,
.seo-card li,
.case-card h3,
.case-card p {
  color: inherit;
}

.icon-badge {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(11, 139, 220, 0.18), rgba(25, 194, 167, 0.18));
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
}

.icon-badge svg {
  width: 28px;
  height: 28px;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(25, 194, 167, 0.18), transparent 68%);
  pointer-events: none;
}

.icon-ai {
  color: #19c2a7;
}

.icon-product {
  color: #0b8bdc;
}

.icon-project {
  color: #ffc857;
}

.icon-qa {
  color: #6fd4ff;
}

.icon-dev {
  color: #58d9bf;
}

.icon-devops {
  color: #87b9ff;
}

.service-card ul,
.industry-list,
.detail-list,
.seo-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.service-card li,
.detail-list li,
.seo-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.service-card li::before,
.detail-list li::before,
.seo-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  left: 0;
  top: 0.65em;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.industry-card {
  position: relative;
  overflow: hidden;
}

.industry-art {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(11, 139, 220, 0.22), rgba(25, 194, 167, 0.16)),
    #ffffff;
  border: 1px solid rgba(104, 128, 159, 0.14);
  position: relative;
}

.industry-art::before,
.industry-art::after {
  content: "";
  position: absolute;
}

.art-stream::before {
  inset: 18px 14px 18px 14px;
  border-radius: 14px;
  border: 4px solid #0f1728;
}

.art-stream::after {
  width: 22px;
  height: 22px;
  right: 12px;
  bottom: 12px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #19c2a7;
}

.art-commerce::before {
  left: 15px;
  top: 23px;
  width: 42px;
  height: 26px;
  border: 4px solid #0f1728;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.art-commerce::after {
  left: 22px;
  top: 14px;
  width: 28px;
  height: 12px;
  border: 4px solid #0f1728;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.art-fintech::before {
  inset: 18px;
  border-radius: 50%;
  border: 4px solid #0f1728;
}

.art-fintech::after {
  width: 26px;
  height: 4px;
  left: 23px;
  top: 34px;
  background: #0f1728;
  box-shadow: 0 -10px 0 #0f1728, 0 10px 0 #0f1728;
}

.art-health::before {
  left: 31px;
  top: 17px;
  width: 10px;
  height: 38px;
  border-radius: 5px;
  background: #0f1728;
}

.art-health::after {
  left: 17px;
  top: 31px;
  width: 38px;
  height: 10px;
  border-radius: 5px;
  background: #19c2a7;
}

.art-saas::before {
  left: 14px;
  top: 18px;
  width: 44px;
  height: 12px;
  border-radius: 999px;
  background: #0f1728;
  box-shadow: 0 14px 0 #0b8bdc, 0 28px 0 #19c2a7;
}

.art-ai::before {
  inset: 17px;
  border-radius: 50%;
  border: 4px dashed #0f1728;
}

.art-ai::after {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  left: 29px;
  top: 29px;
  background: #19c2a7;
}

.art-enterprise::before {
  left: 16px;
  bottom: 16px;
  width: 10px;
  height: 24px;
  border-radius: 4px;
  background: #0f1728;
  box-shadow: 15px -10px 0 #0b8bdc, 30px -20px 0 #19c2a7;
}

.art-global::before {
  inset: 15px;
  border-radius: 50%;
  border: 4px solid #0f1728;
}

.art-global::after {
  left: 18px;
  top: 33px;
  width: 36px;
  height: 4px;
  background: #19c2a7;
  box-shadow: 0 -12px 0 #19c2a7, 0 12px 0 #19c2a7;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.pill-list li,
.industry-list li {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  font-weight: 600;
}

.section-dark .pill-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.story-panel {
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(11, 139, 220, 0.08), rgba(25, 194, 167, 0.05));
  border: 1px solid var(--line);
}

.section-visual {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 20px;
  border: 1px solid rgba(104, 128, 159, 0.18);
  box-shadow: 0 20px 40px rgba(3, 14, 28, 0.08);
}

.service-card .value-tag,
.case-tag {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 139, 220, 0.1);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.section-dark .service-card .value-tag,
.section-dark .case-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
}

.split-highlight {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.highlight-panel {
  padding: 34px;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-dark .highlight-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(104, 128, 159, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.form-field input {
  min-height: 58px;
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(11, 139, 220, 0.55);
  box-shadow: 0 0 0 4px rgba(11, 139, 220, 0.1);
}

.form-support {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 4px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(11, 139, 220, 0.08), rgba(25, 194, 167, 0.08));
  border: 1px solid rgba(104, 128, 159, 0.16);
}

.form-support img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.form-support-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-support-copy p {
  margin: 0;
  color: var(--text-muted);
}

.contact-meta {
  display: grid;
  gap: 16px;
}

.meta-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(104, 128, 159, 0.16);
}

.meta-item:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.meta-item strong {
  display: block;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-value {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.contact-visual {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  padding: 14px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(11, 139, 220, 0.08), rgba(25, 194, 167, 0.06));
  border: 1px solid rgba(104, 128, 159, 0.14);
}

.contact-note {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11, 139, 220, 0.08), rgba(25, 194, 167, 0.08));
  border: 1px solid rgba(104, 128, 159, 0.14);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.94rem;
}

.notice {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
}

.notice-success {
  background: rgba(25, 194, 167, 0.14);
  color: #0e6c58;
}

.notice-error {
  background: rgba(255, 91, 91, 0.12);
  color: #a62d2d;
}

.page-hero {
  padding: 120px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(25, 194, 167, 0.14), transparent 24%),
    linear-gradient(180deg, #08111f 0%, #112340 100%);
  color: var(--text-light);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.page-hero-visual {
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.page-hero-visual img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-content {
  padding: 72px 0 96px;
}

.service-showcase {
  display: grid;
  gap: 28px;
}

.service-band,
.industry-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-band-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.service-band-reverse .service-band-copy {
  order: 2;
}

.service-band-reverse .service-band-visual {
  order: 1;
}

.service-band-copy h3,
.industry-feature-copy h3,
.snapshot-card h3,
.industry-solution-card h3 {
  margin-top: 0;
}

.service-band-visual,
.industry-feature img,
.snapshot-card img,
.industry-solution-card img {
  border-radius: 24px;
}

.service-band-visual {
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(11, 139, 220, 0.1), rgba(25, 194, 167, 0.08));
  border: 1px solid rgba(104, 128, 159, 0.16);
}

.service-band-visual img,
.industry-feature img,
.snapshot-card img,
.industry-solution-card img {
  width: 100%;
  border-radius: 22px;
}

.service-snapshot-grid,
.industry-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.snapshot-card,
.industry-solution-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.industry-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.industry-feature {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.industry-feature-large {
  grid-column: span 2;
}

.industry-feature-large img {
  max-height: 280px;
  object-fit: cover;
  background: linear-gradient(180deg, rgba(11, 139, 220, 0.08), rgba(25, 194, 167, 0.08));
}

.industry-feature:not(.industry-feature-large) {
  grid-template-columns: 1fr;
}

.industry-feature:not(.industry-feature-large) img {
  max-height: 220px;
  object-fit: contain;
  padding: 16px;
  background: linear-gradient(180deg, rgba(11, 139, 220, 0.08), rgba(25, 194, 167, 0.08));
}

.footer {
  padding: 30px 0 42px;
  background: #07101f;
  color: rgba(248, 251, 255, 0.74);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .service-band,
  .industry-feature,
  .split-highlight,
  .contact-layout,
  .story-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .service-snapshot-grid,
  .industry-solution-grid,
  .industry-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-feature-large {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: rgba(8, 17, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 14px;
  }

  .main-nav .sub-menu {
    position: static;
    display: flex;
    min-width: 100%;
    padding: 10px 0 0 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .section {
    padding: 72px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .hero-metrics,
  .grid-2,
  .grid-3,
  .grid-4,
  .service-snapshot-grid,
  .industry-solution-grid,
  .industry-feature-grid,
  .field-group,
  .stack-grid {
    grid-template-columns: 1fr;
  }

  .meta-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .form-support {
    grid-template-columns: 1fr;
  }

  .form-support img {
    max-height: 140px;
  }

  .industry-feature-large {
    grid-column: span 1;
  }

  .service-band-reverse .service-band-copy,
  .service-band-reverse .service-band-visual {
    order: initial;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero h1 {
    max-width: none;
  }

  .button,
  button,
  input[type="submit"] {
    width: 100%;
  }
}
