/*

* ReachGlobal
* Global stylesheet
  */

/* =========================================
RESET
========================================= */

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

html {
scroll-behavior: smooth;
}

body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
color: #1f2933;
background: #ffffff;
line-height: 1.6;
}

img {
max-width: 100%;
height: auto;
}

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

button,
input,
textarea,
select {
font: inherit;
}

/* =========================================
GLOBAL
========================================= */

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

main {
min-height: 60vh;
}

.section {
padding: 80px 0;
}

.section-light {
background: #f7f9fb;
}

.section-dark {
background: #17212b;
color: #ffffff;
}

.section-heading {
max-width: 760px;
margin: 0 auto 45px;
text-align: center;
}

.section-heading h2 {
margin: 0 0 15px;
font-size: 2.2rem;
line-height: 1.2;
}

.section-heading p {
margin: 0;
color: #5f6b76;
font-size: 1.05rem;
}

.section-dark .section-heading p {
color: #d4dbe1;
}

/* =========================================
HEADER
========================================= */

.site-header {
position: relative;
z-index: 1000;
background: #ffffff;
border-bottom: 1px solid #e7ebef;
}

.header-inner {
min-height: 76px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
}

.site-logo,
.footer-logo {
font-size: 1.55rem;
font-weight: 700;
letter-spacing: -0.03em;
}

.site-logo {
color: #173f5f;
}

.main-navigation {
display: flex;
align-items: center;
gap: 25px;
}

.nav-menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
align-items: center;
gap: 5px;
}

.nav-menu > li {
position: relative;
}

.nav-menu a,
.dropdown-toggle {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 10px 8px;
border: 0;
background: transparent;
color: #263746;
font-size: 0.92rem;
cursor: pointer;
}

.nav-menu a:hover,
.dropdown-toggle:hover {
color: #1769aa;
}

.dropdown-arrow {
font-size: 0.85rem;
}

.dropdown-menu {
position: absolute;
top: calc(100% + 8px);
left: 0;
min-width: 235px;
margin: 0;
padding: 8px 0;
list-style: none;
background: #ffffff;
border: 1px solid #e4e9ed;
box-shadow: 0 12px 30px rgba(20, 35, 50, 0.12);
border-radius: 6px;
opacity: 0;
visibility: hidden;
transform: translateY(5px);
transition: all 0.18s ease;
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.dropdown-menu a {
display: block;
width: 100%;
padding: 9px 17px;
font-size: 0.9rem;
}

.dropdown-menu a:hover {
background: #f4f7f9;
}

.dropdown-divider {
height: 1px;
margin: 7px 0;
background: #e7ebef;
}

.nav-cta {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 11px 18px;
border-radius: 5px;
background: #1769aa;
color: #ffffff !important;
font-weight: 600;
white-space: nowrap;
}

.nav-cta:hover {
background: #125589;
}

.mobile-menu-toggle {
display: none;
width: 42px;
height: 38px;
padding: 7px;
border: 1px solid #dbe2e8;
border-radius: 5px;
background: #ffffff;
cursor: pointer;
}

.mobile-menu-toggle span {
display: block;
height: 2px;
margin: 4px 0;
background: #263746;
}

/* =========================================
HERO
========================================= */

.hero {
padding: 105px 0 100px;
background: #f4f8fb;
}

.hero-content {
max-width: 850px;
}

.hero-eyebrow {
margin-bottom: 16px;
color: #1769aa;
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.hero h1 {
margin: 0 0 22px;
max-width: 850px;
color: #17212b;
font-size: clamp(2.5rem, 5vw, 4.3rem);
line-height: 1.08;
letter-spacing: -0.04em;
}

.hero-lead {
max-width: 750px;
margin: 0 0 30px;
color: #53616d;
font-size: 1.2rem;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
}

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 48px;
padding: 12px 22px;
border: 1px solid transparent;
border-radius: 5px;
font-weight: 600;
transition: 0.18s ease;
}

.btn-primary {
background: #1769aa;
color: #ffffff;
}

.btn-primary:hover {
background: #125589;
}

.btn-secondary {
border-color: #cbd5dc;
background: #ffffff;
color: #263746;
}

.btn-secondary:hover {
border-color: #1769aa;
color: #1769aa;
}

/* =========================================
CARDS
========================================= */

.card-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}

