:root {
    --blue: #204a92;
    --blue-dark: #10274f;
    --blue-soft: #5074b3;
    --green: #2b7d63;
    --green-dark: #1d5b47;
    --gold: #c9a76a;
    --gold-soft: #e6d2af;
    --text: #17253b;
    --muted: #6d7888;
    --line: rgba(88, 105, 134, 0.18);
    --white: #ffffff;
    --bg: #f5f1ea;
    --card: rgba(255, 252, 247, 0.84);
    --shadow: 0 22px 48px rgba(22, 32, 54, 0.12);
    --shadow-soft: 0 12px 26px rgba(22, 32, 54, 0.08);
    --container: 1320px;
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(201, 167, 106, 0.1), transparent 20%),
        radial-gradient(circle at top right, rgba(32, 74, 146, 0.08), transparent 22%),
        linear-gradient(180deg, #fbf8f3, var(--bg));
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

.page-shell {
    width: min(calc(100% - 16px), var(--container));
    margin: 8px auto 18px;
    background: rgba(255, 250, 244, 0.72);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-radius: 32px;
    overflow: hidden;
}

.container {
    width: min(calc(100% - 40px), calc(var(--container) - 40px));
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 20;
    background: rgba(255, 250, 244, 0.76);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.nav-shell {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 88px;
}

.brand img {
    width: 232px;
    height: auto;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 34px;
    padding: 10px 18px;
    border: 1px solid rgba(201, 167, 106, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: 0 10px 24px rgba(22, 32, 54, 0.05);
    font-size: 16px;
    font-weight: 700;
}

.site-nav a {
    position: relative;
    color: #556174;
    padding: 10px 4px;
    transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a:first-child {
    color: var(--blue-dark);
    transform: translateY(-1px);
}

.site-nav a:first-child::after,
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
}

.nav-cta,
.button,
.service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.nav-cta:hover,
.button:hover,
.service-button:hover,
.contact-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(7, 53, 122, 0.2);
    filter: brightness(1.02);
}

.nav-cta {
    min-width: 176px;
    padding: 16px 28px;
    color: var(--white);
    border-radius: 999px;
    background: linear-gradient(135deg, #1e3e79, var(--blue-dark));
    box-shadow: 0 16px 30px rgba(16, 39, 79, 0.22);
    font-size: 16px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 14px;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--blue-dark);
}

.hero-banner {
    position: relative;
    padding: 30px 0 12px;
}

.hero-banner::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -100px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 167, 106, 0.18), transparent 68%);
}

.hero-surface {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(520px, 0.96fr);
    gap: 34px;
    align-items: center;
    padding: 38px 40px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 252, 247, 0.95), rgba(248, 244, 236, 0.84)),
        radial-gradient(circle at top left, rgba(201, 167, 106, 0.12), transparent 28%);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 620px;
    will-change: transform;
    transition: transform 180ms ease;
}

