
:root{--navy:#123f72;--blue:#1f5b96;--orange:#f58220;--ink:#102b49;--muted:#52677f;--light:#f5f8fc;--white:#fff;--line:#dfe7f0;--shadow:0 18px 50px rgba(16,43,73,.11);--r:20px}
*{box-sizing:border-box}
html{
	scroll-behavior:smooth
}
body{
	margin:0;
	font-family:Arial,Helvetica,sans-serif;
	color:var(--ink);line-height:1.65
}
a{
	text-decoration:none;
	color:inherit
}
.container{
	width:min(1180px,92%);
	margin:auto
}

.top{
	background:#082b50;
	color:#dce8f5;
	font-size:13px;
	padding:8px 0
}
.top .container{
	display:flex;
	justify-content:flex-end;
	gap:25px
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

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

.logo {
    width: 200px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.nav > a:first-child {
    display: flex;
    align-items: center;
    height: 100%;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    margin-left: auto;
    font-size: 15px;
    font-weight: 700;
}

.menu > a {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.menu a:hover {
    color: var(--orange);
}
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 22px;
    border-radius: 9px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer;
}
.primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 9px 25px rgba(245,130,32,.22);
}

.primary:hover {
    background: #db6c0f;
}
.outline {
    border-color: #c9d6e5;
    color: var(--navy);
    background: #fff;
}

.outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}
.hero{
	background:linear-gradient(120deg,#082d53,#174e82 70%,#1e5d95);
	color:#fff;overflow:hidden;
}
.hero-inner{
    padding:5px 0 10px;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:60px;
    align-items:center;
}
.eyebrow{
	font-size:13px;
	text-transform:uppercase;
	letter-spacing:2px;
	font-weight:900;
	color:var(--orange);
}
h1{
	font-size:clamp(44px,5.2vw,68px);
	line-height:1.03;
	letter-spacing:-2.7px;
	margin:13px 0 22px;
}
.hero p{
	font-size:19px;
	color:#dce8f5;
	max-width:690px;
}
.actions{
	display:flex;
	gap:12px;
	flex-wrap:wrap;
	margin-top:30px;
}
.hero .outline{
	background:transparent;
	color:#fff;
	border-color:rgba(255,255,255,.35);
}
.pipeline{
	background:rgba(255,255,255,.09);
	border:1px solid rgba(255,255,255,.16);
	padding:30px;
	border-radius:25px;
}
.pipeline h3{
	margin-top:0;
	font-size:23px;
}
.pipe{
	display:grid;
	gap:10px;
}
.pipe div{
	background:rgba(255,255,255,.1);
	padding:13px 16px;
	border-radius:10px;
	font-weight:800;
}
.pipe b{
	color:var(--orange);
	margin-right:8px;
}
section{
	padding:50px 0;
}

/* =====================================================
   COMPACT INDUSTRIES + PROCESS SECTIONS
===================================================== */

.industries-section,
.process-section {
    padding: 50px 0;
}

.industries-head,
.process-head {
    margin-bottom: 30px;
}

.light{
	background:var(--light);
}
.head{
	max-width:780px;
	margin-bottom:42px;
}
.head.center{
	text-align:center;
	margin-left:auto;
	margin-right:auto;
}
.head h2{
	font-size:41px;
	line-height:1.12;
	letter-spacing:-1.5px;
	margin:10px 0 15px;
}
.head p{
	font-size:17px;
	color:var(--muted);
}
.grid{
	display:grid;
	gap:20px;
}
.g3{
	grid-template-columns:repeat(3,1fr);
}
.g4{
	grid-template-columns:repeat(4,1fr);
}
.card{
	background:#fff;
	border:1px solid var(--line);
	border-radius:var(--r);
	padding:28px;
	box-shadow:0 7px 28px rgba(16,43,73,.04);
}
.card:hover{
	transform:translateY(-2px);
	box-shadow:var(--shadow);
	transition:.2s;
}
.num{
	width:44px;
	height:44px;
	border-radius:11px;
	background:#fff0e5;
	color:var(--orange);
	display:grid;
	place-items:center;
	font-weight:900;
	margin-bottom:15px;
}
.card h3{
	font-size:20px;
	margin:0 0 8px;
}
.card p{
	margin:0;
	color:var(--muted);
}
.band-title{
	display:flex;
	align-items:end;
	justify-content:space-between;
	gap:30px;
	margin-bottom:35px;
}
.band-title h2{
	font-size:39px;
	line-height:1.1;
	margin:0;
}
.mini{
	color:var(--orange);
	font-weight:900;
	text-transform:uppercase;
	font-size:12px;
	letter-spacing:1.6px;
}
.flow{
	display:grid;
	grid-template-columns:repeat(6,1fr);
	gap:10px;
}
.flow-item{
	position:relative;
	text-align:center;
	padding:22px 12px;
	border:1px solid var(--line);
	border-radius:14px;
	background:#fff;
	font-weight:800;
}
.flow-item span{
	display:block;
	color:var(--orange);
	font-size:12px;
	margin-bottom:7px;
}
.ind{
	padding:22px;
	border-radius:14px;
	background:#fff;
	border:1px solid var(--line);
	font-weight:800;
}
.ind small{
	display:block;
	color:var(--muted);
	font-weight:500;
	margin-top:4px;
}
.cta{
	background:linear-gradient(120deg,#0a3159,#184f83);
	color:#fff;
	border-radius:28px;
	padding:58px;
}
.cta h2{
	font-size:42px;
	margin:0 0 10px;
	line-height:1.1;
}
.cta p{
	color:#d9e6f2;
	max-width:760px;
}
.faq{
	border-top:1px solid var(--line);
}
details{
	border-bottom:1px solid var(--line);
	padding:21px 0;
}
summary{
	font-weight:800;
	font-size:17px;
	cursor:pointer;
}
details p{
	color:var(--muted);
	max-width:900px;
}
.contact{
	display:grid;
	grid-template-columns:.9fr 1.1fr;
	gap:25px;
	margin-top:30px;
}
.box{
	border-radius:22px;
	padding:34px;
	background:var(--navy);
	color:#fff;
}
.box p{
	color:#d6e4f1;
}
form{
	border:1px solid var(--line);
	border-radius:22px;
	padding:30px;
}
label{
	font-size:13px;
	font-weight:800;
	display:block;
	margin-bottom:6px;
}
input,textarea,select{
	width:100%;
	padding:13px;
	border:1px solid #cad6e4;
	border-radius:8px;
	font:inherit;
	margin-bottom:16px;
}
textarea{
	min-height:120px;
}
footer{
	background:#061d35;
	color:#b7c8da;
	padding:50px 0 22px;
}
.foot{
	display:grid;
	grid-template-columns:1.5fr 1fr 1fr 1fr;
	gap:30px;
}
.foot img{
	width:210px;
	filter:none;
	background:#fff;
	padding:4px;
	border-radius:3px;
}
.ftitle{
	color:#fff;
	font-weight:800;
	margin:13px 0 9px;
}
.foot a{
	display:block;
	font-size:14px;
	margin:7px 0;
}
.copy{
	border-top:1px solid rgba(255,255,255,.1);
	margin-top:35px;
	padding-top:18px;
	font-size:13px;
}
.mobile{
	display:none;
}

@media(max-width:1100px) {
    .logo {
        width: 240px;
    }

    .menu {
        gap: 18px;
        font-size: 14px;
    }
}
@media(max-width:900px){
	 .nav {
        height: 82px;
    }

    .menu {
        display: none;
    }

    .mobile {
        display: block;
    }

    .logo {
        width: 220px;
    }

    .hero-inner,
    .contact {
        grid-template-columns: 1fr;
    }

    .g3,
    .g4 {
        grid-template-columns: 1fr 1fr;
    }

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

    .foot {
        grid-template-columns: 1fr 1fr;
    }
}
@media(max-width:560px){
	.logo {
        width: 180px;
    }

    .nav {
        height: 72px;
    }

    .g3,
    .g4,
    .flow,
    .foot {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        padding: 70px 0;
    }

    .head h2,
    .cta h2 {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 43px;
    }
}

/* =====================================================
   HOW IT WORKS / PROCESS SECTION
===================================================== */

.process-section {
    background: linear-gradient(
        180deg,
        #f7faff 0%,
        #ffffff 100%
    );

    padding: 65px 0 75px;

    position: relative;
    overflow: hidden;
}


/* Subtle background decoration */

.process-section::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(31,91,150,.035);

    top: -180px;
    right: -120px;

    pointer-events: none;
}

.process-section::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(245,130,32,.035);

    bottom: -150px;
    left: -100px;

    pointer-events: none;
}


/* Section heading */

.process-head {
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin-bottom: 70px;
}

.process-head .eyebrow {
    margin-bottom: 12px;
}

.process-head h2 {
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;

    letter-spacing: -1.8px;

    margin: 0 0 22px;

    color: var(--ink);
}

.process-head p {
    max-width: 820px;

    margin: 0 auto;

    font-size: 18px;

    line-height: 1.7;

    color: var(--muted);
}


/* =====================================================
   PROCESS FLOW
===================================================== */

.process-flow {
    position: relative;

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 18px;

    z-index: 2;
}


/* Connecting line */

.process-line {
    position: absolute;

    top: 31px;
    left: 8%;
    right: 8%;

    height: 2px;

    background: linear-gradient(
        90deg,
        rgba(245,130,32,.25),
        rgba(31,91,150,.25),
        rgba(245,130,32,.25)
    );

    z-index: 0;
}


/* Individual step */

.process-step {
    position: relative;

    text-align: center;

    z-index: 1;
}


/* Number circle */

.process-number {
    width: 64px;
    height: 64px;

    margin: 0 auto 18px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);

    border: 2px solid var(--orange);

    color: var(--orange);

    font-size: 17px;
    font-weight: 900;

    box-shadow:
        0 8px 22px rgba(16,43,73,.10);

    position: relative;
    z-index: 3;

    transition:
        .25s ease;
}


