/* AWP Consultants — web layouts (flyer content as HTML) */
:root {
	--navy: #0f2b5b;
	--navy-deep: #0a1f42;
	--blue: #2f6fb5;
	--blue-mid: #3a7bd5;
	--sky: #7db9e8;
	--surface: #f4f8fc;
	--text: #2c3340;
	--muted: #5c6678;
	--white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	color: var(--text);
	background: var(--white);
	line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
.serif { font-family: Lora, Georgia, serif; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--white);
	border-bottom: 1px solid rgba(15,43,91,.08);
	box-shadow: 0 1px 0 rgba(15,43,91,.04);
}
.site-header .inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--navy);
	font-weight: 700;
}
.brand img { height: 52px; width: auto; }

.nav {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
}
.nav > a,
.nav .drop > a {
	display: inline-block;
	padding: 10px 14px;
	border-radius: 8px;
	text-decoration: none;
	color: var(--navy);
	font-weight: 600;
	font-size: 13px;
}
.nav > a:hover,
.nav > a.active,
.nav .drop > a:hover,
.nav .drop > a.active {
	background: var(--navy);
	color: #fff;
}
.drop { position: relative; }
.drop-menu {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid rgba(15,43,91,.12);
	border-radius: 10px;
	box-shadow: 0 14px 32px rgba(15,43,91,.14);
	padding: 8px;
	z-index: 120;
}
.drop:hover .drop-menu,
.drop:focus-within .drop-menu { display: block; }
.drop-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: 6px;
	text-decoration: none;
	color: var(--navy);
	font-size: 12px;
	font-weight: 600;
}
.drop-menu a:hover,
.drop-menu a.active { background: #eef4fb; }

.container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 22px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--navy); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,.7);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

.corner {
	position: absolute;
	top: 0; left: 0;
	width: 110px; height: 160px;
	background: linear-gradient(135deg, #7db9e8 0%, #3a7bd5 45%, #0f2b5b 100%);
	clip-path: polygon(0 0, 100% 0, 0 100%);
	opacity: .9;
	pointer-events: none;
}

/* Home */
.home-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #fff 0%, #eef5fc 100%);
	padding: 40px 0 0;
}
.home-hero .intro {
	text-align: center;
	margin-bottom: 28px;
}
.home-hero .intro .logo {
	max-width: 260px;
	margin: 0 auto 10px;
}
.home-hero .tag {
	color: var(--navy);
	font-size: 12px;
	letter-spacing: .28em;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0 0 10px;
}
.home-hero .pillars-line {
	color: var(--navy);
	font-size: 13px;
	letter-spacing: .16em;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 0 12px;
}
.home-hero .motto {
	max-width: 720px;
	margin: 0 auto;
	color: var(--muted);
	font-style: italic;
	font-size: 17px;
}
.home-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
	gap: 28px;
	align-items: center;
	padding-bottom: 40px;
}
.home-grid h1 {
	color: var(--navy);
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.15;
	margin: 0 0 14px;
}
.home-grid h1 span { color: var(--blue); display: block; }
.home-grid .lead {
	font-style: italic;
	color: var(--muted);
	font-size: 16px;
	margin: 0 0 20px;
}
.who h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--navy);
	margin: 0 0 14px;
	font-size: 18px;
}
.who ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.who li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 12px;
	font-style: italic;
	color: var(--text);
	font-size: 15px;
}
.who li:before {
	content: "";
	position: absolute;
	left: 0; top: 9px;
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--navy);
}
.home-art {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.home-art img {
	margin: 0 auto;
	width: 100%;
	max-width: 100%;
	height: auto;
	min-height: 340px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center 30%;
	border-radius: 16px;
	box-shadow: 0 18px 40px rgba(15, 43, 91, 0.18);
	transform: scale(1.06);
	transform-origin: center;
}

.values {
	background: linear-gradient(90deg, var(--navy-deep), var(--blue));
	color: #fff;
	padding: 32px 0;
}
.values .grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	text-align: center;
	align-items: start;
}
.values .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 110px;
}
.values .ico {
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}
.values .ico i,
.values .ico svg,
.values i {
	font-size: 26px;
	width: 26px;
	height: 26px;
	color: var(--sky);
	fill: currentColor;
	line-height: 1;
	display: block;
}
.icon-handshake {
	display: block;
	width: 26px;
	height: 26px;
	flex-shrink: 0;
}
.values .ico .icon-handshake { color: var(--sky); }
.why-card .ico .icon-handshake { color: var(--blue); width: 24px; height: 24px; }

