* {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

:root {
 --bg: #f7f9fc;
 --panel: #ffffff;
 --panel-soft: #eef4f8;
 --text: #08111c;
 --muted: #607080;
 --line: rgba(8, 17, 28, 0.12);
 --green: #f47a1f;
 --green-soft: rgba(244, 122, 31, 0.15);
 --orange: #ff7a1a;
 --cyan: #0ea5e9;
 --shadow: 0 28px 80px rgba(16, 30, 44, 0.12);
}

html {
 scroll-behavior: smooth;
}

html,body{overflow-x: hidden;}

body {
 background:#ffffff;
 color: var(--text);
 font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
 line-height: 1.6;
 overflow-x: hidden;
}

img,
video {
 display: block;
 max-width: 100%;
}

a {
 color: inherit;
 text-decoration: none;
}

button,
input,
select,
textarea {
 font: inherit;
}

.container {
 width: 100%;
 max-width: 1600px;
 margin: 0 auto;
 padding-right: 20px;
 padding-left: 20px;
}

.site-header {
 position: fixed;
 top: 0;
 left: 0;
 z-index: 20;
 width: 100%;
 /* border-bottom: 1px solid var(--line);
 background: #ffffff;
 backdrop-filter: blur(18px); */
 transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.policy-header{
  border-color: rgba(244, 122, 31, 0.32);
  background: rgba(5, 6, 8, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
 border-color: rgba(244, 122, 31, 0.32);
 background: rgba(5, 6, 8, 0.92);
 box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}
.site-header.is-scrolled .site-nav a{
 color:#f7f7f7;
 }

input#MainContent_SignupControl_lbSave {
    background: var(--green);
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}
input#PopupControl_lbSave3 {
    background: var(--green);
    font-weight: 600;
        color: #fff;
        text-transform: uppercase;
}
.header-inner {
 position: relative;
 display: flex;
 align-items: center;
 gap: 28px;
 min-height: 100px;
}

.brand,
.site-nav,
.header-cta {
 display: flex;
 align-items: center;
}

.brand {
 gap: 10px;
 font-weight: 800;
 letter-spacing: -0.03em;
}
.logo img {
  max-width: 280px;
}

.brand-mark {
 display: grid;
 width: 42px;
 height: 42px;
 place-items: center;
 border-radius: 50%;
 background: linear-gradient(135deg, var(--green), var(--orange));
 color: #050608;
 font-size: 0.75rem;
 font-weight: 900;
}

.site-nav {
 gap: 40px;
 justify-content: flex-end;
 margin-left: auto;
 color: var(--muted);
 font-size: 0.94rem;
 font-weight: 500;
}

.site-nav a {
 transition: color 0.2s ease;
 font-weight: 500;
 color:#ffffff;
 font-size: 1.2rem;
}

.site-nav a:hover {
 color: var(--green);
}

.header-cta {
 min-height: 50px;
 padding: 5px 30px;
 border: 1px solid rgba(244, 122, 31, 0.4);
 background-color: var(--green);
 border-radius: 999px;
 color: #ffffff;
 font-size: 0.9rem;
 font-weight: 600;
}

.header-cta:hover{ background-color: #ffffff;color: #333333; border: 1px solid var(--green);}
.nav-toggle {
 display: none;
 width: 42px;
 height: 42px;
 border: 1px solid var(--green);
 border-radius: 50%;
 background: transparent;
 cursor: pointer;
}

.nav-toggle span {
 display: block;
 width: 17px;
 height: 2px;
 margin: 4px auto;
 border-radius: 999px;
 background: #ffffff;
}

.hero {
 position: relative;
 min-height: 100vh;
 padding: 180px 0 110px;
 overflow: hidden;
}

.hero-content h1 {
 color: #fff;
}

.hero-video,
.hero-overlay {
 position: absolute;
 inset: 0;
}

.hero-video {
 z-index: -2;
 width: 100%;
 height: 100%;
 object-fit: cover;
 opacity: 1;
}

.hero-overlay {
 z-index: -1;
 background: rgba(0, 0, 0, 0.6);
}

.hero-grid {
 display: grid;
 grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
 gap: 56px;
 align-items: center;
}

.eyebrow {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 margin-bottom: 18px;
 color: var(--green);
 font-size: 0.78rem;
 font-weight: 700;
 letter-spacing: 0.16em;
 text-transform: uppercase;
}

.eyebrow::before {
 width: 28px;
 height: 2px;
 border-radius: 999px;
 background: var(--green);
 content: "";
}

h1,
h2,
h3 {
 line-height: 1.1;
 letter-spacing: -0.055em;
}

h1 {
 max-width: 880px;
 font-size: clamp(3.2rem, 8vw, 7.2rem);
}

h2 {
 font-size: clamp(2.1rem, 4vw, 4.5rem);
}

h3 {
 font-size: clamp(1.35rem, 2vw, 2rem);
}

.cl-primary{
  color:var(--green) !important;
}

.hero-copy,
.section-copy {
  max-width: 850px;
  margin-top: 20px;
 color: #d9e1e8;
 font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-actions {
 display: flex;
 flex-wrap: wrap;
 gap: 14px;
 margin-top: 36px;
}

.form-disclaimer {
 font-size: 0.70rem;
 font-weight: 400;
 color: #666;
 text-align: left;
}

.form-disclaimer a {
 color: var(--green);
 text-decoration: underline;
}

/* Keyboard focus visibility — WCAG 2.4.7 */
:focus-visible {
 outline: 2px solid var(--green);
 outline-offset: 3px;
 border-radius: 4px;
}

.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 54px;
 padding: 0 24px;
 border: 1px solid transparent;
 border-radius: 999px;
 font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
 font-weight: 600;
 transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
 transform: translateY(-3px);
 background-color: #333333;
 color: #fff;
 border-color: #333333;
}

.btn-primary {
 background: var(--green);
 color: #050608;
 font-weight: 600;
 box-shadow: 0 18px 42px rgba(190, 190, 190, 0.22);
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  color: white;
  background-color: var(--green);
  border-color: transparent;
}

.btn-ghost {
 border-color: rgba(255, 255, 255, 0.22);
 background: rgba(255, 255, 255, 0.05);
 color: var(--text);
}

.hero-card {
 position: relative;
 padding: 34px;
 border: 1px solid rgba(255, 255, 255, 0.16);
 border-radius: 34px;
 background: linear-gradient(145deg, rgba(16, 24, 33, 0.9), rgba(5, 6, 8, 0.72));
 box-shadow: var(--shadow);
 overflow: hidden;
}

.hero-card::before {
 position: absolute;
 top: -45px;
 right: -45px;
 width: 160px;
 height: 160px;
 border-radius: 50%;
 background: var(--green-soft);
 filter: blur(4px);
 content: "";
}

.card-kicker {
 display: inline-block;
 margin-bottom: 10px;
 padding: 8px 12px;
 border-radius: 999px;
 background: rgba(255, 122, 26, 0.14);
 color: var(--orange);
 font-size: 0.78rem;
 font-weight: 700;
 text-transform: uppercase;
 max-width: max-content;
}

.hero-card p {
 margin-top: 18px;
 color: var(--muted);
}

.hero-stats {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 14px;
 margin-top: 32px;
}

.hero-stats div {
 padding: 18px;
 border: 1px solid var(--line);
 border-radius: 20px;
 background: rgba(255, 255, 255, 0.04);
}

.hero-stats strong {
 display: block;
 color: var(--green);
 font-size: 2.2rem;
 line-height: 1;
}

.hero-stats span {
 display: block;
 margin-top: 8px;
 color: var(--muted);
 font-size: 0.9rem;
}

.section {
 padding: 100px 0;
}

.para{
  font-size: 14px;
}

.split {
 display: grid;
 grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
 gap: 48px;
 align-items: end;
}

.section-head {
 max-width: 1000px;
 margin-bottom: 46px;
}

.services .section-head,
.work .section-head,
.process .section-head {
 margin-right: auto;
 margin-left: auto;
 text-align: center;
}

.services .section-head h2,
.work .section-head h2,
.process .section-head h2,
.products-intro h2,
.industries-head h2 {
 color: var(--text);
}

.services .section-head h2 span,
.work .section-head h2 span,
.process .section-head h2 span,
.products-intro h2 span,
.industries-head h2 span {
 color: var(--green);
}

.services {
 background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(198, 255, 0, 0.04));
}

.service-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 18px;
}

