:root {
--navy: #102a43;
--blue: #1d5d85;
--gold: #c9a96e;
--cream: #f7f5f0;
--light: #f3f6f8;
--white: #ffffff;
--text: #334e68;
--muted: #627d98;
--border: #d9e2ec;
--radius: 16px;
--shadow: 0 18px 50px rgba(16, 42, 67, .09);
}

{
box-sizing: border-box;
margin: 0;
}

html {
scroll-behavior: smooth;
}

body {
font-family: "DM Sans", sans-serif;
color: var(--text);
line-height: 1.6;
background: var(--white);
}

h1,
h2,
h3 {
font-family: "Manrope", sans-serif;
color: var(--navy);
line-height: 1.15;
}

a {
color: inherit;
text-decoration: none;
}

button,
input,
select,
textarea {
font: inherit;
}

address {
font-style: normal;
}

.container {
width: min(1120px, calc(100% - 32px));
margin-inline: auto;
}

.section {
padding: 90px 0;
}

.section-cream {
background: var(--cream);
}

/* =========================
HEADER
========================= */

.header {
position: sticky;
top: 0;
z-index: 100;
background: rgba(255, 255, 255, .97);
border-bottom: 1px solid var(--border);
backdrop-filter: blur(10px);
}

.nav {
min-height: 78px;
display: flex;
align-items: center;
justify-content: space-between;
}

.brand {
display: flex;
align-items: center;
gap: 12px;
}

.cpa-logo {
width: 52px;
height: auto;
max-height: 52px;
object-fit: contain;
}

.brand-text strong,
.brand-text small {
display: block;
}

.brand-text strong {
color: var(--navy);
font-family: "Manrope", sans-serif;
font-size: 15px;
}

.brand-text small {
color: var(--muted);
font-size: 9px;
text-transform: uppercase;
letter-spacing: 1.3px;
}

.menu {
display: flex;
align-items: center;
gap: 28px;
font-size: 14px;
font-weight: 600;
}

.menu a:hover {
color: var(--blue);
}

.menu-toggle {
display: none;
border: 0;
background: transparent;
color: var(--navy);
font-size: 24px;
cursor: pointer;
}

/* =========================
BUTTONS
========================= */

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 13px 20px;
border: 1px solid transparent;
border-radius: 9px;
font-size: 14px;
font-weight: 700;
cursor: pointer;
transition: .2s ease;
}

.btn-dark {
background: var(--navy);
color: white;
}

.btn-dark:hover {
background: var(--blue);
transform: translateY(-1px);
}

.btn-outline {
border-color: var(--border);
background: white;
color: var(--navy);
}

.btn-outline:hover {
border-color: var(--navy);
}

.btn-gold {
background: var(--gold);
color: var(--navy);
}

.btn-gold:hover {
background: #d5b77d;
}

/* =========================
TYPOGRAPHY
========================= */

.eyebrow {
display: block;
margin-bottom: 18px;
color: var(--blue);
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
}

.eyebrow::before {
content: "";
display: inline-block;
width: 24px;
height: 2px;
margin-right: 8px;
vertical-align: middle;
background: var(--gold);
}

.lead {
max-width: 600px;
margin: 22px 0 30px;
color: var(--muted);
font-size: 18px;
}

.section-heading {
max-width: 700px;
margin-bottom: 48px;
}

.section-heading h2,
.about-content h2,
.contact-intro h2 {
font-size: clamp(34px, 4vw, 47px);
letter-spacing: -1.8px;
}

.section-heading p {
margin-top: 15px;
color: var(--muted);
}

/* =========================
HERO
========================= */

.hero {
padding: 105px 0;
background: linear-gradient(135deg, #f7f9fb, white);
}

.hero-grid {
display: grid;
grid-template-columns: 1.1fr .9fr;
gap: 70px;
align-items: center;
}

.hero h1 {
max-width: 680px;
font-size: clamp(44px, 5vw, 68px);
letter-spacing: -3px;
}

.hero h1 em {
color: var(--blue);
font-style: normal;
}

.actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
}

.hero-panel {
min-height: 400px;
padding: 42px;
display: flex;
flex-direction: column;
justify-content: center;
border-radius: 25px;
background: var(--navy);
color: white;
box-shadow: 0 30px 70px rgba(16, 42, 67, .2);
}

.panel-label,
.cta-label {
color: var(--gold);
font-size: 11px;
font-weight: 700;
letter-spacing: 2px;
}

.hero-panel h2 {
margin: 18px 0 28px;
color: white;
font-size: 30px;
}

.hero-panel ul {
padding: 0;
list-style: none;
display: grid;
gap: 13px;
color: rgba(255, 255, 255, .78);
font-size: 14px;
}

.hero-panel li {
display: flex;
gap: 10px;
}

.hero-panel li span {
color: var(--gold);
font-weight: 700;
}

/* =========================
TRUST
========================= */

.trust {
border-bottom: 1px solid var(--border);
}

.trust-grid {
min-height: 105px;
display: grid;
grid-template-columns: repeat(3, 1fr);
align-items: center;
gap: 30px;
}

.trust-grid div {
display: flex;
flex-direction: column;
}

.trust-grid strong {
color: var(--navy);
}

.trust-grid span {
color: var(--muted);
font-size: 13px;
}

/* =========================
SERVICES
========================= */

.service-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}

.service-card {
padding: 40px;
background: white;
border: 1px solid var(--border);
border-radius: var(--radius);
transition: .2s ease;
}

.service-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow);
}

.service-number {
color: var(--gold);
font-weight: 800;
font-size: 13px;
}

.service-card h3 {
margin: 18px 0 10px;
font-size: 26px;
}