.hero-prelude {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-kicker {
    display: inline-block;
    padding: 7px 12px;
    border: 1px solid rgba(201, 167, 106, 0.24);
    border-radius: 999px;
    background: rgba(201, 167, 106, 0.1);
    color: #82663b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-prelude-copy {
    display: grid;
    gap: 2px;
}

.hero-prelude-copy strong {
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 800;
}

.hero-prelude-copy span {
    color: #7c7669;
    font-size: 13px;
}

.hero-kicker.dark {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(201, 167, 106, 0.22);
    color: var(--white);
}

.hero-divider {
    display: block;
    width: 160px;
    height: 1px;
    margin: 14px 0 18px;
    background: linear-gradient(90deg, var(--gold), rgba(201, 167, 106, 0));
}

.hero-copy h1,
.contact-band-copy h2,
.section-heading h2,
.service-card h3,
.detail-card h3,
.requirements-card h3,
.testimonial-card h3,
.advice-copy h3 {
    font-family: "Cormorant Garamond", serif;
}

.hero-copy h1 {
    margin: 0 0 14px;
    max-width: 11ch;
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-copy p {
    margin: 0;
    max-width: 560px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.button {
    min-width: 158px;
    padding: 13px 18px;
    color: var(--white);
    border-radius: 999px;
    box-shadow: 0 14px 26px rgba(16, 39, 79, 0.16);
}

.button-primary,
.service-button.blue {
    background: linear-gradient(135deg, #294f97, var(--blue-dark));
}

.button-secondary,
.service-button.green {
    background: linear-gradient(135deg, #b79356, #8f6f3f);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.hero-note {
    max-width: 560px;
    margin-top: 18px;
    color: #7a7366;
    font-size: 14px;
    line-height: 1.7;
}

.hero-benefits {
    max-width: 560px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(201, 167, 106, 0.16);
    box-shadow: var(--shadow-soft);
}

.hero-benefits-head {
    display: grid;
    gap: 4px;
    margin-bottom: 14px;
}

.hero-benefits-head strong {
    color: var(--blue-dark);
    font-size: 15px;
    font-weight: 800;
}

.hero-benefits-head span {
    color: #7a7366;
    font-size: 13px;
}

.hero-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hero-benefit-item {
    padding: 12px 12px 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(201, 167, 106, 0.14);
}

.hero-benefit-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--blue-dark);
    font-size: 13px;
}

.hero-benefit-item span {
    color: #6f7581;
    font-size: 12px;
    line-height: 1.5;
}

.hero-tags span {
    padding: 8px 11px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(201, 167, 106, 0.18);
    border-radius: 999px;
    color: #665f50;
    font-size: 12px;
    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.hero-stats div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(201, 167, 106, 0.14);
    box-shadow: var(--shadow-soft);
}

.hero-stats strong {
    display: block;
    color: var(--blue-dark);
    font-size: 13px;
}

.hero-stats span {
    color: var(--muted);
    font-size: 12px;
}

.hero-visual {
    position: relative;
    display: grid;
    grid-template-rows: 1.04fr 0.96fr;
    gap: 22px;
    min-height: 860px;
    padding-bottom: 110px;
    overflow: visible;
}

.hero-photo-slot {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(145deg, #f2eadb, #ffffff);
    box-shadow: var(--shadow);
}

.hero-photo-slot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 39, 79, 0.05), rgba(16, 39, 79, 0.22));
    pointer-events: none;
}

.hero-photo-slot-top {
    min-height: 430px;
}

.hero-photo-slot-bottom {
    min-height: 354px;
}

.hero-photo-slot-bottom::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(201, 167, 106, 0.1));
}

.hero-side-panel {
    position: absolute;
    top: 118px;
    left: -58px;
    z-index: 4;
    width: 204px;
    min-height: 178px;
    padding: 14px 14px 12px;
    border-radius: 22px;
    background: rgba(255, 251, 246, 0.9);
    border: 1px solid rgba(201, 167, 106, 0.18);
    box-shadow: var(--shadow-soft);
}