.values h4 {
	margin: 0 0 6px;
	font-size: 14px;
	letter-spacing: .06em;
	text-transform: uppercase;
	line-height: 1.3;
}
.values p {
	margin: 0;
	font-size: 13px;
	opacity: .9;
	line-height: 1.4;
}

.contact-bar {
	background: var(--surface);
	padding: 14px 0;
	border-top: 1px solid rgba(15,43,91,.08);
}
.contact-bar .grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.contact-bar a,
.contact-bar span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--navy);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}
.contact-bar i { color: var(--blue); }

/* Page hero */
.page-hero {
	background: linear-gradient(135deg, var(--navy-deep), var(--blue));
	color: #fff;
	padding: 56px 0 42px;
	text-align: center;
}
.page-hero .eyebrow {
	letter-spacing: .18em;
	text-transform: uppercase;
	font-size: 12px;
	opacity: .85;
	margin: 0 0 8px;
}
.page-hero h1 {
	margin: 0 0 10px;
	font-size: clamp(28px, 4vw, 44px);
}
.page-hero p {
	margin: 0 auto;
	max-width: 680px;
	opacity: .92;
	font-size: 16px;
}

.section { padding: 64px 0; }
.section.alt { background: var(--surface); }
.section h2 {
	color: var(--navy);
	font-size: clamp(26px, 3vw, 36px);
	margin: 0 0 12px;
}
.section .sub {
	color: var(--muted);
	max-width: 720px;
	margin: 0 0 32px;
}

.service-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.service-card {
	background: #fff;
	border-radius: 14px;
	padding: 24px;
	border-top: 4px solid var(--blue);
	box-shadow: 0 10px 28px rgba(15,43,91,.08);
	text-decoration: none;
	color: inherit;
	display: block;
	transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(15,43,91,.14);
}
.service-card .num {
	display: inline-block;
	background: var(--navy);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 11px;
	border-radius: 999px;
	margin-bottom: 12px;
}
.service-card h3 {
	margin: 0 0 8px;
	color: var(--navy);
	font-size: 20px;
}
.service-card p {
	margin: 0 0 12px;
	color: var(--muted);
	font-size: 14px;
}
.service-card .more {
	color: var(--blue);
	font-weight: 700;
	font-size: 13px;
}

.tagline-band {
	text-align: center;
	font-weight: 800;
	color: var(--navy);
	letter-spacing: .04em;
	padding: 8px 0 0;
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	align-items: center;
}
.split .badge {
	display: inline-block;
	background: var(--navy);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 999px;
	margin-bottom: 12px;
}
.split h1, .split h2 {
	color: var(--navy);
	margin: 0 0 12px;
	font-size: clamp(26px, 3.5vw, 38px);
}
.quote {
	border: 1.5px solid var(--sky);
	border-radius: 999px;
	padding: 14px 20px;
	font-style: italic;
	color: var(--navy);
	background: #f8fbff;
	margin: 22px 0 0;
}
.quote strong { color: var(--blue); font-style: italic; }
.offer-list {
	list-style: none;
	padding: 0;
	margin: 16px 0;
}
.offer-list li {
	padding: 8px 0 8px 18px;
	position: relative;
	border-bottom: 1px solid rgba(15,43,91,.06);
}
.offer-list li:before {
	content: "";
	position: absolute;
	left: 0; top: 15px;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--blue);
}
.media {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 14px 36px rgba(15,43,91,.12);
}
.media img { width: 100%; height: 100%; object-fit: cover; }

.service-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin: -18px auto 28px;
	max-width: 1140px;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}
.service-tabs a {
	text-decoration: none;
	background: #fff;
	color: var(--navy);
	border: 1px solid rgba(15,43,91,.14);
	border-radius: 999px;
	padding: 8px 14px;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 6px 16px rgba(15,43,91,.08);
}
.service-tabs a.active,
.service-tabs a:hover {
	background: var(--navy);
	color: #fff;
	border-color: var(--navy);
}