.service-card {
 min-height: 270px;
 padding: 28px;
 border: 1px solid var(--line);
 border-radius: 30px;
 background:
  linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
  var(--panel);
 transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.service-card:hover {
 border-color: rgba(244, 122, 31, 0.42);
 background:
  linear-gradient(145deg, rgba(244, 122, 31, 0.1), rgba(255, 255, 255, 0.02)),
  var(--panel);
 transform: translateY(-6px);
}

.service-card span {
 display: inline-grid;
 width: 48px;
 height: 48px;
 margin-bottom: 58px;
 place-items: center;
 border-radius: 50%;
 background: var(--green-soft);
 color: var(--green);
 font-weight: 900;
}

.service-card p {
 margin-top: 16px;
 color: var(--muted);
}

.service-card-wide {
 grid-column: span 2;
}

.work-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 22px;
}

.work-card {
 overflow: hidden;
 border: 1px solid var(--line);
 border-radius: 34px;
 background: var(--panel);
 box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.work-card img {
 width: 100%;
 aspect-ratio: 1.14;
 object-fit: cover;
 background: #0d141c;
}

.work-card div {
 padding: 26px;
}

.work-card span {
 color: var(--orange);
 font-size: 0.78rem;
 font-weight: 900;
 letter-spacing: 0.14em;
 text-transform: uppercase;
}

.work-card h3 {
 margin-top: 12px;
}

.process {
 position: relative;
 overflow: hidden;
 background:
  radial-gradient(circle at 12% 18%, rgba(244, 122, 31, 0.12), transparent 25rem),
  radial-gradient(circle at 88% 74%, rgba(14, 165, 233, 0.1), transparent 24rem),
  linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.78) 48%, rgba(244, 122, 31, 0.06));
}

.process::before {
 position: absolute;
 top: 12%;
 left: -70px;
 width: 260px;
 height: 260px;
 border-radius: 50%;
 background: rgba(244, 122, 31, 0.16);
 filter: blur(48px);
 content: "";
}

.process::after {
 position: absolute;
 right: -90px;
 bottom: 10%;
 width: 260px;
 height: 260px;
 border-radius: 50%;
 background: rgba(14, 165, 233, 0.12);
 filter: blur(52px);
 content: "";
}

.process .container {
 position: relative;
 z-index: 1;
}

.process .section-head {
 margin-bottom: 58px;
}

.process-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 16px;
}

.process .row {
 position: relative;
 counter-reset: process-step;
}
@media (max-width: 1700px) {
  .container {
    max-width: 1320px;
   }
   .hero-content h1 {
        font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    }
    .form-disclaimer {
      font-size: 0.65rem;
    }
    .contact-form input, .contact-form select, .contact-form textarea{
      font-size: 14px;
    }
  }
@media (max-width: 1400px) {
.container {
  max-width: 1280px;
 }
}
 

@media (min-width: 1200px) {
 .process .row::before {
  position: absolute;
  top: 70px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, rgba(244, 122, 31, 0), rgba(244, 122, 31, 0.4), rgba(14, 165, 233, 0.26), rgba(244, 122, 31, 0));
  content: "";
 }
}

.process-step {
 position: relative;
 display: flex;
 min-height: 270px;
 flex-direction: column;
 padding: 34px 28px 30px;
 overflow: hidden;
 border: 1px solid rgba(8, 17, 28, 0.08);
 border-radius: 32px;
 background:
  linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 241, 0.82)),
  #ffffff;
 box-shadow: 0 20px 60px rgba(16, 30, 44, 0.08);
 counter-increment: process-step;
 transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.process-step::before {
 position: absolute;
 top: 18px;
 right: 22px;
 color: rgba(244, 122, 31, 0.12);
 content: "0" counter(process-step);
 font-size: 4.8rem;
 font-weight: 900;
 letter-spacing: -0.08em;
 line-height: 1;
 display: none;
}

.process-step::after {
 position: absolute;
 inset: 0;
 border-radius: inherit;
 background: linear-gradient(180deg, rgba(244, 122, 31, 0.18), rgba(244, 122, 31, 0));
 content: "";
 opacity: 0;
 transition: opacity 0.25s ease;
 pointer-events: none;
}

.process-step:hover {
 border-color: rgba(244, 122, 31, 0.36);
 background:
  linear-gradient(145deg, rgba(244, 122, 31, 0.14), rgba(255, 255, 255, 0.96)),
  #ffffff;
 box-shadow: 0 30px 80px rgba(16, 30, 44, 0.14);
 transform: translateY(-8px);
}

.process-step:hover::after {
 opacity: 1;
}

