body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
    line-height: 1.6;
    min-height: 100vh;
}

* {
    box-sizing: border-box;
}

.site-header,
.site-footer {
    padding: 32px 0;
}

.site-header {
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
}

.site-nav {
    display: flex;
    gap: 18px;
}

.site-nav a {
    font-weight: 600;
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-nav a:hover {
    color: var(--color-text);
}

.site-main {
    min-height: 80vh;
}

.hero-section {
    position: relative;
    padding: 120px 0 110px;
    background: linear-gradient(145deg, var(--color-hero-deep), #0d364c 70%);
    color: var(--color-white);
    overflow: hidden;
    isolation: isolate;
}

.hero-visual-layer {
    position: absolute;
    inset: -40% -10% -30% -10%;
    background: radial-gradient(circle at 20% 20%, rgba(95, 211, 193, 0.35), transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(246, 198, 103, 0.25), transparent 50%);
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

.container.hero-grid {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: 48px;
    padding: 0 24px;
}

.hero-copy {
    text-align: left;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.15;
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.hero-highlights li {
    padding: 14px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
}

.hero-visual-card {
    background: rgba(15, 76, 92, 0.45);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(6, 11, 20, 0.35);
}

.hero-visual-card__tag {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-hero-accent);
    margin-bottom: 12px;
    display: inline-block;
}

.hero-visual-card__quote {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
}

.hero-visual-card footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-visual-figure {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(160deg, rgba(95, 211, 193, 0.25), rgba(246, 198, 103, 0.25));
}

.hero-visual-figure img {
    width: 100%;
    display: block;
}

.hero-visual-figure figcaption {
    padding: 16px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(15, 76, 92, 0.35);
}

.hero-visual-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-visual-stats article {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-visual-stats strong {
    display: block;
    font-size: 1.8rem;
    color: #fff;
}

.hero-visual-stats span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 999px;
    border: none;
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 15px 30px rgba(92, 158, 173, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 40px rgba(92, 158, 173, 0.35);
}

.section-soft {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: 0 25px 60px rgba(15, 21, 33, 0.08);
    margin-bottom: 40px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.summary-card {
    background: linear-gradient(145deg, #fef7f4, #f4d7d3);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 260px;
}

.summary-card h3 {
    font-family: var(--font-heading);
    margin: 0;
    font-size: 1.4rem;
}

.summary-card p {
    margin: 0;
    color: var(--color-muted);
    flex: 1;
}

.summary-card a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.service-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: #fbfbff;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    padding: 28px;
    transition: transform 0.3s ease, border 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
}

.service-card h4 {
    margin-top: 0;
    color: var(--color-text);
}

.service-card p {
    color: var(--color-muted);
}

.announcement {
    background: linear-gradient(135deg, rgba(92, 158, 173, 0.1), rgba(244, 215, 211, 0.6));
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    color: var(--color-text);
}

.announcement h3 {
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.announcement p {
    margin: 0;
}

.site-footer {
    background: radial-gradient(circle at top right, rgba(143, 255, 235, 0.12), rgba(17, 35, 63, 0));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    padding: 80px 0 48px;
    color: var(--color-white);
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(95, 211, 193, 0.25), transparent 40%),
        radial-gradient(circle at 80% 10%, rgba(246, 198, 103, 0.2), transparent 45%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.footer-brand h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 12px;
}

.footer-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
}

.footer-brand-copy {
    max-width: 320px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
}

.footer-contact a {
    color: #a8f3ff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-card {
    background: rgba(16, 28, 45, 0.65);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(5, 10, 18, 0.45);
}

.footer-card h3,
.footer-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.footer-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-card a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-card a:hover {
    color: #f6c667;
    transform: translateX(4px);
}

.footer-card-text {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-testimonial {
    background: rgba(255, 255, 255, 0.05);
}

.footer-testimonial p:first-of-type {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-testimonial-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 18px;
}

.footer-cta {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(246, 198, 103, 0.12));
}

.footer-form {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-form input {
    flex: 1 1 220px;
    padding: 14px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-form button {
    border-radius: 999px;
    border: none;
    background: linear-gradient(120deg, #f6c667, #f47356);
    color: #0f1521;
    font-weight: 700;
    padding: 14px 26px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(244, 115, 86, 0.35);
}

.footer-cta-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-bottom {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
}

.footer-bottom-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 600;
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #f6c667;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .section-soft {
        padding: 32px;
    }
}