/* Card */

.process-card {
    min-height: 185px;

    background: #ffffff;

    border: 1px solid #dce6f0;

    border-radius: 18px;

    padding: 24px 18px 22px;

    box-shadow:
        0 8px 25px rgba(16,43,73,.055);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

    position: relative;
}


/* Small orange top accent */

.process-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 25%;
    right: 25%;

    height: 3px;

    background: var(--orange);

    border-radius: 0 0 5px 5px;

    opacity: .7;
}


/* Step label */

.process-card span {
    display: block;

    color: var(--orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.4px;

    margin-bottom: 10px;
}


/* Step title */

.process-card h3 {
    margin: 0 0 9px;

    color: var(--ink);

    font-size: 20px;

    line-height: 1.2;
}


/* Step description */

.process-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.55;
}


/* =====================================================
   HOVER EFFECT
===================================================== */

.process-step:hover .process-card {
    transform: translateY(-7px);

    border-color: rgba(245,130,32,.45);

    box-shadow:
        0 18px 40px rgba(16,43,73,.12);
}

.process-step:hover .process-number {
    background: var(--orange);

    color: #ffffff;

    transform: scale(1.08);

    box-shadow:
        0 10px 25px rgba(245,130,32,.25);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px) {

    .process-flow {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 55px;
    }

    .process-line {
        display: none;
    }

    .process-card {
        min-height: 175px;
    }

}