.process-icon {
 position: relative;
 z-index: 1;
 display: grid;
 width: 58px;
 height: 58px;
 margin-bottom: 42px;
 place-items: center;
 border: 1px solid rgba(244, 122, 31, 0.2);
 border-radius: 18px;
 background:
  linear-gradient(145deg, rgba(244, 122, 31, 0.18), rgba(255, 255, 255, 0.9)),
  rgba(244, 122, 31, 0.1);
 color: var(--green);
 box-shadow: 0 14px 30px rgba(244, 122, 31, 0.14);
 transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.process-icon svg {
 width: 24px;
 height: 24px;
 stroke: currentColor;
}

.process-step:hover .process-icon {
 border-color: rgba(244, 122, 31, 0.68);
 background: linear-gradient(135deg, var(--green), var(--orange));
 color: #ffffff;
 transform: translateY(-3px) rotate(-3deg);
}

.process-step>span:not(.process-icon) {
 position: relative;
 z-index: 1;
 display: block;
 color: var(--text);
 font-size: 1.22rem;
 font-weight: 700;
 letter-spacing: -0.03em;
}

.process-step p {
 position: relative;
 z-index: 1;
 max-width: 92%;
 margin-top: 18px;
 color: var(--muted);
 font-size: 0.96rem;
 line-height: 1.75;
}

.cta {
 padding-top: 60px;
}

.cta-panel {
 position: relative;

 gap: 25px;
 padding: 50px;
 border-radius: 36px;
 background:
  linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.24) 100%),
  url("../img/cta-bg.webp") center / cover no-repeat,
  linear-gradient(135deg, #101821, #06080b);
 box-shadow: var(--shadow);
 overflow: hidden;
}

.cta-panel h2 {
 max-width: 680px;
 font-size: clamp(2.1rem, 3vw, 3rem);
 margin-bottom: 20px;
}

.cta-panel .btn {
 margin-bottom: 10px;
}

.engagement {
 background:
  radial-gradient(circle at 14% 18%, rgba(244, 122, 31, 0.08), transparent 24rem),
  linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 249, 252, 0.96));
}

.engagement-head {
 max-width: 780px;
 margin: 0 auto 46px;
 text-align: center;
}

.engagement-head h2 {
 color: var(--text);
 font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.engagement-head h2 span {
 color: var(--green);
}

.engagement-head p {
 max-width: 720px;
 margin: 18px auto 0;
 color: #526273;
}

.engagement-grid {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 22px;
 max-width: 1320px;
 margin: 0 auto;
}

.engagement-card {
 min-height: 345px;
 padding: clamp(26px, 3vw, 42px);
 border: 1px solid rgba(255, 255, 255, 0.08);
 border-radius: 20px;
 background:
  radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.18), transparent 18rem),
  linear-gradient(180deg, #0c2d43 0%, #05131e 100%);
 color: #ffffff;
 box-shadow: 0 24px 70px rgba(16, 30, 44, 0.14);
 transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.engagement-card:hover {
 border-color: rgba(244, 122, 31, 0.42);
 box-shadow: 0 30px 86px rgba(16, 30, 44, 0.2);
 transform: translateY(-6px);
}

.engagement-icon {
 display: inline-grid;
 width: 54px;
 height: 54px;
 margin-bottom: 46px;
 place-items: center;
 border-radius: 50%;
 background: var(--green);
 color: #ffffff;
 box-shadow: 0 14px 34px rgba(244, 122, 31, 0.28);
}

.engagement-icon svg {
 width: 24px;
 height: 24px;
 stroke: currentColor;
}

.engagement-card h3 {
 color: #ffffff;
 font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.engagement-card p {
 margin-top: 18px;
 color: #e8f0f7;
 font-size: 0.98rem;
 line-height: 1.65;
}

.contact {
 background:
  linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(5, 6, 8, 0.8)),
  var(--bg);
}

.contact-grid {
 display: grid;
 grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.78fr);
 gap: 56px;
 align-items: start;
}

.contact-copy p {
 max-width: 560px;
 margin-top: 22px;
 color: var(--muted);
}

.contact-info {
 display: grid;
 gap: 16px;
 max-width: 520px;
 margin-top: 34px;
}

.contact-info a {
 display: flex;
 align-items: center;
 gap: 14px;
 padding: 16px 18px;
 /* border: 1px solid rgba(244, 122, 31, 0.18);
 border-radius: 20px; */
 /* background:
  linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 248, 0.68)),
  #ffffff; */
 color: var(--green);
 font-weight: 700;
 /* box-shadow: 0 14px 44px rgba(16, 30, 44, 0.06); */
 transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info a:hover {
 border-color: rgba(244, 122, 31, 0.38);
 box-shadow: 0 18px 52px rgba(16, 30, 44, 0.1);
 transform: translateY(-3px);
}

.contact-info a>span:last-child {
 display: grid;
 gap: 2px;
 font-weight: 400;
}

.contact-info strong {
 color: var(--green);
 font-size: 0.82rem;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.08em;
}

.contact-icon {
 display: inline-grid;
 flex: 0 0 48px;
 width: 48px;
 height: 48px;
 place-items: center;
 border-radius: 50%;
 background: rgba(244, 122, 31, 0.12);
 color: var(--green);
}

.contact-icon svg {
 width: 21px;
 height: 21px;
 stroke: currentColor;
}

.contact-form {
 display: grid;
 gap: 10px;
 padding: 25px;
 border: 1px solid var(--line);
 border-radius: 30px;
 background: rgba(16, 24, 33, 0.78);
 box-shadow: var(--shadow);
}

.contact-form label {
 display: grid;
 gap: 8px;
 color: #d9e1e8;
 font-size: 0.92rem;
 font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
 width: 100%;
 border: 1px solid rgba(255, 255, 255, 0.14);
 border-radius: 16px;
 background: rgba(5, 6, 8, 0.72);
 color: var(--text);
 outline: none;
 padding: 14px 16px;
 transition: border-color 0.2s ease, box-shadow 0.2s ease;
 font-weight: 400;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
 border-color: rgba(198, 255, 0, 0.6);
 box-shadow: 0 0 0 4px rgba(198, 255, 0, 0.1);
}

.contact-form textarea {
 resize: vertical;
}

.site-footer {
 border-top: 1px solid var(--line);
 background: #030405;
}

.footer-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
 padding: 20px 15px;
 color: var(--muted);
}

.footer-inner p {
 color: var(--text);
 font-weight: 600;
 margin: 0;
}

.reveal {
 opacity: 0;
 transform: translateY(24px);
 transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
 opacity: 1;
 transform: translateY(0);
}

/* Light theme refinements */