.card {
padding: 28px;
background: #ffffff;
border: 1px solid #e3e8ec;
border-radius: 7px;
}

.card h3 {
margin: 0 0 10px;
font-size: 1.2rem;
line-height: 1.3;
}

.card p {
margin: 0 0 15px;
color: #5f6b76;
}

.card-link {
color: #1769aa;
font-weight: 600;
}

/* =========================================
SECTOR CARDS
========================================= */

.sector-card {
min-height: 235px;
display: flex;
flex-direction: column;
}

.sector-number {
margin-bottom: 18px;
color: #8a98a4;
font-size: 0.82rem;
font-weight: 700;
}

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

.sector-card p {
flex: 1;
}

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

.process-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}

.process-step {
position: relative;
}

.process-number {
margin-bottom: 12px;
color: #1769aa;
font-size: 0.85rem;
font-weight: 700;
}

.process-step h3 {
margin: 0 0 8px;
font-size: 1.05rem;
}

.process-step p {
margin: 0;
color: #697681;
font-size: 0.94rem;
}

/* =========================================
CTA
========================================= */

.cta-section {
padding: 85px 0;
background: #173f5f;
color: #ffffff;
}

.cta-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
}

.cta-content h2 {
margin: 0 0 15px;
font-size: 2.3rem;
line-height: 1.2;
}

.cta-content p {
margin: 0 0 28px;
color: #dce6ed;
}

.cta-content .btn-primary {
background: #ffffff;
color: #173f5f;
}

.cta-content .btn-primary:hover {
background: #eef3f6;
}

/* =========================================
FOOTER
========================================= */

.site-footer {
background: #111a22;
color: #dbe3e9;
padding: 65px 0 0;
}

.footer-grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1.3fr 1fr;
gap: 45px;
padding-bottom: 50px;
}

.footer-logo {
color: #ffffff;
}

.footer-brand p {
max-width: 360px;
margin: 15px 0 0;
color: #aebbc5;
}

.footer-description {
font-size: 0.92rem;
}

.footer-column h3 {
margin: 0 0 17px;
color: #ffffff;
font-size: 1rem;
}

.footer-column ul {
margin: 0;
padding: 0;
list-style: none;
}

.footer-column li {
margin-bottom: 8px;
}

.footer-column a {
color: #aebbc5;
font-size: 0.9rem;
}

.footer-column a:hover {
color: #ffffff;
}

.footer-bottom {
display: flex;
justify-content: space-between;
gap: 20px;
padding: 20px 0;
border-top: 1px solid #29343d;
color: #8f9ca6;
font-size: 0.82rem;
}

.footer-bottom p {
margin: 0;
}

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

@media (max-width: 1100px) {

.nav-menu {
    gap: 0;
}

.main-navigation {
    gap: 12px;
}

.nav-menu a,
.dropdown-toggle {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 0.85rem;
}

}

@media (max-width: 900px) {

.mobile-menu-toggle {
    display: block;
}

.main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 15px 20px 25px;
    background: #ffffff;
    border-top: 1px solid #e7ebef;
    box-shadow: 0 15px 30px rgba(20, 35, 50, 0.1);
}

.main-navigation.is-open {
    display: block;
}

.nav-menu {
    display: block;
}

.nav-menu > li {
    border-bottom: 1px solid #edf0f2;
}

.nav-menu a,
.dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 13px 5px;
    text-align: left;
}

.dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.has-dropdown.is-open > .dropdown-menu {
    display: block;
}

.nav-cta {
    width: 100%;
    margin-top: 18px;
}

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

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

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

}

@media (max-width: 600px) {

.container {
    width: min(100% - 28px, 1180px);
}

.section {
    padding: 60px 0;
}

.hero {
    padding: 70px 0;
}

.hero h1 {
    font-size: 2.45rem;
}

.hero-lead {
    font-size: 1.05rem;
}

.hero-actions {
    display: block;
}

.hero-actions .btn {
    width: 100%;
    margin-bottom: 10px;
}

.card-grid,
.process-grid,
.footer-grid {
    grid-template-columns: 1fr;
}

.section-heading h2 {
    font-size: 1.85rem;
}

.footer-bottom {
    display: block;
}

.footer-bottom p + p {
    margin-top: 8px;
}

}