@media(max-width:700px) {

    .process-section {
        padding: 75px 0 85px;
    }

    .process-head {
        margin-bottom: 50px;
    }

    .process-head h2 {
        font-size: 34px;
    }

    .process-head p {
        font-size: 16px;
    }

    .process-flow {
        grid-template-columns: 1fr 1fr;

        gap: 25px 15px;
    }

}


@media(max-width:480px) {

    .process-flow {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
    }

}

/* =====================================================
   INDUSTRIES SECTION
===================================================== */

.industries-section {
    position: relative;
    padding: 65px 0 75px;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f6f9fd 100%
    );

    overflow: hidden;
}


/* Decorative background */

.industries-section::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background: rgba(31,91,150,.035);

    top: -220px;
    right: -150px;

    pointer-events: none;
}

.industries-section::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(245,130,32,.035);

    bottom: -150px;
    left: -120px;

    pointer-events: none;
}


/* Heading */

.industries-head {
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin-bottom: 52px;
}

.industries-head h2 {
    font-size: clamp(38px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -1.8px;

    margin: 10px 0 18px;

    color: var(--ink);
}

.industries-head p {
    font-size: 18px;

    line-height: 1.7;

    color: var(--muted);

    max-width: 720px;
}


/* =====================================================
   INDUSTRY GRID
===================================================== */

.industries-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* =====================================================
   INDUSTRY CARD
===================================================== */

.industry-card {
    position: relative;

    min-height: 190px;

    display: flex;
    flex-direction: column;

    padding: 25px 24px 22px;

    background: #ffffff;

    border: 1px solid #dce6f0;

    border-radius: 18px;

    box-shadow:
        0 7px 24px rgba(16,43,73,.045);

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


/* Orange top accent */

.industry-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: var(--orange);

    transition: width .3s ease;
}


/* Number */

.industry-number {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 10px;

    background: #fff2e8;

    color: var(--orange);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: .5px;
}


/* Content */

.industry-content {
    flex: 1;
}

.industry-content h3 {
    margin: 0 0 9px;

    color: var(--ink);

    font-size: 19px;

    line-height: 1.25;
}

.industry-content p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.6;
}