/* body {
 background:
  radial-gradient(circle at top left, rgba(147, 213, 0, 0.14), transparent 28rem),
  radial-gradient(circle at 80% 20%, rgba(255, 122, 26, 0.1), transparent 28rem),
  var(--bg);
} */

.site-header {
 background: transparent;
 /* box-shadow: 0 14px 44px rgba(16, 30, 44, 0.08); */
}

.site-header.is-scrolled {
 border-color: rgba(0, 0, 0, 0.38);
 background: rgba(0, 0, 0, 0.96);
 box-shadow: 0 12px 38px rgba(16, 30, 44, 0.1);
}

.site-header.is-scrolled .header-inner {
  min-height: 80px;
 }

.brand-mark,
.btn-primary {
 color: #ffffff;
}

.header-cta {
 border-color: #fff;
 ;
}

.hero {
  min-height: 100vh;
  padding: 140px 0 50px;
  height: 100vh;
  display: flex;
  align-items: center;
}

/* .hero-video {
  opacity: 0.18;
  filter: saturate(0.9);
} */

/* .hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 249, 252, 0.96) 0%, rgba(247, 249, 252, 0.78) 52%, rgba(247, 249, 252, 0.94) 100%),
    linear-gradient(180deg, rgba(247, 249, 252, 0.25) 0%, var(--bg) 100%);
} */

.hero-grid {
 grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
 gap: 42px;
}

h1 {
 font-size: clamp(2.8rem, 4.2vw, 4.2rem);
}

h2 {
 font-size: clamp(2rem, 3.7vw, 4rem);
}

/* .hero-copy,
.section-copy {
  color: #465768;
} */

.cta-btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-ghost {
 border-color: #a1a1a1;
 background: #a1a1a1;
 color: #ffffff;
}

.hero-form {
 position: relative;
 overflow: hidden;
}

.hero-form::before {
 position: absolute;
 top: -70px;
 right: -70px;
 width: 180px;
 height: 180px;
 border-radius: 50%;
 background: var(--green-soft);
 content: "";
}

.hero-form>* {
 position: relative;
}

.hero-form h2 {
 margin-bottom: 22px;
 font-size: clamp(1.75rem, 2.5vw, 2.6rem);
}

.services {
 background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(147, 213, 0, 0.08));
}

.service-card {
 background:
  linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 248, 0.72)),
  var(--panel);
}

.service-card:hover {
 border-color: rgba(244, 122, 31, 0.48);
 background:
  linear-gradient(145deg, rgba(244, 122, 31, 0.14), rgba(255, 255, 255, 0.94)),
  var(--panel);
}

.service-card span,
.contact-info a {
 color: #333333;
}

.work-card,
.contact-form {
 background: rgba(255, 255, 255, 0.9);
}

.work-card img {
 background: #edf3f7;
}

.portfolio-tabs {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 12px;
 margin-bottom: 28px;
}

.portfolio-tab {
 min-height: 46px;
 padding: 0 18px;
 border: 1px solid var(--line);
 border-radius: 999px;
 background: #ffffff;
 color: var(--muted);
 cursor: pointer;
 font-weight: 500;
 transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.portfolio-tab:hover,
.portfolio-tab.is-active {
 border-color: rgba(244, 122, 31, 0.58);
 background: var(--green);
 color: #ffffff;
 transform: translateY(-2px);
 font-weight: 600;
}

.portfolio-panels {
 border: 1px solid var(--line);
 border-radius: 28px;
 background: #ffffff;
 box-shadow: var(--shadow);
 overflow: hidden;
}

.portfolio-panel {
 display: none;
 padding: 0;
}

.portfolio-panel.is-active {
 display: block;
}

.portfolio-panel-row {
 min-height: 380px;
 align-items: stretch;
}

.portfolio-panel-row > [class*="col-"] {
 display: flex;
 flex-direction: column;
}

.portfolio-panel-visual {
 position: relative;
 height: auto;
 overflow: hidden;
 background: #edf3f7;
}

.portfolio-slider {
 position: relative;
 height: 100%;
}

.portfolio-slider .slick-list,
.portfolio-slider .slick-track {
 height: 100%;
}

.portfolio-slider .slick-slide > div,
.portfolio-slide {
 height: 100%;
}

.portfolio-panel-visual img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 border-radius: 0;
 display: block;
}

.portfolio-slider-arrow {
 position: absolute;
 top: 50%;
 z-index: 2;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 44px;
 height: 44px;
 padding: 0;
 border: none;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.95);
 color: var(--ink);
 box-shadow: 0 8px 24px rgba(16, 30, 44, 0.16);
 cursor: pointer;
 transform: translateY(-50%);
 transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-slider-arrow:hover,
.portfolio-slider-arrow:focus-visible {
 background: var(--orange);
 color: #ffffff;
 box-shadow: 0 10px 28px rgba(244, 122, 31, 0.35);
 outline: none;
}

.portfolio-slider-prev {
 left: 16px;
}

.portfolio-slider-next {
 right: 16px;
}

.portfolio-panel-body {
 position: relative;
 display: flex;
 flex: 1;
 flex-direction: column;
 justify-content: center;
 min-height: 380px;
 padding: clamp(28px, 4vw, 48px);
 background:
  radial-gradient(circle at 100% 0%, rgba(244, 122, 31, 0.1), transparent 16rem),
  radial-gradient(circle at 0% 100%, rgba(147, 213, 0, 0.08), transparent 14rem),
  linear-gradient(180deg, #f9fbfd 0%, #eef4f8 100%);
 border-left: 1px solid rgba(16, 30, 44, 0.06);
}

.portfolio-panel-body::before {
 position: absolute;
 top: clamp(28px, 4vw, 48px);
 left: 0;
 width: 4px;
 height: 56px;
 border-radius: 0 4px 4px 0;
 background: linear-gradient(180deg, var(--green), var(--orange));
 content: "";
}

.portfolio-panel-label {
 display: inline-block;
 width: fit-content;
 margin-bottom: 14px;
 padding: 8px 14px;
 border-radius: 999px;
 background: rgba(244, 122, 31, 0.12);
 color: var(--orange);
 font-size: 0.76rem;
 font-weight: 800;
 letter-spacing: 0.12em;
 text-transform: uppercase;
}

.portfolio-panel h3 {
 margin-top: 0;
 font-size: clamp(1.65rem, 2.6vw, 2.4rem);
 line-height: 1.15;
}

.portfolio-panel p {
 max-width: 520px;
 margin-top: 14px;
 margin-bottom: 0;
 color: var(--muted);
 font-size: 0.96rem;
 line-height: 1.65;
}

.portfolio-panel-highlights {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 10px;
 margin: 24px 0 0;
 padding: 0;
 list-style: none;
}

.portfolio-panel-highlights li {
 display: flex;
 align-items: center;
 gap: 10px;
 min-height: 48px;
 padding: 10px 14px;
 border: 1px solid rgba(16, 30, 44, 0.08);
 border-radius: 12px;
 background: rgba(255, 255, 255, 0.78);
 color: var(--text);
 font-size: 0.86rem;
 font-weight: 500;
 line-height: 1.35;
}

.portfolio-panel-highlights li::before {
 display: inline-flex;
 flex-shrink: 0;
 align-items: center;
 justify-content: center;
 width: 22px;
 height: 22px;
 border-radius: 50%;
 background: rgba(147, 213, 0, 0.18);
 color: var(--green);
 font-size: 0.72rem;
 font-weight: 800;
 content: "✓";
}

.portfolio-panel-cta {
 width: fit-content;
 margin-top: 26px;
}

.ai-products {
 position: relative;
 overflow: hidden;
 background:
  radial-gradient(circle at 18% 52%, rgba(244, 122, 31, 0.12), transparent 22rem),
  linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(238, 244, 248, 0.78));
}