.hero-side-label {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(201, 167, 106, 0.12);
    color: #82663b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-side-panel strong,
.hero-side-chip strong {
    display: block;
    color: var(--blue-dark);
}

.hero-side-panel strong {
    margin-bottom: 10px;
    max-width: 144px;
    font-size: 15px;
    line-height: 1.12;
}

.hero-side-panel ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-side-panel li {
    position: relative;
    padding: 6px 0 6px 15px;
    color: #6b7280;
    font-size: 11px;
    border-top: 1px solid rgba(201, 167, 106, 0.12);
}

.hero-side-panel li::before {
    content: "•";
    position: absolute;
    left: 2px;
    color: var(--gold);
    font-weight: 800;
}

.hero-image-card {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
}

.hero-image-card-secondary {
    inset: 14px;
    z-index: 1;
    border-radius: 28px;
    background: #f8ecd4;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-image-card-secondary img {
    object-fit: contain;
    object-position: center center;
}

.hero-badge {
    position: absolute;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: center;
    min-width: 190px;
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(255, 251, 246, 0.94);
    border: 1px solid rgba(201, 167, 106, 0.18);
    box-shadow: var(--shadow);
    animation: floatCard 5s ease-in-out infinite;
    z-index: 2;
}

.hero-badge img {
    width: 54px;
}

.hero-badge span {
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.badge-top {
    right: 22px;
    bottom: 18px;
}

.badge-bottom {
    top: 18px;
    right: 22px;
    animation-delay: 1.4s;
}

.hero-side-chip {
    position: absolute;
    left: 42px;
    bottom: 0;
    z-index: 4;
    width: 260px;
    min-height: 96px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(16, 39, 79, 0.84);
    border: 1px solid rgba(201, 167, 106, 0.24);
    box-shadow: var(--shadow);
}

.hero-side-chip strong {
    margin-bottom: 8px;
    color: #f5ead4;
    font-size: 16px;
}

.hero-side-chip span {
    color: rgba(255, 255, 255, 0.78);
    max-width: 190px;
    font-size: 12px;
    line-height: 1.45;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 6px 34px 0;
}

.trust-strip div {
    padding: 14px 16px;
    background: rgba(255, 251, 246, 0.82);
    border: 1px solid rgba(201, 167, 106, 0.16);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    color: var(--blue-dark);
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 24px 34px 8px;
}

.confidence-section {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 20px;
    padding: 26px 34px 10px;
    align-items: stretch;
}

.confidence-copy,
.confidence-visual {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(201, 167, 106, 0.16);
    box-shadow: var(--shadow-soft);
}

.confidence-copy {
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(255, 252, 247, 0.94), rgba(247, 242, 233, 0.86)),
        radial-gradient(circle at top left, rgba(201, 167, 106, 0.14), transparent 30%);
}

.confidence-copy h2 {
    margin: 14px 0 14px;
    max-width: 12ch;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 0.98;
    color: var(--blue-dark);
}

.confidence-copy p {
    max-width: 58ch;
    margin: 0;
    color: #667284;
    line-height: 1.72;
}

.confidence-points {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.confidence-points article {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(201, 167, 106, 0.14);
}

.confidence-points strong,
.confidence-card strong {
    color: var(--blue-dark);
}

.confidence-points span,
.confidence-card p,
.confidence-card span {
    color: #697487;
    line-height: 1.6;
}

.confidence-visual {
    display: grid;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(145deg, #173158, #21497c 62%, #8d6c3d);
}

.confidence-card {
    border-radius: 24px;
    border: 1px solid rgba(201, 167, 106, 0.2);
}

.confidence-card-primary {
    position: relative;
    padding: 22px;
    background: rgba(255, 250, 244, 0.94);
}

.confidence-card-badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(32, 74, 146, 0.08);
    color: var(--blue-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.confidence-card-primary img {
    width: min(100%, 220px);
    margin-bottom: 16px;
}

.confidence-card-primary strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.confidence-card-primary p {
    margin: 0;
}

.confidence-card-secondary {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
}

.confidence-card-secondary img {
    width: 72px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
}

.confidence-card-secondary strong {
    display: block;
    margin-bottom: 4px;
    color: var(--white);
}

.confidence-card-secondary span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.confidence-seals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.confidence-seals span {
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(201, 167, 106, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 700;
}

.service-card,
.requirements-card,
.advice-card,
.testimonial-card,
.detail-card {
    position: relative;
    background: var(--card);
    border: 1px solid rgba(201, 167, 106, 0.16);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    backdrop-filter: blur(10px);
}

.service-card::before,
.requirements-card::before,
.advice-card::before,
.testimonial-card::before,
.detail-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.38), transparent 45%);
    opacity: 0;
    transition: opacity 220ms ease;
    pointer-events: none;
}

.service-card:hover,
.requirements-card:hover,
.advice-card:hover,
.testimonial-card:hover,
.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #c7d7ea;
}

.service-card:hover::before,
.requirements-card:hover::before,
.advice-card:hover::before,
.testimonial-card:hover::before,
.detail-card:hover::before {
    opacity: 1;
}

.service-card {
    padding: 18px;
}

.service-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 104px;
    margin-bottom: 14px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(201, 167, 106, 0.14), rgba(32, 74, 146, 0.06));
}