.why-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 10px;
}
.why-card {
	background: #fff;
	border-radius: 14px;
	padding: 28px 20px;
	text-align: center;
	box-shadow: 0 10px 28px rgba(15, 43, 91, 0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 220px;
}
.why-card .ico {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #eaf2fb;
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	flex-shrink: 0;
}
.why-card .ico i,
.why-card .ico svg {
	font-size: 22px;
	width: 24px;
	height: 24px;
	display: block;
}
.why-card h4 {
	margin: 0 0 10px;
	color: var(--navy);
	font-size: 16px;
	line-height: 1.3;
	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.why-card p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
}

.why-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.9fr;
	gap: 36px;
	align-items: start;
}
.why-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.why-list li {
	display: flex;
	gap: 16px;
	margin-bottom: 22px;
	align-items: flex-start;
}
.why-list .ico {
	width: 46px; height: 46px;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.why-list h4 { margin: 0 0 4px; color: var(--navy); }
.why-list p { margin: 0; color: var(--muted); font-size: 14px; }
.cta-panel {
	border-radius: 16px;
	overflow: hidden;
	min-height: 320px;
	background: linear-gradient(145deg, rgba(10,31,66,.78), rgba(47,111,181,.65)), url('../images/finance-hero.jpg') center/cover;
	color: #fff;
	padding: 36px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.cta-panel h3 { margin: 0 0 10px; font-size: 26px; }
.cta-panel p { margin: 0 0 18px; opacity: .95; }

.connect-box {
	margin-top: 24px;
	background: linear-gradient(145deg, #1b2a4a, #5b3d9a);
	border-radius: 14px;
	padding: 24px;
	color: #fff;
}
.connect-box h3 { margin: 0 0 8px; }
.connect-box p { margin: 0 0 18px; opacity: .92; }
.connect-box a { color: #fff; text-decoration: none; font-weight: 600; }
.connect-box .line {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 14px;
	line-height: 1.45;
}
.connect-box .line:last-child { margin-bottom: 0; }
.connect-box .line i {
	width: 18px;
	flex-shrink: 0;
	text-align: center;
	margin-top: 3px;
	opacity: .95;
}

.script {
	text-align: center;
	font-family: 'Segoe Script', 'Brush Script MT', cursive;
	font-size: 22px;
	color: var(--navy);
	margin: 28px 0 8px;
}
.clarity {
	text-align: center;
	letter-spacing: .16em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--navy);
	font-size: 13px;
	margin: 0 0 10px;
}

.contact-layout {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 24px;
}
.contact-side {
	background: linear-gradient(145deg, var(--navy-deep), var(--blue));
	color: #fff;
	border-radius: 16px;
	padding: 36px 28px;
}
.contact-side h1 { margin: 0 0 12px; font-size: 30px; color: #fff; }
.contact-side p { opacity: .92; }
.contact-side .label {
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	opacity: .75;
	margin: 18px 0 4px;
}
.contact-side a { color: #fff; font-weight: 700; text-decoration: none; word-break: break-all; }
.form-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px 28px;
	box-shadow: 0 12px 36px rgba(15,43,91,.08);
}
.form-card h2 { margin: 0 0 6px; color: var(--navy); }
.form-card .hint { color: var(--muted); margin: 0 0 20px; font-size: 14px; }
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(15,43,91,.18);
	border-radius: 8px;
	font: inherit;
	font-size: 14px;
}
.form-grid textarea { grid-column: 1 / -1; min-height: 110px; resize: vertical; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid button {
	width: 100%;
	border: 0;
	background: var(--blue);
	color: #fff;
	font-weight: 700;
	padding: 14px;
	border-radius: 8px;
	cursor: pointer;
}
.form-grid button:hover { background: var(--navy); }
#formMessage {
	display: none;
	margin-top: 14px;
	padding: 12px;
	border-radius: 8px;
	text-align: center;
}

.site-footer {
	background: var(--navy-deep);
	color: rgba(255,255,255,.85);
	text-align: center;
	padding: 28px 16px;
	font-size: 14px;
}
.site-footer .script {
	color: rgba(255,255,255,.95);
	margin: 0 0 6px;
}
.site-footer .clarity { color: rgba(255,255,255,.8); }

@media (max-width: 900px) {
	.home-grid,
	.split,
	.why-grid,
	.why-cards,
	.contact-layout,
	.values .grid,
	.contact-bar .grid,
	.service-cards { grid-template-columns: 1fr; }
	.form-grid { grid-template-columns: 1fr; }
	.brand span { display: none; }
	.why-card h4 { min-height: 0; }
}

/* Handshake SVG icons — always visible */
