/* ── RESET & BASE ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: arial, helvetica, sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* ── NAVIGATION ── */
header {
    background-color: #1F3864;
    padding: 0 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    height: 70px;
}

.logo-main {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.logo-sub {
    font-size: 1em;
    color: #a8bcd4;
    margin-left: 6px;
    letter-spacing: 0.05em;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

nav ul li a {
    color: #a8bcd4;
    text-decoration: none;
    font-size: 0.95em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #ffffff;
}

nav ul li a.active {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 4px;
}

.footer-links a.active {
    color: #ffffff;
}

/* ── HERO SECTION ── */
.hero {
    background-color: #f0f4f9;
    padding: 80px 40px;
}

.hero-content {
    max-width: 750px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 1em;
    font-weight: bold;
    color: #2E5090;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

h1 {
    font-size: 2.8em;
    color: #1F3864;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.1em;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: #2E5090;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #1F3864;
}

/* ── PAIN POINTS SECTION ── */
.pain-points {
    background-color: #ffffff;
    padding: 80px 40px;
}

.pain-intro {
    max-width: 750px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.pain-intro h2 {
    font-size: 2em;
    color: #1F3864;
    margin-bottom: 16px;
    line-height: 1.3;
}

.pain-intro p {
    font-size: 1.1em;
    color: #444444;
    line-height: 1.8;
}

.pain-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pain-card {
    flex: 1 1 calc(50% - 24px);
    background-color: #f0f4f9;
    padding: 36px;
    border-top: 4px solid #2E5090;
}

.pain-card h3 {
    font-size: 1.2em;
    color: #1F3864;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pain-problem {
    font-size: 0.95em;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.pain-solution {
    font-size: 0.95em;
    color: #1a1a1a;
    line-height: 1.7;
}
/* ── CARD LABELS ── */
.pain-label {
    font-size: 0.75em;
    font-weight: bold;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
    margin-top: 16px;
}

.problem-label {
    color: #8B0000;
}

.solution-label {
    color: #1E6B3C;
}

/* ── PROOF STRIP ── */
.proof-strip {
    background-color: #1F3864;
    padding: 60px 40px;
}

.proof-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.proof-statement {
    font-size: 1.3em;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: bold;
}

.proof-tagline {
    font-size: 1em;
    color: #a8bcd4;
    line-height: 1.7;
    font-style: italic;
}

/* ── FOOTER ── */
footer {
    background-color: #111827;
    padding: 60px 40px 0 40px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2E5090;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.footer-tagline {
    font-size: 2.0em;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-style: normal;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #a8bcd4;
    text-decoration: none;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact p {
    color: #a8bcd4;
    font-size: 0.9em;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #444444;
    font-size: 0.8em;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
    background-color: #1F3864;
    padding: 60px 40px;
}

.page-hero-content {
    max-width: 750px;
    margin: 0 auto;
}

.page-hero .hero-tagline {
    color: #a8bcd4;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 2.2em;
    line-height: 1.3;
    margin-bottom: 0;
}

/* ── ABOUT SECTION ── */
.about-section {
    background-color: #ffffff;
    padding: 80px 40px;
}

.about-content {
    max-width: 750px;
    margin: 0 auto;
}

.about-block {
    margin-bottom: 60px;
}

.about-block h2 {
    font-size: 1.5em;
    color: #1F3864;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #EEF3FA;
}

.about-block p {
    font-size: 1em;
    color: #444444;
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-emphasis {
    font-weight: bold;
    color: #1F3864;
    font-size: 1.05em;
}

.about-cta {
    background-color: #f0f4f9;
    padding: 40px;
    text-align: center;
    margin-top: 20px;
}

.about-cta p {
    font-size: 1.1em;
    color: #1F3864;
    font-weight: bold;
    margin-bottom: 24px;
}

/* ── CREDENTIALS BAR ── */
.credentials-bar {
    background-color: #2E5090;
    padding: 18px 40px;
}

.credentials-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.credential {
    color: #ffffff;
    font-size: 0.85em;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.credential::after {
    content: " ·";
    color: #a8bcd4;
    margin-left: 12px;
}

.credential:last-child::after {
    content: "";
}

/* ── SERVICES PAGE ── */
.services-intro {
    background-color: #ffffff;
    padding: 50px 40px 0 40px;
}

.services-intro-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content p {
    font-size: 1.1em;
    color: #444444;
    line-height: 1.9;
}

.services-grid-section {
    background-color: #ffffff;
    padding: 50px 40px 80px 40px;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1 1 calc(50% - 24px);
    background-color: #f0f4f9;
    padding: 36px;
    border-top: 4px solid #2E5090;
    display: flex;
    flex-direction: column;
}

.service-card-wide {
    flex: 1 1 100%;
    text-align: center;
    align-items: center;
}

.service-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #d0dae8;
    line-height: 1;
    margin-bottom: 12px;
}

.service-card h2 {
    font-size: 1.2em;
    color: #1F3864;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card p {
    font-size: 0.95em;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-details {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.service-tag {
    background-color: #2E5090;
    color: #ffffff;
    font-size: 0.75em;
    font-weight: bold;
    padding: 4px 10px;
    letter-spacing: 0.05em;
}

.service-link {
    color: #2E5090;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.service-link:hover {
    color: #1F3864;
}

/* ── SERVICES CTA ── */
.services-cta {
    background-color: #1F3864;
    padding: 80px 40px;
}

.services-cta-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.services-cta h2 {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.services-cta p {
    font-size: 1em;
    color: #a8bcd4;
    line-height: 1.9;
    margin-bottom: 36px;
}

/* ── SOLUTIONS PAGE ── */
.solutions-intro {
    background-color: #ffffff;
    padding: 50px 40px;
}

.solutions-intro-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.solutions-intro-content p {
    font-size: 1.1em;
    color: #444444;
    line-height: 1.9;
}

.solutions-section {
    background-color: #ffffff;
    padding: 0 0 80px 0;
}

.solutions-content {
    max-width: 860px;
    margin: 0 auto;
}

.solution-block {
    border-top: 4px solid #2E5090;
    padding: 50px 40px;
    border-bottom: 1px solid #EEF3FA;
    background-color: #ffffff;
}

.solution-block:nth-child(odd) {
    background-color: #f0f4f9;
}

.solution-block:last-child {
    border-bottom: none;
}

.solution-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 24px;
}

.solution-number {
    font-size: 3em;
    font-weight: bold;
    color: #d0dae8;
    line-height: 1;
    flex-shrink: 0;
}

.solution-header h2 {
    font-size: 1.4em;
    color: #1F3864;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.solution-label {
    font-size: 0.75em;
    font-weight: bold;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    margin-top: 24px;
}

.problem-label {
    color: #8B0000;
}

.solution-label-green {
    color: #1E6B3C;
}

.solution-body {
    font-size: 1em;
    color: #444444;
    line-height: 1.9;
    margin-bottom: 14px;
}

.solution-close {
    font-weight: bold;
    color: #1F3864;
}

/* ── CONTACT PAGE ── */
.contact-section {
    background-color: #ffffff;
    padding: 80px 40px;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 1.6em;
    color: #1F3864;
    margin-bottom: 20px;
}

.contact-left p {
    font-size: 1em;
    color: #444444;
    line-height: 1.9;
    margin-bottom: 16px;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 3px solid #2E5090;
    padding-left: 16px;
}

.contact-detail-label {
    font-size: 0.75em;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2E5090;
}

.contact-detail-value {
    font-size: 0.95em;
    color: #1a1a1a;
    line-height: 1.5;
}

.contact-right {
    flex: 1.2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85em;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1F3864;
}

.form-group input,
.form-group textarea {
    font-family: arial, helvetica, sans-serif;
    font-size: 1em;
    color: #1a1a1a;
    background-color: #f0f4f9;
    border: 1px solid #d0dae8;
    padding: 12px 16px;
    width: 100%;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2E5090;
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    align-self: flex-start;
    cursor: pointer;
    border: none;
    font-family: arial, helvetica, sans-serif;
}

/* ── THANK YOU PAGE ── */
.thankyou-section {
    background-color: #ffffff;
    padding: 80px 40px;
}

.thankyou-content {
    max-width: 750px;
    margin: 0 auto;
}

.thankyou-block {
    margin-bottom: 50px;
}

.thankyou-block p {
    font-size: 1.1em;
    color: #444444;
    line-height: 1.9;
    margin-bottom: 20px;
}

.thankyou-emphasis {
    font-weight: bold;
    color: #1F3864;
    font-size: 1.15em;
}

.thankyou-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    color: #2E5090;
    text-decoration: none;
    padding: 14px 32px;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid #2E5090;
}

.btn-secondary:hover {
    background-color: #f0f4f9;
}