* {
box-sizing: border-box;
}

body {
margin: 0;
font-family: 'Raleway', sans-serif;
background: #F4F6F8;
color: #111;
line-height: 1.6;
}

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

.header {
background: white;
border-bottom: 1px solid rgba(0,0,0,.08);
position: sticky;
top: 0;
z-index: 1000;
}

.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 14px 0;
}

.logo {
display: flex;
align-items: center;
gap: 10px;
}

.logo-img {
height: 82px;
width: auto;
}

nav {
display: flex;
gap: 32px;
}

nav a {
text-decoration: none;
color: #111;
font-weight: 500;
transition: color .2s ease;
}

nav a:hover {
color: #1E3A5F;
}

.hero {
padding: 70px 0 85px;
}

.hero-grid {
display: grid;
grid-template-columns: 1.3fr .7fr;
gap: 60px;
align-items: center;
}

.pill {
display: inline-block;
padding: 10px 18px;
background: white;
border-radius: 999px;
border: 1px solid rgba(30,58,95,.15);
color: #1E3A5F;
margin-bottom: 24px;
}

.hero h1 {
font-size: 64px;
line-height: 1.1;
margin: 0;
}

.hero h1 span {
color: #1E3A5F;
}

.hero-text {
margin-top: 24px;
font-size: 20px;
color: rgba(0,0,0,.7);
max-width: 560px;
}

.credibility {
margin-top: 18px;
font-weight: 600;
color: #1E3A5F;
}

.buttons {
margin-top: 36px;
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.btn {
text-decoration: none;
padding: 16px 26px;
border-radius: 18px;
font-weight: 600;
display: inline-block;
transition: all .2s ease;
}

.btn:hover {
transform: translateY(-2px);
}

.primary {
background: #1E3A5F;
color: white;
}

.secondary {
background: white;
color: #111;
border: 1px solid rgba(0,0,0,.12);
}

.white {
background: white;
color: #1E3A5F;
margin-top: 10px;
border: none;
cursor: pointer;
}

.card {
background: white;
padding: 36px;
border-radius: 30px;
box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.card h3 {
margin-top: 0;
color: #1E3A5F;
}

.problem {
padding: 16px;
border: 1px solid rgba(0,0,0,.1);
border-radius: 18px;
margin-top: 14px;
}

.promise {
margin-top: 28px;
background: #1E3A5F;
color: white;
padding: 24px;
border-radius: 22px;
font-size: 22px;
}

.section {
padding: 90px 0;
background: white;
}

.alt {
background: #F4F6F8;
}

.section h2,
.contact h2 {
font-size: 44px;
margin-top: 0;
}

.section-intro,
.about-text,
.contact p {
font-size: 20px;
color: rgba(0,0,0,.72);
max-width: 800px;
}

.services {
margin-top: 48px;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}

.service-card {
background: #F4F6F8;
padding: 30px;
border-radius: 26px;
transition: all .2s ease;
}

.service-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 24px rgba(0,0,0,.06);
}

.contact {
background: #1E3A5F;
color: white;
padding: 90px 0;
text-align: center;
}

.contact p {
color: rgba(255,255,255,.82);
margin: auto;
}

.contact-form {
margin: 32px auto 0;
max-width: 560px;
display: grid;
gap: 14px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 16px 18px;
border: 1px solid rgba(255,255,255,.25);
border-radius: 14px;
font-family: 'Raleway', sans-serif;
font-size: 16px;
}

.contact-form textarea {
min-height: 130px;
resize: vertical;
}

footer {
text-align: center;
padding: 30px;
background: #111;
color: rgba(255,255,255,.65);
}

@media (max-width: 900px) {

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

nav {
display: none;
}

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