.service-title-image {
    margin: 0;
}

.service-label,
.section-chip,
.section-heading span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(201, 167, 106, 0.12);
    color: #82663b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-chip.alt {
    background: rgba(32, 74, 146, 0.08);
    color: var(--blue-dark);
}

.service-card h3 {
    margin: 14px 0 10px;
    font-size: 1.45rem;
}

.service-card p,
.detail-card p,
.advice-copy p,
.testimonial-box p,
.contact-band-copy p {
    color: #666f7f;
    line-height: 1.65;
}

.service-card p {
    min-height: 66px;
    margin: 0 0 18px;
    font-size: 14px;
}

.service-button {
    min-width: 148px;
    padding: 12px 18px;
    color: var(--white);
    border-radius: 999px;
    box-shadow: 0 12px 22px rgba(17, 50, 110, 0.16);
}

.process-section {
    padding: 36px 34px 14px;
}

.process-heading {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 22px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.7rem);
}

.process-row {
    display: grid;
    grid-template-columns: repeat(7, auto);
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 251, 246, 0.76);
    border: 1px solid rgba(201, 167, 106, 0.14);
    box-shadow: var(--shadow-soft);
}

.process-item {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 700;
}

.process-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b79356, #8f6f3f);
    color: var(--white);
    font-size: 17px;
    box-shadow: 0 4px 12px rgba(15, 77, 160, 0.24);
    animation: pulseSoft 3s ease-in-out infinite;
}

.process-separator {
    color: #5f7190;
    font-size: 24px;
    font-weight: 700;
}

.bottom-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr 0.95fr;
    gap: 18px;
    padding: 20px 34px 10px;
    align-items: stretch;
}

.requirements-card,
.testimonial-card,
.detail-card {
    padding: 18px;
}

.requirements-card ul {
    padding: 0;
    margin: 16px 0 18px;
    list-style: none;
}

.requirements-card li {
    position: relative;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid #e6edf4;
    color: #4f6884;
    font-size: 14px;
}

.requirements-card li::before {
    content: "✓";
    position: absolute;
    left: 4px;
    top: 9px;
    color: #3fa648;
    font-weight: 800;
}

.advice-card {
    background: linear-gradient(135deg, rgba(248, 242, 232, 0.96), rgba(255, 252, 247, 0.86) 55%, rgba(243, 240, 232, 0.9));
    overflow: hidden;
}

.advice-card-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    min-height: 100%;
}

.advice-copy {
    padding: 22px;
}

.mini-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #82663b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.advice-tags {
    display: grid;
    gap: 10px;
}

.advice-tags span {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.78);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    color: #48627f;
    font-size: 13px;
    line-height: 1.45;
}

.advice-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: linear-gradient(180deg, rgba(201, 167, 106, 0.1), rgba(32, 74, 146, 0.05));
}

.advice-logo-wrap img {
    width: 220px;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08));
}

.testimonial-box {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    margin-top: 16px;
    padding: 12px;
    border: 1px solid rgba(201, 167, 106, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.64);
}

.avatar {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(180deg, #b79356, #7f6136);
    color: var(--white);
    font-weight: 800;
}

.stars {
    margin-top: 14px;
    text-align: right;
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 1px;
}

.detail-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 14px 34px 24px;
}

.contact-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 4px 34px 26px;
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, #142540, #203d67 58%, #7f6136);
    color: var(--white);
    box-shadow: var(--shadow);
}

.contact-band-copy p {
    max-width: 54ch;
    color: rgba(255, 255, 255, 0.82);
}

.contact-band-actions {
    display: grid;
    gap: 12px;
}

.contact-tile {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 167, 106, 0.18);
    transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.contact-tile strong {
    font-size: 15px;
}

.contact-tile span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 14px 34px 22px;
    border-top: 1px solid rgba(30, 99, 219, 0.08);
    color: #567193;
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 14px;
}