.products-intro {
 max-width: 1000px;
 margin: 0 auto 42px;
 text-align: center;
}

.products-intro h2 {
 color: var(--text);
 font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.products-intro h2::first-line {
 color: var(--text);
}

.products-intro h2 strong,
.products-intro h2 span {
 color: var(--green);
}

.products-intro p {
 max-width: 800px;
 margin: 18px auto 0;
 color: #526273;
}

.products-showcase {
 display: grid;
 grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
 gap: 22px;
 margin: 0 auto;
}

.products-sidebar {
 display: grid;
 gap: 10px;
 align-content: start;
}

.product-link {
 width: 100%;
 padding: 18px 20px;
 border: 1px solid rgba(255, 255, 255, 0.08);
 border-radius: 20px;
 background: linear-gradient(145deg, #082233, #06131f);
 color: #ffffff;
 cursor: pointer;
 text-align: left;
 transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.product-link:hover,
.product-link.is-active {
 border-color: rgba(244, 122, 31, 0.5);
 background:
  radial-gradient(circle at 18% 20%, rgba(244, 122, 31, 0.18), transparent 9rem),
  linear-gradient(145deg, #09293e, #06131f);
 transform: translateY(-2px);
}

.product-link h3 {
 color: #ffffff;
 font-size: clamp(1.05rem, 1.45vw, 1.34rem);
 letter-spacing: -0.04em;
}

.product-link p {
 margin-top: 0px;
 color: #d7e3ee;
 font-size: 0.82rem;
 font-weight: 400;
 margin-bottom: 14px;
}

.product-link.is-active h3 {
 color: var(--orange);
}

.products-device {
 min-height: 210px;
 padding: 14px;
 border-radius: 20px;
 background:
  radial-gradient(circle at 26% 24%, rgba(244, 122, 31, 0.35), transparent 9rem),
  linear-gradient(145deg, #102943, #071521);
 overflow: hidden;
}

.products-device img {
 width: 100%;
 height: 100%;
 min-height: 190px;
 border-radius: 16px;
 object-fit: cover;
 object-position: center;
}

.product-panels {
 min-width: 0;
}

.product-detail {
 position: relative;
 display: none;
 flex-direction: column;
 min-height: 560px;
 padding: clamp(32px, 4vw, 54px);
 border: 1px solid rgba(255, 255, 255, 0.08);
 border-radius: 22px;
 background:
  radial-gradient(circle at 90% 10%, rgba(14, 165, 233, 0.28), transparent 22rem),
  linear-gradient(135deg, #05131e 0%, #0c3048 100%);
 box-shadow: 0 28px 80px rgba(16, 30, 44, 0.18);
 z-index: 1;
 overflow: hidden;
}

.product-detail.is-active {
 display: flex;
}

.product-detail .card-kicker {
 width: fit-content;
 margin-bottom: 16px;
}

.product-detail h3 {
 color: #ffffff;
 font-size: clamp(2.1rem, 3.5vw, 3.5rem);
}

.product-detail p {
 max-width: 940px;
 margin-top: 18px;
 color: #dbe7f1;
 font-size: clamp(1rem, 1.15vw, 1.14rem);
}

.product-features {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 10px;
 margin-top: 42px;
}

.product-features div {
 display: grid;
 gap: 12px;
 min-height: 140px;
 padding: 24px 18px;
 border: 1px solid rgba(255, 255, 255, 0.08);
 border-radius: 12px;
 background: rgba(14, 79, 122, 0.72);
}

.product-features span {
 color: var(--orange);
 font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0;
    line-height: 1;
    opacity: 0.5;
}

.product-features strong {
 color: #ffffff;
 font-size: 0.98rem;
 line-height: 1.35;
 font-weight: 500;
}

.product-detail-footer {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 18px;
 margin-top: auto;
 padding-top: 26px;
}

.product-detail-footer strong {
 color: #ffffff;
 font-size: 1.28rem;
}

.product-detail-footer .btn {
 min-height: 44px;
 padding: 0 18px;
 font-size: 0.88rem;
}

.industries {
 background:
  radial-gradient(circle at 86% 10%, rgba(244, 122, 31, 0.1), transparent 22rem),
  linear-gradient(180deg, rgba(238, 244, 248, 0.78), rgba(255, 255, 255, 0.9));
}

.industries-head {
 max-width: 720px;
 margin: 0 auto 44px;
 text-align: center;
}

.industries-head h2 {
 color: var(--text);
 font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.industries-head h2 span {
 color: var(--green);
}

.industry-cards {
 display: flex;
 gap: 12px;
 width: 100%;
 min-height: 390px;
 margin: 0 auto;
}

.industry-card {
 position: relative;
 display: flex;
 flex: 0.72;
 align-items: stretch;
 min-width: 0;
 border-radius: 12px;
 background-color: #041018;
 box-shadow: 0 18px 60px rgba(16, 30, 44, 0.12);
 overflow: hidden;
 transition: flex 0.95s ease, transform 0.85s ease, box-shadow 0.85s ease;
}

.industry-card-image {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: 0;
}

.industry-card::before {
 content: "";
 position: absolute;
 inset: 0;
 z-index: 1;
 background: linear-gradient(180deg, rgba(4, 14, 24, 0.36) 0%, rgba(4, 14, 24, 0.72) 48%, rgba(4, 14, 24, 0.92) 100%);
 pointer-events: none;
}

.industry-card.is-active,
.industry-cards:hover .industry-card:hover {
 flex: 2.8;
}

.industry-cards:hover .industry-card {
 flex: 0.72;
}

.industry-card:hover {
 transform: translateY(-4px);
 box-shadow: 0 28px 80px rgba(16, 30, 44, 0.2);
}

.industry-card-content {
 position: relative;
 z-index: 2;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 width: 100%;
 min-height: 390px;
 padding: 20px;
 color: #ffffff;
}

.industry-card h3 {
 color: #ffffff;
 font-size: clamp(0.98rem, 1.3vw, 1.12rem);
 letter-spacing: -0.03em;
}

.industry-card p {
 max-width: 500px;
 color: #ffffff;
 font-size: 0.86rem;
 font-weight: 500;
 line-height: 1.55;
 opacity: 0;
 transform: translateY(18px);
 transition: opacity 0.35s ease, transform 0.35s ease;
}

.industry-card.is-active p,
.industry-card:hover p {
 opacity: 1;
 transform: translateY(0);
}

.industry-cards:hover .industry-card p {
 opacity: 0;
 transform: translateY(18px);
}

.industry-cards:hover .industry-card:hover p {
 opacity: 1;
 transform: translateY(0);
}

.cta-panel {
 background:
  linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.74) 48%, rgba(255, 255, 255, 0.28) 100%),
  url("../img/cta-bg.webp") center / cover no-repeat,
  linear-gradient(135deg, #ffffff, #eef4f8);
}

.contact {
 background:
  linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(247, 249, 252, 0.92)),
  var(--bg);
}

.contact-form {
 border-color: var(--line);
 box-shadow: var(--shadow);
}

.contact-form label {
 color: #263646;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
 border-color: rgba(8, 17, 28, 0.12);
 background: #f8fafc;
 color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
 border-color: rgba(244, 122, 31, 0.72);
 box-shadow: 0 0 0 4px rgba(213, 128, 0, 0.14);
}

.footer-logo img {
  max-width: 200px;
}

.footer-links {
 display: flex;
 flex-wrap: wrap;
 gap: 14px;
 color: #ffffff !important;
 font-size: 0.92rem;
 font-weight: 500;
}

.footer-links a{
  position: relative;
}
.footer-links a:first-child::before{display: none;}
/* .footer-links a:before{
  content: "";
  position: absolute;
  left: -8px;
  top: 2px;
  height: 19px;
  width: 1px;
  background-color: #fff;
} */

.footer-links a:hover {
 color: #f47a1f;
 ;
}

input#MainContent_ContactUsControl_btnSubmit {
    background-color: var(--green);
    font-weight: 600;
    color:#fff;
    text-transform: uppercase;
}

.policy-page {
 padding-top: 76px;
 background: var(--bg);
}

.policy-hero {
 padding: 82px 0 38px;
 text-align: center;
}
.hp-link {
    color: var(--green);
}
.btn-wrapper {
    padding: 40px 0;
    margin: 0 auto;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.policy-hero h1 {
 max-width: 900px;
 margin: 0 auto;
 color: var(--text);
 font-size: clamp(2.8rem, 6vw, 6rem);
}

.policy-hero .hero-copy {
 margin-right: auto;
 margin-left: auto;
 color: #526273;
}

.policy-content {
 padding: 50px 0 80px;
}

.policy-card {
 position: relative;
 box-shadow: none;
}

.policy-card::before {
 display: none;
}

.policy-card h2 {
 margin: 28px 0 10px;
 font-size: clamp(1.35rem, 2vw, 2rem);
}

.policy-card h2:first-child {
 margin-top: 0;
}

.policy-card h3 {
 margin: 18px 0 8px;
 color: var(--text);
 font-size: 1.05rem;
 letter-spacing: -0.02em;
}

.policy-card p,
.policy-card li {
 color: var(--muted);
}

.policy-card p {
 margin-bottom: 14px;
}

.policy-card ul {
 display: grid;
 gap: 8px;
 margin: 0 0 16px 20px;
}

.policy-card strong {
 color: var(--text);
 font-weight: 700;
}

@media (max-width: 1000px) {

  
 .header-inner {
  min-height: 60px;
 }

 .nav-toggle {
  display: block;
  margin-left: auto;
 }

 .site-nav {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 10px;
  border: 1px solid var(--line);
  /* border-radius: 24px; */
  background: rgba(0, 0, 0, 0.96);
 }

 .site-nav.is-open {
  display: flex;
 }

 .site-nav a {
  padding: 14px;
  font-weight: 500;
 }

 .header-cta {
  display: none;
 }

 .hero-grid,
 .split,
 .contact-grid {
  grid-template-columns: 1fr;
 }

 .service-grid,
 .work-grid,
 .process-grid {
  grid-template-columns: repeat(2, 1fr);
 }

 .portfolio-panel-row,
 .portfolio-panel-visual,
 .portfolio-panel-visual img,
 .portfolio-panel-body {
  min-height: auto;
 }

 .portfolio-panel-visual,
 .portfolio-panel-visual img {
  height: clamp(260px, 55vw, 380px);
 }

 .portfolio-panel-body {
  border-top: 1px solid rgba(16, 30, 44, 0.06);
  border-left: none;
 }

 .portfolio-panel-body::before {
  top: 0;
  left: clamp(28px, 4vw, 48px);
  width: 56px;
  height: 4px;
  border-radius: 0 0 4px 4px;
 }

 .portfolio-panel-highlights {
  grid-template-columns: 1fr;
 }

 .portfolio-panel {
  grid-template-columns: 1fr;
 }

 .products-showcase {
  grid-template-columns: 1fr;
 }

 .products-sidebar {
  grid-template-columns: repeat(3, 1fr);
 }

 .products-device {
  grid-column: 1 / -1;
 }

 .product-features {
  grid-template-columns: repeat(2, 1fr);
 }

 .industry-cards {
  max-width: 100%;
  min-height: 340px;
 }

 .industry-card-content {
  min-height: 340px;
  padding: 18px;
 }

 .engagement-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
 }

 .service-card-wide {
  grid-column: span 1;
 }

 .cta-panel {
  align-items: flex-start;
  flex-direction: column;
  background-position: center right, center right, center right, center right, center right, center;
 }
}

@media (max-width: 991px){
  .logo img {
    max-width: 220px;
  }
  .hero{
    min-height: auto;
    height: auto;
    padding: 100px 0 50px;
  }
  .hero-content {
    margin-bottom: 30px;
}
.footer-links a {
  position: relative;
  font-size: 13px;
}
h1, h2, h3 {
    line-height: 1.2;
    letter-spacing: -0.055em;
}
}

@media (max-width: 640px) {
 .container {
  width: 100%;
  max-width: 1600px;
  padding-right: 14px;
  padding-left: 14px;
 }
 .logo img {
  max-width: 220px;
}
 .site-header {
  top: 0;
 }

 .brand span:last-child {
  display: none;
 }

 .hero {
  padding: 90px 0 72px;
 }

 h1 {
  font-size: clamp(2.35rem, 8vw, 4rem);
 }

 .section {
  padding: 72px 0;
 }

 .hero-card,
 .cta-panel,
 .contact-form {
  padding: 50px 20px;
  border-radius: 26px;
 }

 .cta-panel {
  gap: 24px;
  min-height: auto;
  background:
   linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 54%, rgba(255, 255, 255, 0.42) 100%),
   url("../img/cta-bg.webp") center bottom / cover no-repeat,
   linear-gradient(135deg, #ffffff, #eef4f8);
 }

 .cta-panel h2 {
  font-size: clamp(1.85rem, 7vw, 2.8rem);
 }

 .cta-panel .btn {
  margin-bottom: 0;
 }

 .hero-actions,
 .btn {
  width: 100%;
 }

 .service-grid,
 .work-grid,
 .process-grid,
 .engagement-grid {
  grid-template-columns: 1fr;
 }

 .process .section-head {
  margin-bottom: 34px;
 }

 .process-step {
  min-height: auto;
  padding: 28px 24px;
  border-radius: 26px;
 }

 .process-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  border-radius: 16px;
 }

 .engagement-head {
  margin-bottom: 30px;
 }

 .engagement-card {
  min-height: auto;
  padding: 26px;
 }

 .engagement-icon {
  margin-bottom: 34px;
 }

 .portfolio-tab {
  flex: 0 0 auto;
  width: auto;
  white-space: nowrap;
 }

 .portfolio-tabs {
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-right: -14px;
  margin-left: -14px;
  padding: 0 14px 10px;
  overflow-x: auto;
  scrollbar-width: thin;
 }

 .products-sidebar,
 .product-features,
 .product-detail-footer {
  grid-template-columns: 1fr;
 }

 .product-detail-footer {
  align-items: flex-start;
  flex-direction: column;
 }

 .product-link,
 .product-detail {
  border-radius: 18px;
 }

 .product-detail {
  min-height: auto;
  padding: 26px;
 }

 .product-features {
  margin-top: 28px;
 }

 .product-features div {
  min-height: 112px;
 }

 .industry-cards {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
 }

 .industry-card,
 .industry-card.is-active,
 .industry-cards:hover .industry-card,
 .industry-cards:hover .industry-card:hover {
  flex: none;
 }

 .industry-card-content {
  min-height: 280px;
 }

 .industry-card p {
  opacity: 1;
  transform: none;
 }

 .contact-info a {
  align-items: flex-start;
  padding: 14px;
  overflow-wrap: anywhere;
 }

 .policy-page {
  padding-top: 68px;
 }

 .policy-hero {
  padding: 70px 0 36px;
  text-align: left;
 }

 .policy-hero h1,
 .policy-hero .hero-copy {
  margin-left: 0;
 }

 .policy-content {
  grid-template-columns: 1fr;
  padding-bottom: 64px;
 }

 .policy-card {
  padding: 24px;
  border-radius: 22px;
 }

 .footer-inner {
  align-items: flex-center;
  flex-direction: column;
 }
 .footer-links a {
  position: relative;
  font-size: 12px;
}
}


.shape.serv {
  width: auto;
  height: 100%;
  right: 0;
  top: 7px;
  opacity: .2;
  z-index: -1;
}
.shape.serv img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.mv-section {
 position: relative;
 overflow: hidden;
 background:
  radial-gradient(circle at 6% 20%, rgba(244, 122, 31, 0.09), transparent 22rem),
  radial-gradient(circle at 94% 80%, rgba(14, 165, 233, 0.07), transparent 20rem),
  linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(238, 244, 248, 0.72));
}

.mv-head {
 text-align: center;
 margin-right: auto;
 margin-left: auto;
}

.mv-head h2 {
 color: var(--text);
}

.mv-head h2 span {
 color: var(--green);
}




.error-page {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 75px);
  padding: clamp(2rem, 6vw, 4rem) 1rem clamp(3rem, 8vw, 5rem);
  background-color: #d3d3d3;
  padding-top: clamp(120px, 18vw, 160px);
  color: #333;
}


.error-page__code {
  margin: 0 0 0.35em;
  font-size: clamp(4rem, 14vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #222;
}

.error-page__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: #333;
  text-align: center;
  display: inline-block;
}

.error-page__desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  color: #333;
  display: block;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.error-page__btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background-color: var(--green);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}



