@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Fraunces:wght@500;600&display=swap");

:root {
    --primary: #137c8b;
    --secondary: #709ca7;
    --light-bg: #b8cbd0;
    --neutral: #7a90a4;
    --text: #344d59;
    --white: #ffffff;
    --shadow: 0 18px 40px rgba(52, 77, 89, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: radial-gradient(
        circle at top,
        rgba(184, 203, 208, 0.6),
        #f7f9fa 55%
    );
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.85);
    z-index: 10;
    border-bottom: 1px solid rgba(122, 144, 164, 0.2);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--primary);
}

.logo.small {
    font-size: 18px;
}

.nav {
    display: flex;
    gap: 26px;
    align-items: center;
    flex-wrap: wrap;
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition:
        border-color 0.2s ease,
        color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
    color: var(--primary);
    border-color: var(--primary);
}

.nav .cta-link {
    background: var(--primary);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
}

.nav .cta-link:hover {
    color: var(--white);
    border-color: transparent;
    background: #0f6672;
}

.hero {
    padding: 90px 0 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin: 0 0 20px;
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #415863;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--neutral);
}

.hero-notes span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(112, 156, 167, 0.15);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.trust-card {
    padding: 22px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(122, 144, 164, 0.2);
    box-shadow: var(--shadow);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.check-list li {
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    color: #415863;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pill-list span {
    background: rgba(19, 124, 139, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.faq details {
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(122, 144, 164, 0.2);
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
}

.faq p {
    margin: 12px 0 0;
    color: #415863;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 10px;
    padding: 8px 12px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
}
.btn.primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn.primary:hover {
    transform: translateY(-2px);
    background: #0f6672;
}

.btn.ghost {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.section {
    padding: 70px 0;
}

.section-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.section-title h2 {
    font-family: "Fraunces", serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin: 0;
}

.section-title p {
    max-width: 420px;
    color: var(--neutral);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
}

.card {
    background: var(--white);
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(122, 144, 164, 0.12);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(52, 77, 89, 0.18);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(19, 124, 139, 0.12);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.project-card {
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(122, 144, 164, 0.2);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9),
        rgba(184, 203, 208, 0.3)
    );
    min-height: 180px;
}

.project-card h3 {
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.step {
    padding: 24px;
    border-left: 4px solid var(--primary);
    background: var(--white);
    border-radius: 12px;
}

.cta-panel {
    background: linear-gradient(
        120deg,
        rgba(19, 124, 139, 0.12),
        rgba(112, 156, 167, 0.2)
    );
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-panel h3 {
    font-family: "Fraunces", serif;
    margin: 0 0 10px;
}

.site-footer {
    background: #f3f6f8;
    padding: 50px 0 24px;
    border-top: 1px solid rgba(122, 144, 164, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-grid h4 {
    margin-bottom: 10px;
}

.footer-grid a {
    display: block;
    color: var(--neutral);
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(122, 144, 164, 0.2);
    margin-top: 20px;
    padding-top: 16px;
    color: var(--neutral);
    font-size: 0.9rem;
}

.page-hero {
    padding: 70px 0 40px;
}

.page-hero h1 {
    font-family: "Fraunces", serif;
    margin-bottom: 12px;
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.form-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(122, 144, 164, 0.4);
    font-family: inherit;
}

.wizard-steps {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.wizard-steps span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(112, 156, 167, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
}

.wizard-steps span.active {
    background: var(--primary);
    color: var(--white);
}

.hidden {
    display: none;
}

.notice {
    padding: 16px;
    border-radius: 12px;
    background: rgba(19, 124, 139, 0.1);
    border: 1px solid rgba(19, 124, 139, 0.3);
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.table th,
.table td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid rgba(122, 144, 164, 0.2);
}

.table th {
    font-weight: 600;
    color: var(--neutral);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease both;
}

@media (max-width: 768px) {
    .nav {
        display: flex;
        gap: 14px;
        justify-content: flex-end;
    }
    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
    .section-title {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .nav {
        justify-content: flex-start;
    }
    .nav a {
        font-size: 14px;
    }
    .hero {
        padding: 70px 0 50px;
    }
    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }
}