/* Arrow */

.industry-arrow {
    position: absolute;

    right: 20px;
    bottom: 17px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f4f7fa;

    color: var(--navy);

    font-size: 17px;

    opacity: .65;

    transition:
        .25s ease;
}


/* =====================================================
   HOVER
===================================================== */

.industry-card:hover {
    transform: translateY(-7px);

    border-color: rgba(245,130,32,.45);

    box-shadow:
        0 18px 40px rgba(16,43,73,.11);
}

.industry-card:hover::before {
    width: 100%;
}

.industry-card:hover .industry-number {
    background: var(--orange);

    color: #ffffff;
}

.industry-card:hover .industry-arrow {
    background: var(--orange);

    color: #ffffff;

    opacity: 1;

    transform: translate(2px,-2px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px) {

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

}


@media(max-width:700px) {

    .industries-section {
        padding: 75px 0 85px;
    }

    .industries-head {
        margin-bottom: 40px;
    }

    .industries-head h2 {
        font-size: 34px;
    }

    .industries-head p {
        font-size: 16px;
    }

}


@media(max-width:520px) {

    .industries-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .industry-card {
        min-height: 170px;
    }

}

/* =====================================================
   CONSULTATION FORM
===================================================== */

.consultation-form {
    background: #ffffff;

    border: 1px solid var(--line);

    border-radius: 24px;

    padding: 38px;

    box-shadow:
        0 15px 45px rgba(16,43,73,.08);
}


/* Form header */

.form-header {
    margin-bottom: 30px;
}

.form-eyebrow {
    color: var(--orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.7px;

    margin-bottom: 8px;
}

.form-header h2 {
    margin: 0 0 8px;

    color: var(--ink);

    font-size: 30px;

    line-height: 1.2;
}

.form-header p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.6;
}


/* Form rows */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


/* Form group */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--ink);

    font-size: 13px;

    font-weight: 800;
}

.form-group label span {
    color: var(--orange);
}


/* Inputs */

.consultation-form input,
.consultation-form textarea,
.consultation-form select {

    width: 100%;

    margin: 0;

    padding: 13px 15px;

    border: 1px solid #cdd9e6;

    border-radius: 9px;

    background: #fbfdff;

    color: var(--ink);

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


/* Placeholder */

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: #94a3b8;
}


/* Focus */

.consultation-form input:focus,
.consultation-form textarea:focus,
.consultation-form select:focus {

    border-color: var(--blue);

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(31,91,150,.09);
}


/* Textarea */

.consultation-form textarea {

    min-height: 125px;

    resize: vertical;

    line-height: 1.5;
}


/* Select */

.consultation-form select {

    cursor: pointer;

    appearance: auto;
}


/* Bottom */

.form-bottom {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 5px;
}


/* Submit button */

.consultation-submit {

    min-height: 50px;

    padding: 13px 22px;

    border: 0;

    font-size: 14px;

    gap: 14px;

    white-space: nowrap;
}

.consultation-submit span {

    font-size: 20px;

    line-height: 1;

    transition: transform .2s ease;
}

.consultation-submit:hover span {

    transform: translateX(4px);
}


/* Small note */

.form-note {

    color: var(--muted);

    font-size: 11px;

    line-height: 1.45;
}


/* Message */

.form-message {

    margin: 15px 0 0;

    color: var(--orange);

    font-size: 13px;

    font-weight: 800;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:700px) {

    .consultation-form {

        padding: 28px 22px;

        border-radius: 18px;
    }

    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-header h2 {

        font-size: 26px;
    }

    .form-bottom {

        flex-direction: column;

        align-items: flex-start;
    }

    .consultation-submit {

        width: 100%;
    }

}