.mv-card {
 position: relative;
 display: flex;
 flex-direction: column;
 padding: clamp(32px, 4vw, 52px);
 border-radius: 32px;
 overflow: hidden;
 transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.mv-card:hover {
 transform: translateY(-6px);
}


.mv-card--light {
 border: 1px solid rgba(8, 17, 28, 0.08);
 background:
  linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 241, 0.82)),
  #ffffff;
 box-shadow: 0 20px 60px rgba(16, 30, 44, 0.08);
}

.mv-card--light:hover {
 border-color: rgba(244, 122, 31, 0.36);
 box-shadow: 0 30px 80px rgba(16, 30, 44, 0.14);
}

.mv-card--dark {
 border: 1px solid rgba(255, 255, 255, 0.08);
 background:
  radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.18), transparent 18rem),
  linear-gradient(180deg, #0c2d43 0%, #05131e 100%);
 color: #ffffff;
 box-shadow: 0 24px 70px rgba(16, 30, 44, 0.14);
}

.mv-card--dark:hover {
 border-color: rgba(244, 122, 31, 0.42);
 box-shadow: 0 30px 86px rgba(16, 30, 44, 0.2);
}

.mv-card-icon {
 display: grid;
 width: 58px;
 height: 58px;
 margin-bottom: 28px;
 place-items: center;
 border: 1px solid rgba(244, 122, 31, 0.2);
 border-radius: 18px;
 background:
  linear-gradient(145deg, rgba(244, 122, 31, 0.18), rgba(255, 255, 255, 0.9)),
  rgba(244, 122, 31, 0.1);
 color: var(--green);
 box-shadow: 0 14px 30px rgba(244, 122, 31, 0.14);
 transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.mv-card-icon svg {
 width: 24px;
 height: 24px;
 stroke: currentColor;
}

.mv-card:hover .mv-card-icon {
 border-color: rgba(244, 122, 31, 0.68);
 background: linear-gradient(135deg, var(--green), var(--orange));
 color: #ffffff;
 transform: translateY(-3px) rotate(-3deg);
}

.mv-card-icon--dark {
 border-color: rgba(255, 255, 255, 0.12);
 background: var(--green);
 color: #ffffff;
 box-shadow: 0 14px 34px rgba(244, 122, 31, 0.28);
}

.mv-card--dark:hover .mv-card-icon--dark {
 background: linear-gradient(135deg, var(--green), var(--orange));
 border-color: rgba(255, 255, 255, 0.22);
 color: #ffffff;
}

.mv-card .card-kicker {
 margin-bottom: 16px;
}
.mv-card--light h3 {
 color: var(--text);
 font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}

.mv-card--dark-heading {
 color: #ffffff;
 font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}

.mv-body {
 margin-top: 18px;
 color: var(--muted);
 font-size: 0.98rem;
 line-height: 1.75;
 max-width: 100%;
}

.mv-body--dark {
 color: #e8f0f7;
}

.mv-pillars {
 list-style: none;
 display: grid;
 gap: 10px;
 margin-top: 32px;
 padding: 0;
}

.mv-pillars li {
 display: flex;
 align-items: center;
 gap: 14px;
 padding: 14px 18px;
 border: 1px solid rgba(8, 17, 28, 0.08);
 border-radius: 16px;
 background: rgba(255, 255, 255, 0.6);
 transition: border-color 0.2s ease, background 0.2s ease;
}

.mv-pillars li:hover {
 border-color: rgba(244, 122, 31, 0.32);
 background: rgba(244, 122, 31, 0.05);
}

.mv-pillars--dark li {
 border-color: rgba(255, 255, 255, 0.08);
 background: rgba(14, 79, 122, 0.4);
}

.mv-pillars--dark li:hover {
 border-color: rgba(244, 122, 31, 0.42);
 background: rgba(14, 79, 122, 0.62);
}

.mv-pillar-num {
 flex-shrink: 0;
 color: var(--orange);
 font-size: 0.82rem;
 font-weight: 900;
 letter-spacing: 0.04em;
}

.mv-pillars li strong {
 color: var(--text);
 font-size: 0.96rem;
 font-weight: 700;
 line-height: 1.3;
}

.mv-pillars--dark li strong {
 color: #ffffff;
}
.mv-section::before {
 position: absolute;
 top: 8%;
 left: -60px;
 width: 220px;
 height: 220px;
 border-radius: 50%;
 background: rgba(244, 122, 31, 0.13);
 filter: blur(52px);
 content: "";
 pointer-events: none;
}

.mv-section::after {
 position: absolute;
 right: -80px;
 bottom: 8%;
 width: 220px;
 height: 220px;
 border-radius: 50%;
 background: rgba(14, 165, 233, 0.1);
 filter: blur(56px);
 content: "";
 pointer-events: none;
}

.shape{position: absolute;}
.shape.girl {     bottom: 0;
  left: 30%; }
.shape.girl img { width: 50%; opacity: 0.4; }

@media (max-width: 640px) {
 .mv-card {
  border-radius: 26px;
  padding: 28px 24px;
 }

 .mv-pillars {
  margin-top: 24px;
 }
}


@media (prefers-reduced-motion: reduce) {

 *,
 *::before,
 *::after {
  scroll-behavior: auto !important;
  transition: none !important;
 }
}

.pop-modal {
 position: fixed;
 inset: 0;
 z-index: 900;
 display: flex;
 flex-direction: column;
 align-items: center;
 padding: 20px;
 background: rgba(8, 17, 28, 0.72);
 opacity: 0;
 visibility: hidden;
 transition: opacity 0.25s ease, visibility 0.25s ease;
 overflow-y: auto;
 -webkit-overflow-scrolling: touch;
}

.pop-modal.is-open {
 opacity: 1;
 visibility: visible;
}

.pop-modal__dialog {
 position: relative;
 width: 100%;
 max-width: 500px;
 margin: auto;
 flex-shrink: 0;
 border: 1px solid rgba(255, 255, 255, 0.16);
 border-radius: 34px;
 background: linear-gradient(145deg, rgba(16, 24, 33, 0.9), rgba(5, 6, 8, 0.72));
 box-shadow: var(--shadow);
 overflow: hidden;
 transform: translateY(24px);
 transition: transform 0.25s ease;
}

.pop-modal.is-open .pop-modal__dialog {
 transform: translateY(0);
}

.pop-modal__form-pane {
 display: grid;
 gap: 16px;
 padding: 36px 32px;
}

.pop-modal__close {
 position: absolute;
 top: 18px;
 right: 18px;
 z-index: 10;
 display: grid;
 width: 42px;
 height: 42px;
 place-items: center;
 border: 1px solid rgba(255, 255, 255, 0.22);
 border-radius: 50%;
 background: rgba(5, 6, 8, 0.72);
 color: #d9e1e8;
 cursor: pointer;
 font-size: 1.1rem;
 line-height: 1;
 transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.pop-modal__close:hover {
 border-color: rgba(244, 122, 31, 0.5);
 background: rgba(244, 122, 31, 0.14);
 transform: translateY(-2px);
}

.pop-modal__form-pane .card-kicker {
 margin-bottom: 6px;
}

.pop-modal__form-pane h3 {
 color: #ffffff;
 font-size: clamp(1.2rem, 2vw, 2.50rem);
 margin-bottom: 4px;
}

.pop-modal__form-pane p.hero-copy {
 margin-top: 0;
 font-size: 0.92rem;
}

.pop-modal .contact-form {
 background: transparent;
 border: none;
 border-radius: 0;
 box-shadow: none;
 padding: 0;
 gap: 14px;
}

@media (max-width: 980px) {
 .pop-modal__dialog {
  border-radius: 30px;
 }

 .pop-modal__form-pane {
  padding: 32px 28px;
 }

 .pop-modal__form-pane h3 {
  padding-right: 48px;
 }
}

@media (max-width: 640px) {
 .pop-modal {
  padding: 14px;
 }

 .pop-modal__dialog {
  border-radius: 26px;
 }

 .pop-modal__form-pane {
  padding: 24px 20px;
 }

 .pop-modal .contact-form label {
  font-size: 0.88rem;
 }
}

.pop-modal__form-pane .form-disclaimer {
 color: #fff;
}

#pop-modal-form label {
 color: #fff !important;
}

textarea {
 resize: none !important;
}