.footer-links a {
    transition: color 180ms ease;
}

.footer-links a:hover {
    color: var(--blue-dark);
}

.footer-links.right {
    justify-content: flex-end;
}

.footer-contact-center {
    display: grid;
    justify-items: center;
    gap: 2px;
    text-align: center;
}

.footer-contact-center strong {
    color: var(--blue-dark);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 90ms;
}

.reveal-delay-2 {
    transition-delay: 160ms;
}

.reveal-delay-3 {
    transition-delay: 230ms;
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulseSoft {
    0%,
    100% {
        box-shadow: 0 4px 12px rgba(15, 77, 160, 0.22);
    }
    50% {
        box-shadow: 0 8px 18px rgba(15, 77, 160, 0.32);
    }
}

@media (max-width: 980px) {
    .nav-shell {
        grid-template-columns: 1fr auto auto;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 14px;
        right: 14px;
        top: 74px;
        z-index: 10;
        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 14px;
        background: var(--white);
        border: 1px solid #dce5ef;
        border-radius: 20px;
        box-shadow: var(--shadow);
        font-size: 15px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a:first-child::after,
    .site-nav a:hover::after,
    .site-nav a:focus-visible::after {
        display: none;
    }

    .hero-prelude {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .hero-surface,
    .trust-strip,
    .service-cards,
    .confidence-section,
    .bottom-grid,
    .detail-section,
    .site-footer,
    .advice-card-inner,
    .contact-band {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 770px;
        gap: 18px;
        padding-bottom: 92px;
    }

    .hero-photo-slot-top {
        min-height: 380px;
    }

    .hero-photo-slot-bottom {
        min-height: 316px;
    }

    .hero-side-panel,
    .hero-side-chip {
        max-width: none;
    }

    .hero-side-panel {
        top: 106px;
        left: -20px;
        width: 184px;
        min-height: 164px;
    }

    .hero-side-chip {
        left: 22px;
        bottom: 0;
        width: 220px;
        min-height: 90px;
    }

    .badge-top,
    .badge-bottom {
        right: 16px;
    }

    .hero-badge {
        min-width: 176px;
    }

    .badge-top {
        bottom: 16px;
    }

    .badge-bottom {
        top: 16px;
    }

    .process-row {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }

    .process-separator {
        display: none;
    }

    .site-footer {
        text-align: center;
    }

    .footer-links,
    .footer-links.right {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 720px) {
    .page-shell {
        width: 100%;
        margin: 0;
        border: 0;
        border-radius: 0;
    }

    .nav-shell {
        grid-template-columns: 1fr auto;
    }

    .nav-cta {
        display: none;
    }

    .hero-surface {
        padding: 18px;
        border-radius: 0;
    }

    .hero-copy h1 {
        font-size: 31px;
        max-width: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 520px;
        grid-template-rows: 1fr 0.8fr;
        gap: 12px;
        padding-bottom: 0;
    }

    .hero-photo-slot {
        border-radius: 26px;
    }

    .hero-photo-slot-top {
        min-height: 286px;
    }

    .hero-photo-slot-bottom {
        min-height: 220px;
    }

    .hero-side-panel,
    .hero-side-chip {
        display: none;
    }

    .hero-badge {
        min-width: 0;
        width: auto;
        max-width: calc(100% - 20px);
    }

    .badge-top,
    .badge-bottom {
        right: 10px;
    }

    .badge-top {
        bottom: 10px;
    }

    .badge-bottom {
        top: 10px;
    }

    .button,
    .service-button {
        min-width: 0;
        width: 100%;
    }

    .service-cards,
    .confidence-section,
    .process-section,
    .bottom-grid,
    .detail-section,
    .site-footer,
    .contact-band,
    .trust-strip {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand img {
        width: 180px;
    }

    .confidence-copy,
    .confidence-visual {
        padding: 18px;
        border-radius: 24px;
    }

    .confidence-copy h2 {
        max-width: none;
        font-size: 30px;
    }

    .confidence-card-secondary {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