.service-intro {
margin-bottom: 25px;
color: var(--muted);
font-size: 14px;
}

.service-list {
padding: 0;
list-style: none;
display: grid;
gap: 14px;
}

.service-list li {
display: flex;
gap: 11px;
color: var(--text);
font-size: 14px;
}

.service-list li span {
color: var(--gold);
font-weight: 800;
}

.service-link {
display: inline-block;
margin-top: 28px;
color: var(--blue);
font-size: 13px;
font-weight: 700;
}

/* =========================
ABOUT
========================= */

.about {
display: grid;
grid-template-columns: .9fr 1.1fr;
gap: 75px;
align-items: center;
}

.about-visual {
min-height: 450px;
padding: 35px;
display: flex;
flex-direction: column;
justify-content: space-between;
border-radius: 24px;
background: linear-gradient(145deg, var(--navy), var(--blue));
}

.about-badge {
width: 105px;
height: 105px;
display: flex;
flex-direction: column;
justify-content: center;
padding: 15px;
border: 1px solid rgba(255, 255, 255, .25);
border-radius: 50%;
color: white;
}

.about-badge span {
color: var(--gold);
font-family: "Manrope", sans-serif;
font-size: 25px;
font-weight: 800;
line-height: 1;
}

.about-badge strong {
margin-top: 5px;
font-size: 9px;
text-transform: uppercase;
letter-spacing: 1px;
}

.about-quote {
max-width: 350px;
padding-left: 18px;
border-left: 2px solid var(--gold);
color: white;
}

.about-quote strong {
display: block;
margin-bottom: 8px;
font-family: "Manrope", sans-serif;
font-size: 21px;
}

.about-quote span {
color: rgba(255, 255, 255, .65);
font-size: 13px;
}

.about-content > p {
margin: 20px 0;
color: var(--muted);
}

.features {
display: grid;
gap: 15px;
margin-top: 28px;
}

.features div {
display: grid;
gap: 2px;
}

.features strong {
color: var(--navy);
font-size: 14px;
}

.features span {
color: var(--muted);
font-size: 13px;
}

/* =========================
CTA
========================= */

.cta-section {
padding: 75px 0;
}

.cta {
padding: 55px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
border-radius: 22px;
background: var(--navy);
}

.cta h2 {
max-width: 650px;
margin-top: 12px;
color: white;
font-size: 36px;
}

.cta p {
margin-top: 10px;
color: rgba(255, 255, 255, .65);
}

/* =========================
CONTACT
========================= */

.contact {
display: grid;
grid-template-columns: .8fr 1.2fr;
gap: 70px;
}

.contact-intro > p {
margin: 18px 0 28px;
color: var(--muted);
}

.contact-details {
display: grid;
gap: 20px;
}

.contact-details div {
display: grid;
gap: 3px;
font-size: 13px;
}

.contact-details strong {
color: var(--navy);
}

.contact-details address,
.contact-details span,
.contact-details a {
color: var(--muted);
}

.contact-details a:hover {
color: var(--blue);
text-decoration: underline;
}

.contact-form {
padding: 35px;
background: white;
border-radius: var(--radius);
box-shadow: var(--shadow);
}

.contact-form label {
display: grid;
gap: 6px;
margin-bottom: 17px;
color: var(--navy);
font-size: 12px;
font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--border);
border-radius: 8px;
outline: none;
background: white;
color: var(--text);
font-size: 13px;
}

.contact-form textarea {
min-height: 140px;
resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
border-color: var(--blue);
box-shadow: 0 0 0 3px rgba(29, 93, 133, .08);
}

.submit {
width: 100%;
}

.form-note {
margin-top: 12px;
color: var(--muted);
font-size: 11px;
text-align: center;
}

/* =========================
FOOTER
========================= */

footer {
padding: 55px 0 25px;
background: #081c2d;
color: rgba(255, 255, 255, .6);
}

.footer {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr;
gap: 60px;
}

.brand-footer {
margin-bottom: 18px;
}

.brand-footer .brand-text strong {
color: white;
}

.brand-footer .brand-text small {
color: rgba(255, 255, 255, .45);
}

.footer-main p {
max-width: 350px;
font-size: 13px;
}

.footer-links {
display: grid;
align-content: start;
gap: 8px;
font-size: 13px;
}

.footer-links strong {
margin-bottom: 8px;
color: white;
}

.footer-links a:hover {
color: white;
}

.copyright {
margin-top: 45px;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, .1);
color: rgba(255, 255, 255, .4);
font-size: 11px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 850px) {

.menu-toggle {
display: block;
}

.menu {
position: absolute;
top: 78px;
left: 0;
right: 0;
display: none;
padding: 20px;
flex-direction: column;
align-items: stretch;
background: white;
border-bottom: 1px solid var(--border);
}

.menu.open {
display: flex;
}

.hero-grid,
.about,
.contact,
.service-grid {
grid-template-columns: 1fr;
}

.footer {
grid-template-columns: 1fr 1fr;
}

}

@media (max-width: 600px) {

.container {
width: min(100% - 28px, 1120px);
}

.section {
padding: 70px 0;
}

.hero {
padding: 75px 0;
}

.hero h1 {
letter-spacing: -2px;
}

.lead {
font-size: 16px;
}

.hero-panel {
min-height: auto;
padding: 30px;
}

.trust-grid,
.footer {
grid-template-columns: 1fr;
}

.service-card {
padding: 30px;
}

.cta {
padding: 35px 25px;
align-items: flex-start;
flex-direction: column;
}

.cta h2 {
font-size: 30px;
}

.contact-form {
padding: 25px;
}

}